Last active
June 5, 2017 08:22
-
-
Save songmw90/4b8fa4bd5c16c679d5f673012f1b5e85 to your computer and use it in GitHub Desktop.
textdash.xyz
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import hashlib | |
| fullhash = "98e86e9c473107b55e707fd4edd9411443e4ded6c39c5ac1c969e096bb733d975a12538f3c4fa1145aa8993b6583731b2eecf68895052d8038dee068317f549d0269c54f1e28606478b15890f6efd2b7e46d969ddf1c5f3b2bd4d4160d354d17" | |
| arr = [fullhash[i:i+32] for i in range(0, len(fullhash), 32)] | |
| string = "1234567890abcdefghijklmnopqrstuvwxyz" | |
| answer = "" | |
| for a in arr: | |
| for i in string: | |
| if hashlib.md5(hashlib.md5("salt").hexdigest() + answer + "" + i + hashlib.md5(answer + "" + i).hexdigest()).hexdigest() == a: | |
| answer = answer + "" + i | |
| print answer | |
| # https://gist.github.com/forkfork/52ba6d2cd5d01390d56c2d27e2963ce1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment