34 lines
516 B
YAML
34 lines
516 B
YAML
|
id: php-detect
|
||
|
|
||
|
info:
|
||
|
name: PHP Detect
|
||
|
author: y0no
|
||
|
severity: info
|
||
|
metadata:
|
||
|
verified: true
|
||
|
shodan-query: "X-Powered-By: PHP"
|
||
|
tags: tech,php
|
||
|
|
||
|
http:
|
||
|
- 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:
|
||
|
- "X-Powered-By: PHP/([0-9.]+)"
|