Merge pull request #9615 from righettod/uipath_add
Add detection of UiPath Orchestrator login panel instances.patch-1
commit
08c6fdaffc
|
@ -0,0 +1,34 @@
|
||||||
|
id: uipath-orchestrator-panel
|
||||||
|
|
||||||
|
info:
|
||||||
|
name: UiPath Orchestrator Login Panel - Detect
|
||||||
|
author: righettod
|
||||||
|
severity: info
|
||||||
|
description: |
|
||||||
|
UiPath Orchestrator login panel was detected.
|
||||||
|
reference:
|
||||||
|
- https://www.uipath.com/
|
||||||
|
metadata:
|
||||||
|
verified: true
|
||||||
|
max-request: 1
|
||||||
|
shodan-query: http.title:"UiPath Orchestrator"
|
||||||
|
tags: panel,uipath,login,detect
|
||||||
|
|
||||||
|
http:
|
||||||
|
- method: GET
|
||||||
|
path:
|
||||||
|
- "{{BaseURL}}/Account/Login"
|
||||||
|
|
||||||
|
matchers:
|
||||||
|
- type: dsl
|
||||||
|
dsl:
|
||||||
|
- 'status_code == 200'
|
||||||
|
- 'contains(to_lower(body), "<title>uipath orchestrator")'
|
||||||
|
condition: and
|
||||||
|
|
||||||
|
extractors:
|
||||||
|
- type: regex
|
||||||
|
part: body
|
||||||
|
group: 1
|
||||||
|
regex:
|
||||||
|
- '\?(?:version|v)=([0-9.]+)'
|
Loading…
Reference in New Issue