Skip to content

Instantly share code, notes, and snippets.

@tbhaxor
Created August 21, 2022 15:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tbhaxor/ae8f906455d1354e4deea5c9d7ae5b8a to your computer and use it in GitHub Desktop.
Save tbhaxor/ae8f906455d1354e4deea5c9d7ae5b8a to your computer and use it in GitHub Desktop.
4 digit wordlist generator
from itertools import product
from string import digits
with open("wordlist.txt", "w") as file:
for secret in product(digits, repeat=4):
print(*secret, sep="", file=file)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment