-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathprofiles.json
More file actions
38 lines (38 loc) · 1.62 KB
/
Copy pathprofiles.json
File metadata and controls
38 lines (38 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"fast": {
"description": "Quick scan — fastest no-auth sources only",
"sources": ["crtsh", "certspotter", "hackertarget", "rapiddns", "jldc", "alienvault", "anubisdb", "subdomaincenter", "urlhaus", "circl", "bing"],
"options": {}
},
"stealth": {
"description": "Minimal footprint — passive only, rate-limited to avoid detection",
"sources": ["crtsh", "certspotter", "wayback", "commoncrawl", "robtex", "anubisdb"],
"options": {"rate_limit": 2}
},
"osint": {
"description": "OSINT-focused — code repos, threat intel, CT logs, and asset databases",
"sources": [
"crtsh", "certspotter", "alienvault", "virustotal", "shodan",
"github", "grep_app",
"threatminer", "anubisdb", "subdomaincenter",
"hackertarget", "rapiddns", "urlscan",
"bevigil", "hunterhow", "urlhaus", "circl", "bing"
],
"options": {}
},
"code": {
"description": "Code search only — GitHub, grep.app",
"sources": ["github", "grep_app"],
"options": {}
},
"active": {
"description": "Active techniques only — DNS mining, zone transfer, SRV, HTML/JS crawler, PTR sweep, vhost probing, robots/sitemap, CAA mining, NS brute-force, ASN sweep",
"sources": ["zone_transfer", "ns_brute", "dns_mining", "caa_enum", "nsec_walk", "srv_enum", "spider", "robots_sitemap", "ptr_sweep", "asn_sweep", "vhost_probe"],
"options": {}
},
"full": {
"description": "All available passive and active sources",
"sources": "all",
"options": {}
}
}