{"id":25236848,"url":"https://github.com/mohmdfo/hashbuster","last_synced_at":"2025-04-05T18:13:34.756Z","repository":{"id":276828861,"uuid":"930439650","full_name":"MohmdFo/hashbuster","owner":"MohmdFo","description":"hashbuster is a simple yet effective hash cracking tool that attempts to crack MD5, SHA-1, and SHA-256 hashes using a wordlist-based attack. It leverages Python's hashlib for hash computation and itertools for wordlist iteration.","archived":false,"fork":false,"pushed_at":"2025-02-18T05:50:05.000Z","size":47,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-05T18:13:31.686Z","etag":null,"topics":["cybersecurity","hash-cracker","md5","pentesting","python","sha1","sha256","wordlist"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MohmdFo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-02-10T16:30:30.000Z","updated_at":"2025-02-18T05:50:09.000Z","dependencies_parsed_at":null,"dependency_job_id":"5b6d3832-cc59-4ac9-86f9-8926d5911fe1","html_url":"https://github.com/MohmdFo/hashbuster","commit_stats":null,"previous_names":["mohmdfo/hashbuster"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MohmdFo%2Fhashbuster","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MohmdFo%2Fhashbuster/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MohmdFo%2Fhashbuster/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MohmdFo%2Fhashbuster/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MohmdFo","download_url":"https://codeload.github.com/MohmdFo/hashbuster/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247378139,"owners_count":20929297,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cybersecurity","hash-cracker","md5","pentesting","python","sha1","sha256","wordlist"],"created_at":"2025-02-11T15:32:10.030Z","updated_at":"2025-04-05T18:13:34.736Z","avatar_url":"https://github.com/MohmdFo.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Hashbuster\n\nHashbuster is a Python-based tool designed to help you crack MD5, SHA1, or SHA256 hashes using a wordlist. **This tool is intended for educational purposes and authorized security testing only. Unauthorized use is illegal and unethical.**\n\n## Features\n\n- **Multi-Algorithm Support:** Crack hashes using MD5, SHA1, or SHA256.\n- **Simple CLI Interface:** Easily specify the target hash, wordlist, and hash algorithm.\n- **Readable Code:** Designed for clarity and ease of modification.\n- **Extensible:** Can be expanded with additional features (e.g., brute-force generation using `itertools`).\n\n## Requirements\n\n- Python 3.x\n\n## Installation\n\n1. **Clone the Repository**\n\n   ```bash\n   git clone https://github.com/MohmdFo/hashbuster.git\n   ```\n\n2. **Navigate to the Project Directory**\n\n   ```bash\n   cd hashbuster\n   ```\n\n## Usage\n\nThe script accepts three arguments:\n- `\u003chash\u003e`: The hash value you wish to crack.\n- `\u003cwordlist\u003e`: The path to a text file containing candidate words (one per line).\n- `-a` or `--algorithm`: The hash algorithm used (supported options: `md5`, `sha1`, `sha256`).\n\n### Running the Script\n\nOpen your terminal and run the following command:\n\n```bash\npython run.py \u003chash\u003e \u003cwordlist\u003e -a \u003calgorithm\u003e\n```\n\n#### Example\n\nIf you have a wordlist file named `10k-most-common.txt` and you want to crack the MD5 hash for the word \"dragon\", use the following command:\n\n```bash\npython run.py 8621ffdbc5698829397d97767ac13db3 10k-most-common.txt -a md5\n```\n\nIf successful, you should see output similar to:\n\n```\n[*] Starting hash cracking using MD5 algorithm...\n[+] Found the match on line 7\n[+] Success! The hash corresponds to: 'dragon'\n```\n\n## Wordlist Format\n\nYour wordlist should be a plain text file with one candidate password per line. For example:\n\n```\npassword\n123456\n12345678\n1234\nqwerty\n12345\ndragon\n```\n\n## How It Works\n\n1. **Hash Computation:**  \n   Each candidate word from the wordlist is stripped of whitespace, encoded, and then hashed using the specified algorithm.\n   \n2. **Comparison:**  \n   The computed hash is compared with the target hash provided by the user. If a match is found, the tool outputs the corresponding candidate word and its location in the wordlist.\n\n3. **Feedback:**  \n   If the password is found, the script prints a success message. If not, it informs the user that the password was not found in the wordlist.\n\n## Contributing\n\nContributions are welcome! If you have ideas for improvements or additional features, please fork the repository and submit a pull request. Before contributing, ensure you adhere to the code style and test your changes thoroughly.\n\n## Disclaimer\n\n**WARNING:** This tool is for educational purposes and authorized penetration testing only. **Do not use this tool on any system or network without explicit permission.** The author is not responsible for any misuse or damage caused by this software.\n\n## License\n\nThis project is licensed under the [MIT License](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmohmdfo%2Fhashbuster","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmohmdfo%2Fhashbuster","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmohmdfo%2Fhashbuster/lists"}