mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-26 13:45:25 +00:00
29 lines
420 B
YAML
29 lines
420 B
YAML
|
|
id: ghost-blog-detection
|
||
|
|
info:
|
||
|
|
name: Ghost blog detection
|
||
|
|
author: pdteam
|
||
|
|
severity: info
|
||
|
|
|
||
|
|
|
||
|
|
flow: dns() && http()
|
||
|
|
|
||
|
|
dns:
|
||
|
|
- name: "{{FQDN}}"
|
||
|
|
type: CNAME
|
||
|
|
|
||
|
|
extractors:
|
||
|
|
- type: dsl
|
||
|
|
name: cname
|
||
|
|
internal: true
|
||
|
|
dsl:
|
||
|
|
- cname
|
||
|
|
|
||
|
|
http:
|
||
|
|
- method: GET
|
||
|
|
path:
|
||
|
|
- "{{BaseURL}}?ref={{cname}}"
|
||
|
|
|
||
|
|
matchers:
|
||
|
|
- type: word
|
||
|
|
words:
|
||
|
|
- "ghost.io"
|