mirror of https://github.com/daffainfo/nuclei.git
28 lines
382 B
YAML
28 lines
382 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"
|
|
internal: true
|
|
|
|
http:
|
|
- method: GET
|
|
path:
|
|
- "{{BaseURL}}"
|
|
|
|
matchers:
|
|
- type: word
|
|
words:
|
|
- "ghost.io" |