42 lines
831 B
YAML
42 lines
831 B
YAML
id: openx-panel
|
|
|
|
info:
|
|
name: OpenX Login Panel - Detect
|
|
author: pikpikcu
|
|
severity: info
|
|
description: OpenX login panel was detected.
|
|
classification:
|
|
cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N
|
|
cvss-score: 0.0
|
|
cwe-id: CWE-200
|
|
metadata:
|
|
shodan-query: http.title:"OpenX"
|
|
tags: panel,openx,login
|
|
|
|
requests:
|
|
- method: GET
|
|
path:
|
|
- "{{BaseURL}}/www/admin/index.php"
|
|
- "{{BaseURL}}/admin/index.php"
|
|
|
|
stop-at-first-match: true
|
|
matchers-condition: and
|
|
matchers:
|
|
- type: regex
|
|
part: body
|
|
regex:
|
|
- '<title>OpenX</title>'
|
|
|
|
- type: status
|
|
status:
|
|
- 200
|
|
|
|
extractors:
|
|
- type: regex
|
|
part: body
|
|
group: 1
|
|
regex:
|
|
- '(.*)- http://www.openx.org'
|
|
|
|
# Enhanced by md on 2022/12/02
|