26 lines
422 B
YAML
26 lines
422 B
YAML
|
id: phpcollab-detect
|
||
|
|
||
|
info:
|
||
|
name: PhpCollab detect
|
||
|
author: pikpikcu
|
||
|
severity: info
|
||
|
tags: tech,phpcollab
|
||
|
|
||
|
requests:
|
||
|
- method: GET
|
||
|
path:
|
||
|
- "{{BaseURL}}/general/login.php"
|
||
|
|
||
|
matchers:
|
||
|
- type: word
|
||
|
part: body
|
||
|
words:
|
||
|
- '<title>PhpCollab</title>'
|
||
|
|
||
|
extractors:
|
||
|
- type: regex
|
||
|
part: body
|
||
|
group: 1
|
||
|
regex:
|
||
|
- '<p id="footer">(.*)</p>'
|