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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# URX Configuration File Example
# Domain configuration
= ["example.com", "example.org"]
# Output options
[]
= "results.txt"
= "plain" # Options: plain, json, csv
= false
# Provider options
[]
= ["wayback", "cc", "otx"]
= false # Include subdomains when searching
= "CC-MAIN-2025-13" # Common Crawl index to use
= "" # VirusTotal API key (If using VirusTotal)
= false # Exclude robots.txt URLs
= false # Exclude sitemap.xml URLs
# Display options
= false
= false
= false
# Filter options
[]
= ["no-resources", "no-images"] # Filter presets
= ["js", "php", "aspx"] # Include only these extensions
= ["html", "txt"] # Exclude these extensions
= ["admin", "api"] # Only include URLs with these patterns
= ["logout", "static"] # Exclude URLs with these patterns
= false
= false
= false
= 10 # Minimum URL length to include
= 500 # Maximum URL length to include
= true # Strict mode for host validation
# Network options
[]
= "all" # Options: all, providers, testers, providers,testers
= "http://proxy.example.com:8080" # HTTP proxy
= "username:password" # Proxy authentication
= false # Skip SSL certificate verification
= true # Use random User-Agent
= 30 # Request timeout in seconds
= 3 # Number of retries for failed requests
= 5 # Maximum number of parallel requests
= 10 # Rate limit (requests per second)
# Testing options
[]
= false # Check HTTP status code of collected URLs
= ["200", "30x"] # Include URLs with these status codes
= ["404", "50x"] # Exclude URLs with these status codes
= false # Extract additional links from collected URLs
# Cache options
[]
= false # Enable incremental scanning mode
= "sqlite" # Cache backend: sqlite or redis
= "~/.urx/cache.db" # Path for SQLite cache database
= "redis://localhost:6379" # Redis connection URL (for redis cache_type)
= 86400 # Cache time-to-live in seconds (24 hours)
= false # Disable caching entirely