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 (SQLi) in Tutor LMS plugin. 💥 **Consequences**: Attackers can extract sensitive data from the database. The core issue is insufficient escaping of user input.
Q2Root Cause? (CWE/Flaw)
🛡️ **Root Cause**: CWE-89 (SQL Injection). 🐛 **Flaw**: The 'rating_filter' parameter lacks proper escaping and SQL query preparation. User-supplied data is not sanitized correctly before execution.
Q3Who is affected? (Versions/Components)
📦 **Affected**: WordPress Plugin: **Tutor LMS**. 📉 **Versions**: All versions **up to and including 2.7.6** (<= 2.7.6). Vendor: Themeum.
Q4What can hackers do? (Privileges/Data)
🕵️ **Hackers' Power**: Unauthenticated access. 📂 **Data Risk**: Extract sensitive information from the database. They can append malicious SQL queries to existing ones.
Q5Is exploitation threshold high? (Auth/Config)
🔓 **Threshold**: LOW. 🚫 **Auth Required**: None (Unauthenticated). 🌐 **Access**: Network (AV:N). Simple to exploit without login credentials.
Q6Is there a public Exp? (PoC/Wild Exploitation)
💻 **Public Exp?**: YES. 📂 **PoC Available**: GitHub repos exist (e.g., k0ns0l/CVE-2024-10400). Nuclei templates are also available for scanning.
Q7How to self-check? (Features/Scanning)
🔍 **Self-Check**: Scan for Tutor LMS plugin version <= 2.7.6. 🧪 **Test**: Check if the 'rating_filter' parameter is vulnerable to SQL injection via automated scanners like Nuclei.
Q8Is it fixed officially? (Patch/Mitigation)
🩹 **Fix Status**: Yes, patched. 📢 **Update**: Upgrade to a version **newer than 2.7.6**. Check the WordPress plugin repository for the latest secure version.
Q9What if no patch? (Workaround)
🚧 **No Patch?**: Input validation is critical. 🛑 **Mitigation**: Restrict access to the 'rating_filter' endpoint if possible. Use WAF rules to block SQLi patterns in that parameter.
Q10Is it urgent? (Priority Suggestion)
⚡ **Urgency**: HIGH. 🚨 **Priority**: Immediate patching required. CVSS Score indicates High Confidentiality impact. Unauthenticated exploitation makes it critical.