35 lines
677 B
YAML
35 lines
677 B
YAML
|
id: citrix-hypervisor-page
|
||
|
|
||
|
info:
|
||
|
name: Citrix Hypervisor Page Detection
|
||
|
author: pussycat0x
|
||
|
severity: info
|
||
|
metadata:
|
||
|
verified: true
|
||
|
shodan-query: http.title:"Welcome to Citrix Hypervisor"
|
||
|
tags: tech,citrix,default-page
|
||
|
|
||
|
requests:
|
||
|
- method: GET
|
||
|
path:
|
||
|
- '{{BaseURL}}'
|
||
|
|
||
|
matchers-condition: and
|
||
|
matchers:
|
||
|
- type: word
|
||
|
part: body
|
||
|
words:
|
||
|
- 'Welcome to Citrix Hypervisor'
|
||
|
- 'XenCenter'
|
||
|
condition: and
|
||
|
|
||
|
- type: status
|
||
|
status:
|
||
|
- 200
|
||
|
|
||
|
extractors:
|
||
|
- type: regex
|
||
|
part: body
|
||
|
group: 1
|
||
|
regex:
|
||
|
- "Welcome to Citrix Hypervisor ([0-9. ]+)"
|