mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-01-31 15:53:33 +08:00
* info field reorder * reference values refactored to list * added new lines after the id and before the protocols * removed extra new lines * split really long descriptions to multiple lines (part 1) * other minor fixes
31 lines
582 B
YAML
31 lines
582 B
YAML
id: mrtg-detect
|
|
|
|
info:
|
|
name: Detect MRTG
|
|
author: geeknik
|
|
severity: info
|
|
description: The Multi Router Traffic Grapher
|
|
reference:
|
|
- https://oss.oetiker.ch/mrtg/
|
|
tags: tech,mrtg
|
|
|
|
requests:
|
|
- method: GET
|
|
path:
|
|
- "{{BaseURL}}"
|
|
- "{{BaseURL}}/mrtg/"
|
|
- "{{BaseURL}}/MRTG/"
|
|
|
|
stop-at-first-match: true
|
|
matchers-condition: and
|
|
matchers:
|
|
- type: status
|
|
status:
|
|
- 200
|
|
- type: word
|
|
part: body
|
|
words:
|
|
- "MRTG Index Page"
|
|
- "Multi Router Traffic Grapher"
|
|
condition: and
|