Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
projectdiscovery
GitHub Repository: projectdiscovery/nuclei
Path: blob/dev/integration_tests/flow/conditional-flow-negative.yaml
2073 views
1
id: ghost-blog-detection
2
info:
3
name: Ghost blog detection
4
author: pdteam
5
severity: info
6
7
8
flow: dns() && http()
9
10
dns:
11
- name: "{{FQDN}}"
12
type: CNAME
13
14
matchers:
15
- type: word
16
words:
17
- "ghost.io"
18
internal: true
19
20
http:
21
- method: GET
22
path:
23
- "{{BaseURL}}"
24
25
matchers:
26
- type: word
27
words:
28
- "ghost.io"
29