https://github.com/p0dalirius/argon2cracker
A multithreaded bruteforcer of argon2 hashes.
https://github.com/p0dalirius/argon2cracker
argon2 cracker hash mutlithreading python
Last synced: about 2 months ago
JSON representation
A multithreaded bruteforcer of argon2 hashes.
- Host: GitHub
- URL: https://github.com/p0dalirius/argon2cracker
- Owner: p0dalirius
- Created: 2022-02-25T21:39:01.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-21T19:24:05.000Z (almost 3 years ago)
- Last Synced: 2024-12-18T18:50:12.620Z (10 months ago)
- Topics: argon2, cracker, hash, mutlithreading, python
- Language: Python
- Homepage: https://podalirius.net/
- Size: 81.1 KB
- Stars: 34
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README

A multithreaded bruteforcer of argon2 hashes.
![]()
![]()
![]()
## Features
- [x] Progress updated every second with the number of processed hashes per second.
- [x] Multithreaded bruteforce.## Usage
```
$ ./Argon2Cracker.py -h
Argon2Cracker - v1.0 - by Remi GASCOU (Podalirius)usage: Argon2Cracker.py [-h] [-t THREADS] -w WORDLIST [-v] hash
argon2 hash cracker
positional arguments:
hash argon2 hashoptional arguments:
-h, --help show this help message and exit
-t THREADS, --threads THREADS
Number of threads (Default: 16)
-w WORDLIST, --wordlist WORDLIST
Wordlist
-v, --verbose Verbose mode. (default: False)```
## Example
```
./Argon2Cracker.py '$argon2id$v=19$m=102400,t=2,p=8$Xy3Iqq6AmzfugAV7Fo31dA$dAVH9zcRoKHvDDaAy3rdWg' -w ./example/wordlist.txt -v
```
## Contributing
Pull requests are welcome. Feel free to open an issue if you want to add other features.