This is a summary of the AI-generated 10-question deep analysis. The full version (longer answers, follow-up Q&A, related CVEs) requires login. Read the full analysis β
Q1What is this vulnerability? (Essence + Consequences)
π¨ **Essence**: A Time-Based Blind SQL Injection flaw in `school-management-system`. π **Consequences**: Attackers can extract database content slowly but surely, leading to total data compromise.
Q2Root Cause? (CWE/Flaw)
π‘οΈ **Root Cause**: Improper handling of the `fromdate` POST parameter in `/studentms/admin/between-date-reprtsdetails.php`. π₯ **Flaw**: Lack of input sanitization allows SQL command injection.
Q3Who is affected? (Versions/Components)
π― **Affected**: `school-management-system` version **1.0**. π€ **Developer**: Shubham kumar (Personal project for schools/small institutions). π **Component**: Admin reporting module.
Q4What can hackers do? (Privileges/Data)
π **Capabilities**: Extract sensitive data (users, grades, PII) via blind SQLi. π **Privileges**: Full read access to the database. π **Impact**: High Confidentiality, Integrity, and Availability risk (CVSS H).
Q5Is exploitation threshold high? (Auth/Config)
β‘ **Threshold**: **LOW**. π **Network**: Attackable remotely (AV:N). π **Auth**: No privileges required (PR:N) for the initial vector? *Note: CVSS says PR:N, implying unauthenticated access or low barrier*.β¦
π¦ **Exploit**: No public PoC listed in data. π **Status**: Theoretical/Unverified wild exploitation. π **Ref**: Check GitHub TREXNEGRO advisory for details, but no code provided yet.
Q7How to self-check? (Features/Scanning)
π **Check**: Scan for the endpoint `/studentms/admin/between-date-reprtsdetails.php`. π‘ **Test**: Send crafted `fromdate` POST payloads with time delays. π οΈ **Tool**: Use SQLmap or manual Burp Suite intercepts.
π **Workaround**: Block external access to `/studentms/admin/`. π§Ή **Input**: Sanitize `fromdate` parameter strictly. π« **Disable**: Turn off the reporting feature if not needed.β¦