u/Grandviewsurfer

Failures in gallery brute force

Failures in gallery brute force

Just gonna leave this here so you all can have a nice laugh:

english_dict_url = (
    'https://raw.githubusercontent.com/'
    'dwyl/english-words/refs/heads/master/words.txt')

english_dict = pd.read_csv(
    english_dict_url, header=None,
    on_bad_lines='skip')[0].to_list()

x0 = '>!bwfrtscd!<'
x1 = '>!rlcoahie!<'
x2 = '>!aeiournt!<'
x3 = '>!dcmnraei!<'
x4 = '>!tdkernsa!<'

possible_words = [''.join(
    [x0i, x1i, x2i, x3i, x4i])
    for x0i in x0
    for x1i in x1
    for x2i in x2
    for x3i in x3
    for x4i in x4]

for word in possible_words:
    if word in english_dict:
        print(word)
u/Grandviewsurfer — 5 days ago