Created
November 23, 2019 19:48
-
-
Save Leoid/5356243d7038a5d02e9ffa28724cf16b to your computer and use it in GitHub Desktop.
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
scope = 'https://fuzz.domain' | |
wordlist = open('/opt/Tools/commonspeak2-wordlists/subdomains/subdomains.txt').read().split('\n') | |
for word in range(1,999): | |
#if not word.strip(): | |
# continue | |
x = scope.replace('fuzz',str(word)) | |
print(x+'\n') | |
#print('{}.{}\n'.format(word.strip(), scope)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment