{"id":21823366,"url":"https://github.com/hxr16f/md5-batkill","last_synced_at":"2025-03-21T11:30:02.798Z","repository":{"id":134180020,"uuid":"257141207","full_name":"hXR16F/MD5-BatKill","owner":"hXR16F","description":"Fast MD5 cracker (about half a million hashes per second).","archived":false,"fork":false,"pushed_at":"2022-01-23T21:17:46.000Z","size":30888,"stargazers_count":8,"open_issues_count":0,"forks_count":4,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-26T07:46:20.776Z","etag":null,"topics":["batch","crack","hash","hash-cracker","hashing-algorithm","md5","md5-hash","md5sum"],"latest_commit_sha":null,"homepage":"","language":"Batchfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hXR16F.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":"2020-04-20T01:32:07.000Z","updated_at":"2024-08-12T20:00:28.000Z","dependencies_parsed_at":null,"dependency_job_id":"f1efa1b0-487d-49e1-b52e-c28506db017b","html_url":"https://github.com/hXR16F/MD5-BatKill","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hXR16F%2FMD5-BatKill","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hXR16F%2FMD5-BatKill/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hXR16F%2FMD5-BatKill/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hXR16F%2FMD5-BatKill/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hXR16F","download_url":"https://codeload.github.com/hXR16F/MD5-BatKill/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244790222,"owners_count":20510703,"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":["batch","crack","hash","hash-cracker","hashing-algorithm","md5","md5-hash","md5sum"],"created_at":"2024-11-27T17:31:13.484Z","updated_at":"2025-03-21T11:30:02.751Z","avatar_url":"https://github.com/hXR16F.png","language":"Batchfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n\t\u003cb\u003eMD5-BatKill - \u003ca href=\"https://www.youtube.com/watch?v=t85oQpT_Rqw\"\u003eYouTube\u003ca/\u003e\u003c/b\u003e\n\t\u003cbr\u003e\n  \u003ci\u003eFast MD5 cracker (about half a million hashes per second).\u003c/i\u003e\n\t\u003cbr\u003e\u003cbr\u003e\u003cbr\u003e\n\t\u003cimg alt=\"Screenshot_1\" src=\"https://user-images.githubusercontent.com/48186982/80112573-8b25b100-8581-11ea-92a4-535e4c759919.png\"\u003e\n\u003c/p\u003e\n\n# Installation\n`git clone https://github.com/hXR16F/MD5-BatKill.git`\\\nOr click **Download ZIP**.\n\n# Usage\nIt's only for Windows. You can use **GUI** or **CLI** version:\n* `md5-batkill.bat` **(CLI)** - double-click to run, paste hash and hit enter.\n* `GUI.exe` **(GUI)** - double-click to run, paste hash into first input, select method (go to bottom of `README.md`) and click '*Crack*' button.\n\n# Cracking\nIt uses an optimized wordlist. Here is how `wordlist.lst` looks:\n```\nfffe:q12q13qq\nfffe:thicluv\nfffe:wanjirah\nffff:1530257\nffff:17011959\nffff:21101102ab\nffff:4369927\n```\n`fffe` and `ffff` are the first four characters of hash. So instead of hashing entire dictionary, it only picks some words and then it's checking for valid hash. It's **a lot faster** than hashing every word.\\\nWhy only 4 characters? Because wordlist size could be 2/3 times larger - **it's a balance between speed and size**.\n\n# Wordlists\n## Want bigger wordlist?\nGo to https://hashkiller.io/listmanager and download some.\\\nAfter downloading you need to use `scripts/hashkiller2batkill.py`.\\\n\\\n**How to use it:**\\\nOpen `scripts/hashkiller2batkill.py` via notepad (or another text editor) and look at first line:\n```python\nwordlist = 'my-wordlist.txt'\n```\nJust replace `my-wordlist.txt` with file you previously [downloaded](https://hashkiller.io/listmanager) and then run: `py hashkiller2batkill.py` while you're in `scripts` folder. It will generate second wordlist for `MD5-BatKill`.\n\n## Or maybe you already have a wordlist that looks like that:\n```\npassword\n123456\nqwerty\ndragon\n```\nSo now you will need `scripts/wordlist2batkill.py`.\\\n\\\n**How to use it:**\\\nOpen `scripts/wordlist2batkill.py` via notepad (or another text editor) and look at second line:\n```python\nwordlist = 'my-wordlist.txt'\n```\nJust replace `my-wordlist.txt` with file you want to make it readable to `MD5-BatKill` and then run: `py wordlist2batkill.py`. It can take some time so be patient.\n\n# Methods\nThere are two methods:\n* `core\\md5.exe -l -d` Faster, don't need to install additional packages. Hasher is from https://www.fourmilab.ch/md5/.\n* `py core/md5.py` Slower, needs [python3](https://www.python.org/downloads/) to be installed.\n\n# Donate\nIf you support my work or like my projects, [you can donate me some money](https://github.com/hXR16F/donate/blob/master/README.md). Thank you 💙\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhxr16f%2Fmd5-batkill","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhxr16f%2Fmd5-batkill","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhxr16f%2Fmd5-batkill/lists"}