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**: Local File Inclusion (LFI) in JoomSport plugin via the `task` parameter.β¦
π‘οΈ **Root Cause**: CWE-98 (Improper Control of Filename for Include/Require). The flaw lies in how the `task` parameter is handled in `class-jsport-controller.php` without proper sanitization, allowing path traversal.
Q3Who is affected? (Versions/Components)
π¦ **Affected**: WordPress Plugin **JoomSport** (by beardev). π **Version**: 5.7.3 and earlier. π **Platform**: WordPress sites running this specific sports management plugin.
Q4What can hackers do? (Privileges/Data)
π΅οΈ **Attacker Capabilities**: Can read sensitive local files (e.g., config, source code).β¦
π **Threshold**: **LOW**. CVSS indicates **AV:N** (Network), **AC:L** (Low Complexity), **PR:N** (No Privileges Required), **UI:N** (No User Interaction). It is easily exploitable remotely without login.
Q6Is there a public Exp? (PoC/Wild Exploitation)
π **Public Exploit**: No specific PoC code listed in the provided data. However, the vulnerability is well-documented in vendor changelogs and WordFence intel, making exploitation logic public knowledge.
Q7How to self-check? (Features/Scanning)
π **Self-Check**: Scan for JoomSport plugin version β€ 5.7.3. Check if `task` parameter in requests is unsanitized. Look for LFI patterns in server logs targeting `class-jsport-controller.php`.
Q8Is it fixed officially? (Patch/Mitigation)
β **Fixed**: **YES**. Reference link `3371353` indicates a fix was committed to the WordPress plugin trunk. Users should update to the latest version immediately.
Q9What if no patch? (Workaround)
π§ **No Patch Workaround**: If unable to update, restrict web server access to `class-jsport-controller.php`. Implement WAF rules to block LFI payloads in the `task` parameter. Disable plugin if not in use.
Q10Is it urgent? (Priority Suggestion)
π₯ **Urgency**: **HIGH**. CVSS Vector is **Critical/High** (H/H/H). Since it requires no authentication and is network-accessible, immediate patching is strongly recommended to prevent remote code execution.