Jump to content

Leaderboard


Popular Content

Showing most liked content on 09/03/17 in all areas

  1. 1 point
    Hi everyone, Today I spent a few hours working on a script that can find the correct password behind it's hashing, also called as brute forcing a password (bcrypt here). What you will need: Python 3.6 Bcrypt module Hashlib module I posted this here because it's designed to find kitsune's and sweater's passwords, so I guess it's CPPS related. Here is the script. As you can see, this script requires a text file called 'passwords.txt', so you will have to copy all the content from here and pasted it in a file that you will obviously call 'passwords.txt'. Now those are the top 1000000 used passwords in the world, it doesn't contain every single password, but what you can do is go here, take some other passwords from other txt files and add them to that list of passwords and pray that the password will be there (lots of chances). If you want to use this for the AS3 version, simply change this: hash += 'Y(02.>\'H}t":E1' To this: hash += "a1ebe00441f5aecb185d0ec178ca2305Y(02.>'H}t\":E1_root" And it will work. Here is a picture of how it works: This is obviously just a basic script and can be improved, but that's up to you since this does a pretty correct job, have fun cracking passwords :) PS: It can take a long time before it finds the password, so take some popcorn with you when you run the script, I am just saying.
×