nuclei-templates/technologies/php-detect.yaml

34 lines
520 B
YAML
Raw Normal View History

2022-10-28 08:03:26 +00:00
id: php-detect
info:
name: PHP Detect
author: y0no
severity: info
2022-11-03 04:15:45 +00:00
metadata:
verified: true
shodan-query: "X-Powered-By: PHP"
2022-10-28 08:03:26 +00:00
tags: tech,php
requests:
- method: GET
path:
- "{{BaseURL}}"
matchers-condition: and
matchers:
- type: word
part: header
words:
- "PHP"
- type: status
status:
- 200
extractors:
- type: regex
part: header
group: 1
regex:
2022-11-03 04:15:45 +00:00
- "X-Powered-By: PHP/([0-9.]+)"