forked from zan8in/afrog
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cve-2021-44451 && kafaka-default-pwd
- Loading branch information
Showing
6 changed files
with
66 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
id: CNVD-2021-14536 | ||
|
||
info: | ||
name: 锐捷RG-UAC统一上网行为管理审计系统存在信息泄露漏洞 | ||
author: jweny(https://github.com/jweny) | ||
name: Ruijie RG-UAC Information Disclosure | ||
author: jweny(https://github.com/jweny) daffainfo | ||
severity: high | ||
description: | | ||
fofa-query: 'title="RG-UAC登录页面"' | ||
rules: | ||
r0: | ||
request: | ||
method: GET | ||
path: /login.php | ||
expression: response.status == 200 && response.body.bcontains(b"<title>RG-UAC登录页面</title>") && response.body.bcontains(b"get_dkey_passwd") && "\"password\":\"[a-f0-9]{32}\"".bmatches(response.body) | ||
expression: response.status == 200 && response.body.bcontains(b"get_dkey_passwd") && "\"password\":\"[a-f0-9]{32}\"".bmatches(response.body) | ||
expression: r0() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
id: CVE-2021-44451 | ||
|
||
info: | ||
name: Apache Superset Default Password | ||
author: dhiyaneshDK | ||
severity: high | ||
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. | ||
Users should upgrade to Apache Superset 1.4.0 or higher. | ||
Fofa: app="APACHE-Superset" | ||
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 | ||
|
||
set: | ||
refererUrl: request.url | ||
rules: | ||
r0: | ||
request: | ||
method: GET | ||
path: /login/ | ||
expression: response.status == 200 | ||
output: | ||
search: '"value=\"(?P<cs_token>.*?)\">".bsubmatch(response.body)' | ||
cs_token: search["cs_token"] | ||
r1: | ||
request: | ||
method: POST | ||
path: /login/ | ||
headers: | ||
Referer: "{{refererUrl}}/admin/airflow/login" | ||
body: | | ||
csrf_token={{cs_token}}&username=admin&password=admin | ||
expression: response.status == 302 && response.body.bcontains(b'<title>Redirecting...</title>') && response.body.bcontains(b'<h1>Redirecting...</h1>') && response.body.bcontains(b'<a href="/">') && response.raw_header.bcontains(b'session') | ||
expression: r0() && r1() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
id: kafka-center-default-password | ||
|
||
info: | ||
name: Apache Kafka Center Default Password | ||
author: dhiyaneshDK | ||
severity: high | ||
description: | | ||
shodan-query: http.title:"Kafka Center" | ||
rules: | ||
r0: | ||
request: | ||
method: POST | ||
path: /login/system | ||
headers: | ||
Content-Type: application/json | ||
body: | | ||
{"name":"admin","password":"admin","checkbox":false} | ||
expression: response.status == 200 && response.body.bcontains(b'"code":200') && response.body.bcontains(b'"name":"admin"') | ||
expression: r0() |
File renamed without changes.