mirror of
https://github.com/projectdiscovery/nuclei
synced 2026-06-08 16:50:47 +00:00
f893b6c0cb
Signed-off-by: Dwi Siswanto <git@dw1.io>
28 lines
386 B
YAML
28 lines
386 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:
|
|
- ".vercel-dns.com"
|
|
internal: true
|
|
|
|
http:
|
|
- method: GET
|
|
path:
|
|
- "{{BaseURL}}"
|
|
|
|
matchers:
|
|
- type: word
|
|
words:
|
|
- "html>" |