forked from adysec/nuclei_poc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCVE-2006-6016-d9ea7c997dcbe67ff339e6953c591afd.yaml
61 lines (54 loc) · 1.71 KB
/
CVE-2006-6016-d9ea7c997dcbe67ff339e6953c591afd.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
id: CVE-2006-6016-d9ea7c997dcbe67ff339e6953c591afd
info:
name: >
WordPress Core < 2.0.5 - User Metadata Information Disclosure
author: topscoder
severity: low
description: >
wp-admin/user-edit.php in WordPress before 2.0.5 allows remote authenticated users to read the metadata of an arbitrary user via a modified user_id parameter.
reference:
- https://github.com/topscoder/nuclei-wordfence-cve
- https://www.wordfence.com/threat-intel/vulnerabilities/id/91531e13-5344-442c-99d3-8ccfd61b715d?source=api-prod
classification:
cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N
cvss-score: 4.3
cve-id: CVE-2006-6016
metadata:
shodan-query: 'vuln:CVE-2006-6016'
tags: cve,wordpress,wp-core,low
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'