Sploitus

Exploit for vuln-tracker

githubexploit Β· 2026-07-10

Exploit Code

README43 lines
## https://sploitus.com/exploit?id=2F9CCB5A-E75E-5DB9-B677-4B38B6EB0A12
# πŸ” Vulnerability Tracking & Remediation Tracker

A Python + SQLite vulnerability lifecycle manager β€” from discovery to closure. Simulates a real security team's remediation workflow with CVSS scoring, SLA tracking, ownership, and a full audit trail.

## Quick Start

git clone https://github.com/kennysp19/vuln-tracker.git
cd vuln-tracker
python vuln_tracker.py

## Features

| Feature | Details |
|---|---|
| CVSS Scoring | Auto-maps scores to severity (Critical/High/Medium/Low) |
| SLA Tracking | Auto-calculates due dates by severity (Critical=7 days) |
| Lifecycle States | Open β†’ In Progress β†’ Patched β†’ Closed |
| Audit Trail | Every change logged with actor, timestamp, and comment |
| Risk Acceptance | CISO-level off-ramp for accepted business risk |

## Vulnerability Lifecycle

- OPEN β€” newly discovered, awaiting triage
- IN_PROGRESS β€” remediation actively underway
- PATCHED β€” fix applied, pending verification
- CLOSED β€” verified and signed off
- RISK_ACCEPTED β€” business decision to accept the risk

## Sample Vulnerabilities Included

- Log4Shell (CVE-2021-44228) β€” CVSS 10.0
- EternalBlue (CVE-2017-0144) β€” CVSS 9.8
- Exposed .env file with AWS credentials β€” CVSS 9.1
- SQL Injection in user search endpoint β€” CVSS 8.8
- Unencrypted PII in S3 bucket β€” CVSS 8.2

## Planned Improvements

- Flask web dashboard for browser-based management
- CSV export for audit reporting
- Email notifications on SLA breach
- See also: [SIEM Log Monitor](https://github.com/kennysp19/siem-monitor)