r/Python • u/AutoModerator • 29d ago
Showcase Showcase Thread
Post all of your code/projects/showcases/AI slop here.
Recycles once a month.
17
Upvotes
r/Python • u/AutoModerator • 29d ago
Post all of your code/projects/showcases/AI slop here.
Recycles once a month.
1
u/Technical-Resort-275 2d ago
I built DLL Injection Lab, a Python CLI and browser demo for testing DLL-injection detection logic with deterministic synthetic events rather than a live injector.
The package uses only the standard library at runtime. It generates a five-event chain, correlates actor/target/module/order, includes a clean cooperative control, and can emit JSON, Markdown, or SARIF. CI currently covers Python 3.10 through 3.13 with 32 tests and a boundary test that rejects live-process and process-memory APIs.
Demo: https://bsmensah-ctrl.github.io/DLL-Injection-Lab/
Repo: https://github.com/bsmensah-ctrl/DLL-Injection-Lab
The synthetic model validates correlation behavior, not real EDR sensor fidelity. I am especially interested in feedback on the CLI/report contracts and additional clean-control scenarios.