Merge pull request #9478 from righettod/outsystems_add
Add detection of OutSystems Service Center login panel instances.patch-1
commit
b7b388fbbc
|
@ -0,0 +1,39 @@
|
|||
id: outsystems-servicecenter-panel
|
||||
|
||||
info:
|
||||
name: OutSystems Service Center Login Panel - Detect
|
||||
author: righettod
|
||||
severity: info
|
||||
description: |
|
||||
OutSystems Service Center login panel was detected.
|
||||
reference:
|
||||
- https://www.outsystems.com/
|
||||
metadata:
|
||||
verified: true
|
||||
max-request: 1
|
||||
shodan-query: http.html:"outsystems"
|
||||
tags: panel,outsystems,login,detect
|
||||
|
||||
http:
|
||||
- method: GET
|
||||
path:
|
||||
- "{{BaseURL}}/Login.aspx"
|
||||
- "{{BaseURL}}/ServiceCenter/Login.aspx"
|
||||
|
||||
host-redirects: true
|
||||
max-redirects: 2
|
||||
stop-at-first-match: true
|
||||
matchers:
|
||||
- type: dsl
|
||||
dsl:
|
||||
- 'status_code == 200'
|
||||
- 'contains_any(to_lower(body), "servicecenter", "outsystems.")'
|
||||
- 'contains(to_lower(body), "login")'
|
||||
condition: and
|
||||
|
||||
extractors:
|
||||
- type: regex
|
||||
part: body
|
||||
group: 1
|
||||
regex:
|
||||
- 'environmentName:.?([a-z0-9A-Z\s]+).?'
|
Loading…
Reference in New Issue