Last active
November 13, 2020 00:48
-
-
Save adi928/dabe2d07099c5fcbcb86a595066c41b1 to your computer and use it in GitHub Desktop.
Amass config for spotify bug bounty
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mode = active | |
output_directory = /Users/name/tools/amass | |
maximum_dns_queries = 10000 | |
[resolvers] | |
monitor_resolver_rate = true | |
resolver = 1.1.1.1 ; Cloudflare | |
resolver = 8.8.8.8 ; Google | |
resolver = 64.6.64.6 ; Verisign | |
resolver = 74.82.42.42 ; Hurricane Electric | |
resolver = 1.0.0.1 ; Cloudflare Secondary | |
resolver = 8.8.4.4 ; Google Secondary | |
resolver = 64.6.65.6 ; Verisign Secondary | |
resolver = 77.88.8.1 ; Yandex.DNS Secondary | |
[scope] | |
port = 80 | |
port = 443 | |
port = 8080 | |
port = 8000 | |
[scope.domains] | |
domain = netlify.com | |
domain = app.netlify.com | |
domain = api.netlify.com | |
[scope.blacklisted] | |
subdomain = *.netlify.app | |
subdomain = webpop.com | |
[bruteforce] | |
enabled = true | |
wordlist_file = /Users/name/SecLists/Discovery/DNS/Jhaddix-dns.txt | |
[alterations] | |
enabled = true | |
edit_distance = 1 ; Setting this to zero will disable this expensive feature. | |
flip_words = true | |
flip_numbers = true | |
add_words = true | |
wordlist_file = /Users/name/SecLists/Discovery/DNS/Jhaddix-dns.txt | |
[data_sources] | |
minimum_ttl = 1440 ; One day | |
[data_sources.disabled] | |
data_source = Ask | |
data_source = Exalead | |
data_source = IPv4Info | |
[data_sources.GitHub] | |
ttl = 4320 | |
[data_sources.GitHub.accountname] | |
apikey = be5bebed78a4f829ab7abe | |
[data_sources.ReconDev] | |
[data_sources.ReconDev.paid] | |
apikey = 22672e91feeaf | |
[data_sources.Shodan] | |
ttl = 10080 | |
[data_sources.Shodan.Credentials] | |
apikey = sB839ZToJCTKX8Ovc | |
[data_sources.URLScan] | |
[data_sources.URLScan.Credentials] | |
apikey = 00cc71d3-d920b166005d | |
[data_sources.VirusTotal] | |
ttl = 10080 | |
[data_sources.VirusTotal.Credentials] | |
apikey = e61cafe41bb7f193103eca |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment