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**: A critical **SQL Injection (SQLi)** flaw in the UsersWP plugin. <br>π₯ **Consequences**: Attackers can execute arbitrary SQL queries, leading to full data compromise, integrity loss, and service disruption.
Q2Root Cause? (CWE/Flaw)
π‘οΈ **Root Cause**: **CWE-89** (SQL Injection). <br>π **Flaw**: Insufficient escaping of the **`uwp_sort_by`** parameter. The plugin fails to sanitize user input before using it in SQL statements.
Q3Who is affected? (Versions/Components)
π₯ **Affected**: WordPress sites using **UsersWP** plugin. <br>π¦ **Versions**: All versions **before 1.2.10**. <br>π’ **Vendor**: stiofansisland.
Q4What can hackers do? (Privileges/Data)
π **Attacker Capabilities**: <br>β’ **Read**: Extract sensitive database data (users, passwords, configs). <br>β’ **Write/Modify**: Alter database content. <br>β’ **Execute**: Run arbitrary SQL commands.β¦
πͺ **Threshold**: **LOW**. <br>π **Auth**: **Unauthenticated** access required. <br>βοΈ **Config**: Attacker must control the **`uwp_sort_by`** parameter. No login needed to exploit.
Q6Is there a public Exp? (PoC/Wild Exploitation)
π **Exploit Status**: **Yes**. <br>π **PoC Available**: Public Nuclei template exists on GitHub (projectdiscovery). <br>π **Risk**: Automated scanning tools can detect and exploit this easily.
Q7How to self-check? (Features/Scanning)
π **Self-Check**: <br>1. Scan for **UsersWP** plugin version < 1.2.10. <br>2. Use **Nuclei** with the CVE-2024-6265 template. <br>3. Check if `uwp_sort_by` parameter is exposed in login/registration forms.
Q8Is it fixed officially? (Patch/Mitigation)
β **Fix**: **Yes**. <br>π§ **Patch**: Upgrade UsersWP to version **1.2.10** or later. <br>π **Source**: Official WordPress plugin repository fix included.
Q9What if no patch? (Workaround)
π **No Patch Workaround**: <br>1. **Disable** the UsersWP plugin immediately if possible. <br>2. **WAF Rules**: Block requests containing SQLi patterns in the `uwp_sort_by` parameter. <br>3.β¦