From ef1dfe7cca25d5d8cb247cffb089486d1ddf795c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 23 Dec 2024 03:40:08 +0000 Subject: [PATCH] New Nuclei template for CVE-2024-11230-9c96a565da2e7c248610a034ba2260e5.yaml [Mon Dec 23 03:40:08 UTC 2024] :robot: --- ...1230-9c96a565da2e7c248610a034ba2260e5.yaml | 59 +++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 nuclei-templates/2024/CVE-2024-11230-9c96a565da2e7c248610a034ba2260e5.yaml diff --git a/nuclei-templates/2024/CVE-2024-11230-9c96a565da2e7c248610a034ba2260e5.yaml b/nuclei-templates/2024/CVE-2024-11230-9c96a565da2e7c248610a034ba2260e5.yaml new file mode 100644 index 0000000000..e905e324b5 --- /dev/null +++ b/nuclei-templates/2024/CVE-2024-11230-9c96a565da2e7c248610a034ba2260e5.yaml @@ -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') \ No newline at end of file