41 lines
1.2 KiB
YAML
41 lines
1.2 KiB
YAML
id: CVE-2020-16846
|
|
|
|
info:
|
|
name: SaltStack Shell Injection
|
|
author: dwisiswant0
|
|
severity: critical
|
|
description: |
|
|
SaltStack Salt through 3002. Sending crafted web requests to the Salt API,
|
|
with the SSH client enabled, can result in shell injection.
|
|
|
|
This template supports the detection part only. See references.
|
|
reference:
|
|
- https://mp.weixin.qq.com/s/R8qw_lWizGyeJS0jOcYXag
|
|
- https://github.com/vulhub/vulhub/tree/master/saltstack/CVE-2020-16846
|
|
tags: cve,cve2020,saltstack
|
|
classification:
|
|
cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
|
|
cvss-score: 9.80
|
|
cve-id: CVE-2020-16846
|
|
cwe-id: CWE-78
|
|
|
|
requests:
|
|
- method: POST
|
|
path:
|
|
- "{{BaseURL}}/run"
|
|
body: "token=1337&client=ssh&tgt=*&fun=a&roster=projectdiscovery&ssh_priv=nuclei"
|
|
headers:
|
|
Content-Type: application/x-www-form-urlencoded # CherryPy will abort w/o define this header
|
|
matchers-condition: and
|
|
matchers:
|
|
- type: status
|
|
status:
|
|
- 500
|
|
- type: word
|
|
words:
|
|
- "application/json"
|
|
part: header
|
|
- type: word
|
|
words:
|
|
- "An unexpected error occurred"
|
|
part: body |