Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Tripcode decoder?

Name: Anonymous 2007-12-03 19:48

is there anyway to convert a tripcode into the password for that tripcode, im using tripsage and I see that you can put in a word you want to see in a trip code and it produces results of passwords that would produce a tripcode with those letters in it, so if we were to take a complete tripcode someone has and enter it into that field, in theory it should eventually produce the 1 password that produces that tripcode, however i have a core 2 duo e6600 which can run 170,000 crypts per second but with over 10^80 possible combinations(numbers + letters + capital letters + symbols, and 10 characters in a tripcode) it would take litteraly much more than trillions of years to run through every combination. Any other suggestions?

Name: Contributing 2009-11-21 22:27

Here's a python script I wrote to bruteforce them:


import sys, time, crypt
t=raw_input("Enter in a tripcode to be bruteforced: ")
chars=range(97,123)
pt=time.time()
def testTripcode(pw):
    trip = crypt.crypt(pw, (pw + 'H.')[1:3])[-10:]
    if trip == t:
        ct=time.time()
        print "match [" + pw + "]"
        print "tripcode [" + trip + "]"
        print "in", ct-pt, "seconds."
        raw_input("")
        sys.exit()
def recurse(width, position, baseString):
    for char in chars:
        if (position < width - 1):
            recurse(width, position + 1, baseString + "%c" % char)
        else:
            testTripcode(baseString + "%c" % char)
maxChars = 8
for baseWidth in range(1, maxChars + 1):
    print "checking passwords width [" + `baseWidth` + "]..."
    recurse(baseWidth, 0, "")


Does six character alphabetic passwords in 2 minutes on my shitty computer. To do numbers too add range(48,57) to the chars variable.

Newer Posts