nuclei-templates/technologies/vmware-detect.yaml

60 lines
1.7 KiB
YAML
Raw Normal View History

2021-12-31 13:45:20 +00:00
id: vmware-detect
info:
2021-12-31 13:45:20 +00:00
name: VMware Detection
author: elouhi
severity: info
description: Sends a POST request containing a SOAP payload to a vCenter server to obtain version information
reference:
- https://www.pwndefend.com/2021/09/23/exposed-vmware-vcenter-servers-around-the-world-cve-2021-22005/
2021-09-29 13:32:51 +00:00
- https://svn.nmap.org/nmap/scripts/vmware-version.nse
tags: tech,vcenter,vmware
2021-09-29 18:49:32 +00:00
requests:
- raw:
- |
POST /sdk/ HTTP/1.1
Host: {{Hostname}}
<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soap:Header>
<operationID>00000001-00000001</operationID>
</soap:Header>
<soap:Body>
<RetrieveServiceContent xmlns="urn:internalvim25">
<_this xsi:type="ManagedObjectReference" type="ServiceInstance">ServiceInstance</_this>
</RetrieveServiceContent>
</soap:Body>
</soap:Envelope>
matchers-condition: and
matchers:
- type: status
status:
- 200
- type: word
part: body
words:
2021-10-01 14:18:03 +00:00
- 'ha-folder-root'
- 'RetrieveServiceContentResponse'
2021-12-31 13:45:20 +00:00
condition: or
2021-09-29 18:49:32 +00:00
- type: word
2021-12-31 13:45:20 +00:00
part: header
2021-09-29 18:49:32 +00:00
words:
- "text/xml"
extractors:
- type: regex
part: body
group: 1
regex:
- "<name>(.*?)</name>"
- "<version>(.*?)</version>"
2021-10-01 14:18:03 +00:00
- "<build>(.*?)</build>"
- "<osType>(.*?)</osType>"
- "<productLineId>(.*?)</productLineId>"
- "<apiType>(.*?)</apiType>"