Created
June 4, 2020 06:41
-
-
Save devanshbatham/f94a39f29e524a02f371b1858ea333ab 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
import sys | |
scope = sys.argv[1] | |
wordlist = open('/home/levi/Desktop/Warzone/Base/tools/wordlists/commonspeak.txt').read().split('\n') | |
for word in wordlist: | |
if not word.strip(): | |
continue | |
print('{}.{}'.format(word.strip(), scope)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment