Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flying8lack/hashbruteforce
Python Hash Cracker i built by myself
https://github.com/flying8lack/hashbruteforce
Last synced: 2 days ago
JSON representation
Python Hash Cracker i built by myself
- Host: GitHub
- URL: https://github.com/flying8lack/hashbruteforce
- Owner: flying8lack
- License: gpl-3.0
- Created: 2018-03-10T21:49:39.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-05T10:45:46.000Z (about 6 years ago)
- Last Synced: 2024-06-24T20:03:59.444Z (5 months ago)
- Language: Python
- Size: 30.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Hash Brute Force
## written in python 3.5
Powerful python hash cracker, was built by myself for [Hack this site](https://www.hackthissite.org/) challanges. However, it could be used anywhere else. :)this software is owned and written by **flying8lack** using python, all it does is ask you to input hash type, hash, minimal possible length of the
original password (put 0 if you don't know) and level of possible characters.This program will first attempt cracking the hash using the rainbow table [hash_db.txt](hash_db.txt). If it fails it will try to brute force, until it reach maximum of 10 character in length.
you can edit your own rainbow table, but make sure it follow the following format:
```
algorithm_name:hashed_password:original_password
```
#########################################################################################Available levels:
1. (0-9)
2. (0-9 and a-z)
3. (0-9, a-z and A-Z) *pick this if you don't know*
4. (a-z)
5. (A-Z)