mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 17:45:28 +00:00
* log warnings + use scanContext in flow * refactor flow to use scanContext + log all events * feat: internal matcher * fix integration test * bug fix extractor: merge dynamic values, fix missing extractors in file * flow: fix 'No Results Found' if last statement output is false * fix unit test
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" |