Skip to content

Instantly share code, notes, and snippets.

@AlexLynd
Last active September 24, 2021 13:14
Show Gist options
  • Save AlexLynd/00fc1be90399fe9a2d0ea68aa7cda83d to your computer and use it in GitHub Desktop.
Save AlexLynd/00fc1be90399fe9a2d0ea68aa7cda83d to your computer and use it in GitHub Desktop.
IGG Games wordlist for blocking random ad HTML elements
from itertools import product
from string import ascii_lowercase, ascii_uppercase
alphabet = ascii_lowercase + ascii_uppercase
codes = open("codelist.txt","w+")
keywords = [''.join(i) for i in product(alphabet, repeat = 3)]
for words in keywords:
codes.write(words+"\n")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment