File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -51,6 +51,24 @@ Optional (for QA):
5151
5252## Usage
5353
54+ ### Featured workflow: Cloudflare detection
55+
56+ The Cloudflare detector is the flagship script in this repository.
57+ It combines DNS evidence, DoH fallback, and output modes designed for both analysts and automation.
58+
59+ ``` bash
60+ # Cloudflare detection (single domain)
61+ python3 ./cloudflare-detector.py example.com
62+
63+ # Bulk Cloudflare detection (JSON output)
64+ python3 ./cloudflare-detector.py -f domains.txt --json
65+
66+ # Equivalent explicit format switch
67+ python3 ./cloudflare-detector.py -f domains.txt --output json
68+ ```
69+
70+ ### Other workflows
71+
5472``` bash
5573# Domain record summary
5674./domain-info.sh example.com
@@ -78,13 +96,6 @@ Optional (for QA):
7896
7997# Email provider detection from MX
8098./domain-emailsecurityproviders.sh -f maildomains.txt
81-
82- # Cloudflare detection (single domain or file)
83- python3 ./cloudflare-detector.py example.com
84- python3 ./cloudflare-detector.py -f domains.txt --json
85-
86- # Equivalent explicit format switch
87- python3 ./cloudflare-detector.py -f domains.txt --output json
8899```
89100
90101---
You can’t perform that action at this time.
0 commit comments