33 lines
518 B
YAML
33 lines
518 B
YAML
id: php-proxy-detect
|
|
|
|
info:
|
|
name: PHP Proxy Detect
|
|
author: pikpikcu
|
|
severity: info
|
|
tags: tech,php
|
|
|
|
requests:
|
|
- method: GET
|
|
path:
|
|
- "{{BaseURL}}"
|
|
- "{{BaseURL}}/proxy"
|
|
|
|
matchers-condition: and
|
|
matchers:
|
|
|
|
- type: word
|
|
part: body
|
|
words:
|
|
- "<title>PHP-Proxy</title>"
|
|
|
|
- type: status
|
|
status:
|
|
- 200
|
|
|
|
extractors:
|
|
- type: regex
|
|
part: body
|
|
group: 1
|
|
regex:
|
|
- 'PHP\-Proxy<\/a> ([0-9.]+)<\/div>'
|