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**: Unauthenticated SQL Injection in LearnPress Plugin. π₯ **Consequences**: Attackers can manipulate database queries, leading to data theft or system compromise.β¦
π‘οΈ **Root Cause**: CWE-89 (SQL Injection). The plugin fails to sanitize/escape the `order_by` parameter before using it in SQL statements. π **Flaw**: Poor input validation on API endpoints.
Q3Who is affected? (Versions/Components)
π¦ **Affected**: WordPress Plugin **LearnPress β WordPress LMS Plugin**. π **Versions**: Version **4.1.7.3.2 and earlier** (specifically < 4.2.0). Vendor: ThimPress.
Q4What can hackers do? (Privileges/Data)
π **Attacker Actions**: Extract sensitive data (e.g., `user_pass` hashes), modify database content, or potentially execute arbitrary SQL commands.β¦
β‘ **Threshold**: **LOW**. No authentication required! πͺ **Access**: Unauthenticated users can exploit this via the `/wp-json/lp/v1/courses/archive-course` endpoint. Very easy to trigger.
Q6Is there a public Exp? (PoC/Wild Exploitation)
π **Exploit Status**: **YES**. Public PoCs exist on GitHub (e.g., `sqlmap` scripts). π **Wild Exploitation**: Likely, given the ease of use with tools like sqlmap and Nuclei templates.
Q7How to self-check? (Features/Scanning)
π **Self-Check**: Scan for the specific endpoint `/wp-json/lp/v1/courses/archive-course`. Use Nuclei templates or sqlmap with `--level=5` to test the `order_by` parameter for time-based blind SQLi.β¦
π₯ **Urgency**: **HIGH**. CVSS Score indicates Critical impact on Confidentiality. Unauthenticated access makes it extremely dangerous. π **Priority**: Patch immediately to prevent data breaches.