Skip to content

Commit

Permalink
New Nuclei template for CVE-2024-6297-05b8b2a97ccecc2fd598cd678681096…
Browse files Browse the repository at this point in the history
…5.yaml [Sun Jun 30 03:33:36 UTC 2024] :robot:
  • Loading branch information
actions-user committed Jun 30, 2024
1 parent 3b4ae4a commit 4d16bfd
Showing 1 changed file with 59 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
id: CVE-2024-6297-05b8b2a97ccecc2fd598cd6786810965

info:
name: >
Several WordPress.org Plugins <= Various Versions - Injected Backdoor
author: topscoder
severity: critical
description: >
Several plugins for WordPress hosted on WordPress.org have been compromised and injected with malicious PHP scripts. A malicious threat actor compromised the source code of various plugins and injected code that exfiltrates database credentials and is used to create new, malicious, administrator users and send that data back to a server. Currently, not all plugins have been patched and we strongly recommend uninstalling the plugins for the time being and running a complete malware scan.
reference:
- https://github.com/topscoder/nuclei-wordfence-cve
- https://www.wordfence.com/threat-intel/vulnerabilities/id/56d24bc8-4a1a-4e60-aec5-960703a6058a?source=api-prod
classification:
cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H
cvss-score: 10
cve-id: CVE-2024-6297
metadata:
fofa-query: "wp-content/plugins/twenty20/"
google-query: inurl:"/wp-content/plugins/twenty20/"
shodan-query: 'vuln:CVE-2024-6297'
tags: cve,wordpress,wp-plugin,twenty20,critical

http:
- method: GET
redirects: true
max-redirects: 3
path:
- "{{BaseURL}}/wp-content/plugins/twenty20/readme.txt"

extractors:
- type: regex
name: version
part: body
group: 1
internal: true
regex:
- "(?mi)Stable tag: ([0-9.]+)"

- type: regex
name: version
part: body
group: 1
regex:
- "(?mi)Stable tag: ([0-9.]+)"

matchers-condition: and
matchers:
- type: status
status:
- 200

- type: word
words:
- "twenty20"
part: body

- type: dsl
dsl:
- compare_versions(version, '1.6.3')

0 comments on commit 4d16bfd

Please sign in to comment.