1Password - need help using hashcat
#18
I was extremely bored and therefor hacked together this very complicated python3 script:

Code:
CHARSET_PREP = '"!ยง'
CHARSET_APP = 'tT'
BASEWORD = 'GreatScript'

print(BASEWORD)
for c1 in list(CHARSET_PREP):
    print(c1 + BASEWORD)
    for c2 in list(CHARSET_APP):
        print(c1 + BASEWORD + c2)
for c2 in list(CHARSET_APP):
    print(BASEWORD + c2)


Messages In This Thread
RE: 1Password - need help using hashcat - by undeath - 05-05-2017, 04:21 PM