Ripper

This demonstration starts with the string 'aa' and 'increments' it letter-by-letter ('aa', 'ab', 'ac', and so on). When it gets to 'zz', it adds a letter and continues on ('aaa', 'aab', 'aac', and so on). It will keep guessing until a match is found

Because of memory constraints with the browser, we can only check up to 5 characters (i.e., 'aa' to 'zzzzz'). But this will check every letter combination between them and tell you when it finds a match

It also shows the hash value for the input and match values (though behind-the-scenes, here, we're doing simple string comparison -- if we hashed every value, the browser would run out of memory real quick)



OK RESET