mirror of https://github.com/daffainfo/nuclei.git
27 lines
359 B
YAML
27 lines
359 B
YAML
|
id: ghost-blog-detection
|
||
|
info:
|
||
|
name: Ghost blog detection
|
||
|
author: pdteam
|
||
|
severity: info
|
||
|
|
||
|
|
||
|
flow: dns() && http()
|
||
|
|
||
|
dns:
|
||
|
- name: "{{FQDN}}"
|
||
|
type: CNAME
|
||
|
|
||
|
matchers:
|
||
|
- type: word
|
||
|
words:
|
||
|
- "ghost.io"
|
||
|
|
||
|
http:
|
||
|
- method: GET
|
||
|
path:
|
||
|
- "{{BaseURL}}"
|
||
|
|
||
|
matchers:
|
||
|
- type: word
|
||
|
words:
|
||
|
- "ghost.io"
|