Skip to content

Commit

Permalink
New Nuclei template for CVE-2024-11230-9c96a565da2e7c248610a034ba2260…
Browse files Browse the repository at this point in the history
…e5.yaml [Mon Dec 23 03:40:08 UTC 2024] :robot:
  • Loading branch information
actions-user committed Dec 23, 2024
1 parent 8a33d5f commit ef1dfe7
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-11230-9c96a565da2e7c248610a034ba2260e5

info:
name: >
Elementor Header & Footer Builder <= 1.6.46 - Authenticated (Contributor+) Stored Cross-Site Scripting via Page Title Widget
author: topscoder
severity: low
description: >
The Elementor Header & Footer Builder plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the ‘size’ parameter in all versions up to, and including, 1.6.46 due to insufficient input sanitization and output escaping. This makes it possible for authenticated attackers, with Contributor-level access and above, to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page.
reference:
- https://github.com/topscoder/nuclei-wordfence-cve
- https://www.wordfence.com/threat-intel/vulnerabilities/id/0d82c866-5b35-414e-bd72-30530930d5d8?source=api-prod
classification:
cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:N
cvss-score: 6.4
cve-id: CVE-2024-11230
metadata:
fofa-query: "wp-content/plugins/header-footer-elementor/"
google-query: inurl:"/wp-content/plugins/header-footer-elementor/"
shodan-query: 'vuln:CVE-2024-11230'
tags: cve,wordpress,wp-plugin,header-footer-elementor,low

http:
- method: GET
redirects: true
max-redirects: 3
path:
- "{{BaseURL}}/wp-content/plugins/header-footer-elementor/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:
- "header-footer-elementor"
part: body

- type: dsl
dsl:
- compare_versions(version, '<= 1.6.46')

0 comments on commit ef1dfe7

Please sign in to comment.