59 lines
1.8 KiB
YAML
59 lines
1.8 KiB
YAML
id: CVE-2022-35405
|
|
|
|
info:
|
|
name: Zoho ManageEngine Password Manager Pro - Unauthenticated Remote Command Execution
|
|
author: true13
|
|
severity: critical
|
|
description: |
|
|
This is a de-serialization vulnerability that causes unauthenticated RCE in XML-RPC of Zoho Manage Engine Password Manager Pro.
|
|
reference:
|
|
- https://github.com/rapid7/metasploit-framework/blob/master/modules/exploits/windows/http/zoho_password_manager_pro_xml_rpc_rce.rb
|
|
- https://xz.aliyun.com/t/11578
|
|
- https://nvd.nist.gov/vuln/detail/CVE-2022-35405
|
|
- https://www.manageengine.com/products/passwordmanagerpro/advisory/cve-2022-35405.html
|
|
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-2022-35405
|
|
metadata:
|
|
shodan-query: http.title:"ManageEngine Password"
|
|
tags: cve,cve2022,rce,zoho,passwordmanager,deserialization,unauth,msf
|
|
|
|
requests:
|
|
- raw:
|
|
- |
|
|
POST /xmlrpc HTTP/1.1
|
|
Host: {{Hostname}}
|
|
Content-Type: text/xml
|
|
|
|
<?xml version="1.0"?>
|
|
<methodCall>
|
|
<methodName>ProjectDiscovery</methodName>
|
|
<params>
|
|
<param>
|
|
<value>
|
|
<struct>
|
|
<member>
|
|
<name>test</name>
|
|
<value>
|
|
<serializable xmlns="http://ws.apache.org/xmlrpc/namespaces/extensions"></serializable>
|
|
</value>
|
|
</member>
|
|
</struct>
|
|
</value>
|
|
</param>
|
|
</params>
|
|
</methodCall>
|
|
|
|
matchers-condition: and
|
|
matchers:
|
|
- type: word
|
|
part: body
|
|
words:
|
|
- "Failed to read result object: null"
|
|
|
|
- type: word
|
|
part: header
|
|
words:
|
|
- text/xml
|