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**: Critical flaw in WP DSGVO Tools (GDPR) plugin. The `super-unsubscribe` AJAX action lacks proper authorization checks.β¦
π‘οΈ **Root Cause**: **CWE-862** (Missing Authorization). The plugin fails to verify if the user initiating the `super-unsubscribe` action has the right permissions. Itβs a classic 'IDOR' or 'Broken Access Control' flaw.
Q3Who is affected? (Versions/Components)
π¦ **Affected**: **WP DSGVO Tools (GDPR)** by **legalweb**. Specifically versions **3.1.38 and earlier**. π **Platform**: WordPress sites running this specific GDPR compliance plugin.
Q4What can hackers do? (Privileges/Data)
π **Attacker Actions**: Can **destroy user accounts** without permission. This violates Integrity (I:H) and Availability (A:H) but currently has no direct Confidentiality leak (C:N). Itβs about **unauthorized deletion**.
Q5Is exploitation threshold high? (Auth/Config)
β‘ **Threshold**: **LOW**. CVSS Vector shows **AV:N** (Network), **AC:L** (Low Complexity), **PR:N** (No Privileges Required), **UI:N** (No User Interaction). Anyone can exploit this remotely.
Q6Is there a public Exp? (PoC/Wild Exploitation)
π **Exploit Status**: **No public PoC/Exp** listed in the data (`pocs: []`). However, the vulnerability is well-documented in source code diffs, making it easy to craft a manual exploit.
Q7How to self-check? (Features/Scanning)
π **Self-Check**: Scan for **WP DSGVO Tools** version < 3.1.38. Check if the `super-unsubscribe` AJAX endpoint is active. Look for missing nonce or capability checks in `unsubscribe-form-action.php`.
Q8Is it fixed officially? (Patch/Mitigation)
β **Fix Status**: **Yes**. The vendor (legalweb) has released patches. Update to the latest version immediately. References point to trunk and fixed tags in the WordPress plugin repository.
Q9What if no patch? (Workaround)
π§ **No Patch?**: Disable the `super-unsubscribe` shortcode/function if possible. Restrict access to the pluginβs AJAX endpoints via `.htaccess` or WAF rules. Monitor for sudden user account deletions.
Q10Is it urgent? (Priority Suggestion)
π₯ **Urgency**: **CRITICAL**. CVSS Score is high due to **High Integrity/Availability impact** and **No Auth required**. Patch immediately to prevent malicious account purging.