https://github.com/danielost/brute-force-password-breaker
A straightforward brute-force password breaker.
https://github.com/danielost/brute-force-password-breaker
brute-force cryptography password-bruteforce
Last synced: 11 days ago
JSON representation
A straightforward brute-force password breaker.
- Host: GitHub
- URL: https://github.com/danielost/brute-force-password-breaker
- Owner: danielost
- Created: 2023-10-08T10:51:42.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-26T10:04:54.000Z (over 1 year ago)
- Last Synced: 2025-02-16T19:48:53.544Z (3 months ago)
- Topics: brute-force, cryptography, password-bruteforce
- Language: Go
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Brute-force Password Breaker
A straightforward password breaker in Go.
## How to use
To crack a password, add it to a new line in `./passwords.txt`. In the same line, add the alphabet that the password breaker will use for the attack.
Example of `./passwords.txt`:
```
87355 0123456789
zqcyb abcdefghijklmnopqrstuvwxyz
GpaTJ aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ
RE5Pd aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ0123456789
W9#j! aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ0123456789!@#$%%^&*
```Then just execute the following command:
```bash
go run .\main.go
```The output should look as follows:
```
87355 -> cracked in 5.2848ms
zqcyb -> cracked in 498.6085ms
GpaTJ -> cracked in 4.500829s
RE5Pd -> cracked in 23.3394005s
W9#j! -> cracked in 54.5428082s
```