Skip to content

Instantly share code, notes, and snippets.

@devanshbatham
Created June 4, 2020 06:41
Show Gist options
  • Save devanshbatham/f94a39f29e524a02f371b1858ea333ab to your computer and use it in GitHub Desktop.
Save devanshbatham/f94a39f29e524a02f371b1858ea333ab to your computer and use it in GitHub Desktop.
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