Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ikkebr/PyBozoCrack
A silly & effective MD5 cracker in Python
https://github.com/ikkebr/PyBozoCrack
Last synced: 15 days ago
JSON representation
A silly & effective MD5 cracker in Python
- Host: GitHub
- URL: https://github.com/ikkebr/PyBozoCrack
- Owner: ikkebr
- License: bsd-3-clause
- Created: 2011-11-23T13:46:01.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2022-12-26T19:43:39.000Z (almost 2 years ago)
- Last Synced: 2024-04-24T14:29:51.208Z (7 months ago)
- Language: Python
- Homepage:
- Size: 645 KB
- Stars: 252
- Watchers: 9
- Forks: 48
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- Changelog: HISTORY.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
- awesome-termux-hacking - PyBozoCrack - A silly & effective MD5 cracker in Python.[![->](https://img.shields.io/github/stars/ikkebr/PyBozoCrack.svg?style=social&label=Star&maxAge=2592000)](https://github.com/ikkebr/PyBozoCrack/stargazers/) (Uncategorized / Uncategorized)
README
===============================
PyBozoCrack 3
===============================.. image:: https://badge.fury.io/py/pybozocrack.png?123
:target: http://badge.fury.io/py/pybozocrack
.. image:: https://travis-ci.org/ikkebr/PyBozoCrack.svg?123
:target: https://travis-ci.org/ikkebr/PyBozoCrack
.. image:: https://coveralls.io/repos/ikkebr/PyBozoCrack/badge.png?123
:target: https://coveralls.io/r/ikkebr/PyBozoCrack.. image:: https://pypip.in/d/pybozocrack/badge.png?123
:target: https://pypi.python.org/pypi/pybozocrackPyBozoCrack 3 is a depressingly effective MD5 password hash cracker with almost zero CPU/GPU load written in Python 3. Instead of rainbow tables, dictionaries, or brute force, PyBozoCrack simply *finds* the plaintext password. Specifically, it googles the MD5 hash and hopes the plaintext appears somewhere on the first page of results.
* Free software: BSD license
It works way better than it ever should. Go ahead and try.
How?
----
Basic usage:**$ pybozocrack -f my_md5_hashes.txt**
Or:
**$ pybozocrack -s fcf1eed8596699624167416a1e7e122e**
The input file has no specified format. BozoCrack automatically picks up strings that look like MD5 hashes. A single line shouldn't contain more than one hash.
Example with output:
**$ pybozocrack -f example.txt**
Loaded 5 unique hashes
fcf1eed8596699624167416a1e7e122e:octopus
bed128365216c019988915ed3add75fb:passw0rd
d0763edaa9d9bd2a9516280e9044d885:monkey
dfd8c10c1b9b58c8bf102225ae3be9eb:12081977
ede6b50e7b5826fe48fc1f0fe772c48f:1q2w3e4r5t6y**$ pybozocrack -s fcf1eed8596699624167416a1e7e122e**
fcf1eed8596699624167416a1e7e122e:octopus
Why?
----
To show just how bad an idea it is to use plain MD5 as a password hashing mechanism. Honestly, if the passwords can be cracked with *this software*, there are no excuses.Who?
----
BozoCrack was originally written by Juuso Salonen (http://twitter.com/juusosalonen).PyBozoCrack was rewritten in Python by Henrique Pereira (http://ikke.top).