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
22 lines
487 B
YAML
22 lines
487 B
YAML
id: default-detect-generic
|
|
|
|
info:
|
|
name: Default Web Application Detection
|
|
author: andydoering
|
|
severity: info
|
|
description: Catch-all for detecting default installations of web applications using common phrases found in default install pages
|
|
tags: tech
|
|
|
|
requests:
|
|
- method: GET
|
|
path:
|
|
- "{{BaseURL}}"
|
|
|
|
matchers:
|
|
|
|
- type: word
|
|
part: body
|
|
condition: or
|
|
words:
|
|
- "<title>Default</title>"
|
|
- "<title>Welcome to</title>" |