Metadata-Version: 2.1
Name: md5-brute-force
Version: 0.3.0
Summary: Python script for brute forcing an md5 hash.
Home-page: https://github.com/vsevolod-mineev/md5-brute-force
License: MIT
Author: Vsevolod Mineev
Author-email: vsevolod.mineev@gmail.com
Requires-Python: >=3.9,<3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.9
Project-URL: Documentation, https://github.com/vsevolod-mineev/md5-brute-force
Project-URL: Repository, https://github.com/vsevolod-mineev/md5-brute-force
Description-Content-Type: text/markdown

# Script to brute force an md5 hash.

This script is for brute forcing your way through an md5 hash. Clone the repo, install the dependencies, run the script, paste your hash -> done.

# How to use:
In order to use this script you must first install `poetry`.

To install `poetry` on osx or linux use:
```
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
```
To install `poetry` on windows powershell use:
```
(Invoke-WebRequest -Uri https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py -UseBasicParsing).Content | python -
```
Clone this Github repository into your current directory before changing into it:
```
git clone https://github.com/vsevolod-mineev/md5-bruteforce
```
```
cd md5-bruteforce/
```
To install the defined dependencies for this project use:
```
poetry install
```
To execute the command within the virtual environment use:
```
poetry run
```

Run the script using the following format:
```
poetry run python3 main.py
```

# How does it work?
![md5-brute-force](./images/md5-brute-force-image.png)


