2022-01-28 10:08:24 +00:00
|
|
|
id: metatag-cms
|
|
|
|
|
|
|
|
info:
|
|
|
|
name: Metatag CMS Detection
|
|
|
|
author: dadevel
|
|
|
|
severity: info
|
|
|
|
description: Generic CMS Detection using html meta generator tag
|
2022-04-22 10:38:41 +00:00
|
|
|
reference:
|
|
|
|
- https://www.w3schools.com/tags/att_meta_name.asp
|
2022-01-28 10:08:24 +00:00
|
|
|
tags: tech,cms
|
|
|
|
|
|
|
|
requests:
|
|
|
|
- method: GET
|
|
|
|
path:
|
|
|
|
- "{{BaseURL}}"
|
|
|
|
|
2022-10-07 21:27:25 +00:00
|
|
|
host-redirects: true
|
2022-01-28 10:08:24 +00:00
|
|
|
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="([^"]+?)"'
|