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**: SQL Injection in 'Collapsing Categories' plugin. π₯ **Consequences**: Attackers can extract sensitive database info via the REST API. π **Impact**: High confidentiality loss (CVSS C:H).
Q2Root Cause? (CWE/Flaw)
π‘οΈ **CWE**: CWE-89 (SQL Injection). π **Flaw**: Insufficient escaping of the 'taxonomy' parameter. π **Root**: Lack of SQL preparation in the query logic.
Q3Who is affected? (Versions/Components)
π¦ **Vendor**: robfelty. π± **Product**: Collapsing Categories (WordPress Plugin). π **Affected**: Versions **3.0.8 and earlier**. β οΈ **Note**: WordPress core is mentioned but the flaw is in the plugin.
Q4What can hackers do? (Privileges/Data)
π΅οΈ **Action**: Execute arbitrary SQL queries. πΎ **Data**: Extract sensitive information from the database. π **Privilege**: Unauthenticated access required. No login needed!
π **Check**: Scan for `/wp-json/collapsing-categories/v1/get` endpoint. π‘ **Tool**: Use Nuclei templates for CVE-2024-12025. π§ͺ **Test**: Send crafted 'taxonomy' parameter to trigger SQL error.
Q8Is it fixed officially? (Patch/Mitigation)
π οΈ **Fix**: Update plugin to version **> 3.0.8**. π **Patch**: Developer released fix (Changeset 3201979). β **Status**: Fixed in newer versions.
Q9What if no patch? (Workaround)
π« **Workaround**: Disable/Deactivate the plugin if not needed. π‘οΈ **WAF**: Block suspicious SQL payloads in 'taxonomy' param. π **Access Control**: Restrict REST API access if possible.