https://github.com/cyberfantics/hash-cracker
https://github.com/cyberfantics/hash-cracker
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/cyberfantics/hash-cracker
- Owner: cyberfantics
- Created: 2024-09-13T09:13:51.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-09-15T09:11:13.000Z (8 months ago)
- Last Synced: 2024-11-17T20:52:18.835Z (6 months ago)
- Language: Python
- Size: 9.77 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Hash Cracking Tool
A Python script to crack hashes from a `.hex` file using a wordlist. The script supports MD5, SHA1, and SHA256 algorithms.
## Features
- Supports **MD5**, **SHA1**, and **SHA256**.
- Reads hex-encoded hashes from a file.
- Attempts to crack the hash using a wordlist.## Installation
1. Clone the repository:
```bash
git clone https://github.com/cyberfantics/hash-cracker.git
```
2. Install dependencies:
```bash
pip install colorama
```## Usage
1. Run the script:
```bash
python3 main.py
```
2. Follow the prompts to input:
- Hex file path
- Wordlist file path
- Hash algorithm (MD5/SHA1/SHA256)## Example
```bash
### Hash Cracking Tool ###
Enter the path to the hex file: inputfile.hex
Enter the path to the wordlist file: wordlist.txt
Select the hash algorithm (1/2/3): 3
[Success] The correct word is: password123
```## Developer
Created by **Mansoor Bukhari**.