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 BookingPress plugin. π₯ **Consequences**: Attackers can manipulate database queries via AJAX requests, leading to data theft or site compromise.
Q2Root Cause? (CWE/Flaw)
π‘οΈ **CWE-89**: Improper Neutralization of Special Elements used in an SQL Command.β¦
π¦ **Product**: BookingPress β Appointments Booking Calendar Plugin. π **Affected**: Versions **before 1.0.11**. β **Fixed**: In version 1.0.11 and later.
Q4What can hackers do? (Privileges/Data)
π΅οΈ **Capabilities**: Dump WordPress user credentials, access database metadata, and perform arbitrary blind SQL injection. π **Impact**: Full database access and potential server takeover.
Q5Is exploitation threshold high? (Auth/Config)
π **Threshold**: **LOW**. The exploit is **Unauthenticated**. No login or special configuration is needed to trigger the vulnerability via AJAX POST requests.
Q6Is there a public Exp? (PoC/Wild Exploitation)
π£ **Public Exp**: **YES**. Multiple PoCs exist on GitHub (Python, Bash scripts). π **Wild Exploitation**: High risk due to ease of use and unauthenticated nature.
Q7How to self-check? (Features/Scanning)
π **Check**: Scan for BookingPress plugin version < 1.0.11. π§ͺ **Test**: Use provided PoC scripts (e.g., `cve-2022-0739.py`) against the target URL to verify SQLi presence.
Q8Is it fixed officially? (Patch/Mitigation)
π§ **Official Fix**: **YES**. Update the BookingPress plugin to **version 1.0.11 or higher**. π **Ref**: WordPress Trac changeset 2684789.
Q9What if no patch? (Workaround)
π§ **Workaround**: If patching is delayed, disable the BookingPress plugin temporarily or restrict access to the `bookingpress_front_get_category_services` AJAX endpoint via WAF rules.
Q10Is it urgent? (Priority Suggestion)
β‘ **Priority**: **CRITICAL**. Unauthenticated SQLi allows immediate data breach. π **Action**: Patch immediately. Do not wait.