forked from adysec/nuclei_poc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCVE-2006-5705.yaml
68 lines (61 loc) · 2.2 KB
/
CVE-2006-5705.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
64
65
66
67
68
id: CVE-2006-5705
info:
name: "WordPress Core <= 2.0.4 - Directory Traversal"
author: topscoder
severity: medium
description: "Multiple directory traversal vulnerabilities in plugins/wp-db-backup.php in WordPress before 2.0.5 allow remote authenticated users to read or overwrite arbitrary files via directory traversal sequences in the (1) backup and (2) fragment parameters in a GET request."
reference:
- http://markjaquith.wordpress.com/2006/10/17/changes-in-wordpress-205/
- http://wordpress.org/development/2006/10/205-ronan/
- http://www.gentoo.org/security/en/glsa/glsa-200611-10.xml
- http://www.openpkg.org/security/advisories/OpenPKG-SA-2006.027-wordpress.html
- http://secunia.com/advisories/22942
- http://www.securityfocus.com/bid/20869
- http://secunia.com/advisories/22683
- http://trac.wordpress.org/changeset/4226
- http://bugs.gentoo.org/show_bug.cgi?id=153303
- http://www.vupen.com/english/advisories/2006/4307
- https://wordpress.org/news/2006/10/205-ronan/
classification:
cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N
cvss-score: 6.5
cve-id: CVE-2006-5705
metadata:
shodan-query: 'vuln:CVE-2006-5705'
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, '<= 2.0.4')
- compare_versions(version_by_js, '<= 2.0.4')
- compare_versions(version_by_css, '<= 2.0.4')
- 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'