43 lines
833 B
YAML
43 lines
833 B
YAML
|
id: servicenow-panel
|
||
|
|
||
|
info:
|
||
|
name: ServiceNow Login Panel - Detect
|
||
|
author: righettod
|
||
|
severity: info
|
||
|
description: |
|
||
|
Service Now Login Panel was detected.
|
||
|
reference:
|
||
|
- https://www.servicenow.com/
|
||
|
metadata:
|
||
|
verified: true
|
||
|
max-request: 1
|
||
|
shodan-query: http.favicon.hash:1701804003
|
||
|
tags: panel,servicenow,login,detect
|
||
|
|
||
|
http:
|
||
|
- method: GET
|
||
|
path:
|
||
|
- '{{BaseURL}}/login.do'
|
||
|
|
||
|
matchers-condition: and
|
||
|
matchers:
|
||
|
- type: word
|
||
|
part: body
|
||
|
words:
|
||
|
- 'ServiceNow'
|
||
|
- 'window.NOW.'
|
||
|
- 'NOW.user.userID'
|
||
|
condition: and
|
||
|
case-insensitive: true
|
||
|
|
||
|
- type: status
|
||
|
status:
|
||
|
- 200
|
||
|
|
||
|
extractors:
|
||
|
- type: regex
|
||
|
part: body
|
||
|
group: 1
|
||
|
regex:
|
||
|
- '(?i)g_builddate\s+=\s+"([0-9._-]+)"'
|