36 lines
733 B
YAML
36 lines
733 B
YAML
|
id: metatag-cms
|
||
|
|
||
|
info:
|
||
|
name: Metatag CMS Detection
|
||
|
author: dadevel
|
||
|
severity: info
|
||
|
description: Generic CMS Detection using html meta generator tag
|
||
|
reference: https://www.w3schools.com/tags/att_meta_name.asp
|
||
|
tags: tech,cms
|
||
|
|
||
|
requests:
|
||
|
- method: GET
|
||
|
path:
|
||
|
- "{{BaseURL}}"
|
||
|
|
||
|
redirects: true
|
||
|
max-redirects: 2
|
||
|
matchers-condition: and
|
||
|
matchers:
|
||
|
- type: word
|
||
|
part: header
|
||
|
words:
|
||
|
- 'text/html'
|
||
|
|
||
|
- type: regex
|
||
|
part: body
|
||
|
regex:
|
||
|
- '(?i)<meta\s+?name="?generator"?\s+?content="[^"]+?"'
|
||
|
|
||
|
extractors:
|
||
|
- type: regex
|
||
|
part: body
|
||
|
group: 1
|
||
|
regex:
|
||
|
- '(?i)<meta\s+?name="?generator"?\s+?content="([^"]+?)"'
|