nuclei-templates/http/technologies/php-proxy-detect.yaml

34 lines
559 B
YAML
Raw Normal View History

2021-09-16 03:51:42 +00:00
id: php-proxy-detect
info:
name: PHP Proxy Detect
author: pikpikcu
severity: info
metadata:
max-request: 2
2023-10-14 11:27:55 +00:00
tags: tech,php,proxy
2021-09-16 03:51:42 +00:00
http:
2021-09-16 03:51:42 +00:00
- method: GET
path:
- "{{BaseURL}}"
- "{{BaseURL}}/proxy"
matchers-condition: and
matchers:
- type: word
part: body
words:
- "<title>PHP-Proxy</title>"
- type: status
status:
- 200
2021-09-16 13:19:01 +00:00
extractors:
- type: regex
part: body
group: 1
regex:
- '<meta name="version" content="([0-9.]+)">'