forked from adysec/nuclei_poc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CVE-2004-1584.yaml
63 lines (56 loc) · 1.85 KB
/
CVE-2004-1584.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
id: CVE-2004-1584
info:
name: "WordPress Core <= 1.2 - HTTP Response Splitting"
author: topscoder
severity: medium
description: "CRLF injection vulnerability in wp-login.php in WordPress 1.2 allows remote attackers to perform HTTP Response Splitting attacks to modify expected HTML content from the server via the text parameter."
reference:
- http://marc.info/?l=bugtraq&m=109716327724041&w=2
- http://www.securityfocus.com/bid/11348
- http://secunia.com/advisories/12773
- http://wordpress.org/development/2004/10/wp-121/
- http://www.gentoo.org/security/en/glsa/glsa-200410-12.xml
- https://exchange.xforce.ibmcloud.com/vulnerabilities/17649
classification:
cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N
cvss-score: 5.3
cve-id: CVE-2004-1584
metadata:
shodan-query: 'vuln:CVE-2004-1584'
tags: cve,wordpress,wp-core,medium
http:
- method: GET
path:
- "{{BaseURL}}"
- "{{BaseURL}}/wp-admin/install.php"
- "{{BaseURL}}/feed/"
- "{{BaseURL}}/?feed=rss2" # alternative if /feed/ is blocked
redirects: true
max-redirects: 2
stop-at-first-match: true
matchers-condition: and
matchers:
- type: dsl
dsl:
- compare_versions(version_by_generator, '< 1.2.1')
- compare_versions(version_by_js, '< 1.2.1')
- compare_versions(version_by_css, '< 1.2.1')
- type: status
status:
- 200
extractors:
- type: regex
name: version_by_generator
group: 1
regex:
- '(?m)https:\/\/wordpress.org\/\?v=([0-9.]+)'
- type: regex
name: version_by_js
group: 1
regex:
- 'wp-emoji-release\.min\.js\?ver=((\d+\.?)+)\b'
- type: regex
name: version_by_css
group: 1
regex:
- 'install\.min\.css\?ver=((\d+\.?)+)\b'