
A curated collection of in-depth vulnerability writeups covering real-world security incidents in the software ecosystem. Each entry includes a full technical analysis, proof-of-concept, IOC listing, and remediation guidance.
Purpose: Educational reference and portfolio. All PoC code is for detection and research only.
| # | Vulnerability | Type | Severity | Date | Status |
|---|---|---|---|---|---|
| 003 | Apache Log4j Remote Code Execution — CVE-2021-44228 (Log4Shell) | Zero-day RCE | 🔴 Critical | Nov 24, 2021 | ✅ Complete |
Each entry follows a consistent format:
log4shell-cve-2021-44228/
├── README.md # Project overview
├── analysis.md # Full writeup
└── references.md # Cited sources
├── poc/ # Detection & PoC scripts
│
├── scan_log4j.sh # Recursively scans a host filesystem (or a specified directory) for log4j-core JARs
│
├── audit_logs.sh # Scans application and web server log files for known Log4Shell payload patterns
│
├── jndi_lookup_demo/ # Safe, self-contained Java project
│
├── README.md # Writeup of PoC 3
│
├── jndi_lookup_demo.py # Python simulation of the full Log4j pipeline:
The writeup covers:
Maintained by @horrister