38 lines
842 B
YAML
38 lines
842 B
YAML
|
id: tixeo-panel
|
||
|
|
||
|
info:
|
||
|
name: Tixeo Login Panel - Detect
|
||
|
author: righettod
|
||
|
severity: info
|
||
|
description: |
|
||
|
Tixeo login panel was detected.
|
||
|
reference:
|
||
|
- https://www.tixeo.com/en/
|
||
|
metadata:
|
||
|
verified: true
|
||
|
max-request: 1
|
||
|
shodan-query: http.title:"tixeo"
|
||
|
tags: panel,tixeo,login,detect
|
||
|
|
||
|
http:
|
||
|
- method: GET
|
||
|
path:
|
||
|
- "{{BaseURL}}/meet/services/json/v1/settings"
|
||
|
- "{{BaseURL}}/meet/login.html"
|
||
|
- "{{BaseURL}}/meet/"
|
||
|
|
||
|
stop-at-first-match: true
|
||
|
|
||
|
matchers:
|
||
|
- type: dsl
|
||
|
dsl:
|
||
|
- 'status_code == 200'
|
||
|
- 'contains_any(to_lower(body), "tixeo", "tixeoclient")'
|
||
|
condition: and
|
||
|
|
||
|
extractors:
|
||
|
- type: regex
|
||
|
part: body
|
||
|
group: 1
|
||
|
regex:
|
||
|
- '"applicationVersion"\s*:\s*"([0-9.]+)"'
|