{"id":27020053,"url":"https://github.com/adscanpro/weakpass-lookup","last_synced_at":"2025-10-26T20:15:09.828Z","repository":{"id":281140549,"uuid":"944331036","full_name":"ADScanPro/weakpass-lookup","owner":"ADScanPro","description":"A Python script that queries the Weakpass API to attempt cracking various types of password hashes (NTLM, MD5, SHA1, SHA256). This tool is particularly helpful for cracking NTLM hashes obtained via DCSync in a Windows Domain environment, though it supports several other hash types as well.","archived":false,"fork":false,"pushed_at":"2025-03-07T07:41:52.000Z","size":13,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-07T08:19:16.911Z","etag":null,"topics":["active-directory","cracking","ntlm","ntlm-hash","pentesting","red-team"],"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/ADScanPro.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-03-07T06:53:29.000Z","updated_at":"2025-03-07T07:41:55.000Z","dependencies_parsed_at":"2025-03-07T08:19:18.898Z","dependency_job_id":"bf8d1e31-be7d-4caa-a305-96bcb7530ded","html_url":"https://github.com/ADScanPro/weakpass-lookup","commit_stats":null,"previous_names":["adscanpro/weakpass-lookup"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ADScanPro%2Fweakpass-lookup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ADScanPro%2Fweakpass-lookup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ADScanPro%2Fweakpass-lookup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ADScanPro%2Fweakpass-lookup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ADScanPro","download_url":"https://codeload.github.com/ADScanPro/weakpass-lookup/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247226191,"owners_count":20904467,"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":["active-directory","cracking","ntlm","ntlm-hash","pentesting","red-team"],"created_at":"2025-04-04T18:19:56.149Z","updated_at":"2025-10-26T20:15:09.824Z","avatar_url":"https://github.com/ADScanPro.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# weakpass-lookup\n\nA Python script that queries the [Weakpass API](https://weakpass.com/api) to attempt cracking various types of password hashes (NTLM, MD5, SHA1, SHA256). This tool is particularly helpful for cracking NTLM hashes obtained via DCSync in a Windows Domain environment, though it supports several other hash types as well.\n\n## Features\n\n- **Generic search**: No need to specify the hash type (supports NTLM, MD5, SHA1, SHA256).\n- **Bulk processing**: Reads hashes from a file and checks them concurrently using multiple worker threads.\n- **Single hash processing**: Checks a single hash without needing a file.\n- **Verbose mode**: Provides additional debug output to help with troubleshooting.\n- **Debug mode**: Rich-formatted tracebacks and HTTP details for local/dev troubleshooting.\n\n## Installation\n\nIt is recommended to install **weakpass-lookup** using pipx (preferred) or [pip](https://pip.pypa.io/en/stable/).\n\n### Using pipx (Recommended)\n\n```sh\npipx install weakpass-lookup\n```\n\n\u003e Make sure you have pipx installed and set up on your system.\n\n### Using pip\n\n```sh\npip install weakpass-lookup\n```\n\n## Usage\n\n```sh\nusage: weakpass-lookup [-h] (-f FILE | -H HASH) [-w WORKERS] [-v] [-d]\n\nSearches hashes in the Weakpass API\n\noptional arguments:\n  -h, --help            show this help message and exit\n  -f FILE, --file FILE  File with list of hashes (one per line)\n  -H HASH, --hash HASH  Individual hash to search\n  -w WORKERS, --workers WORKERS\n                        Number of threads to use (default: 10)\n  -v, --verbose         Verbose mode to show more debugging details\n  -d, --debug           Debug mode with tracebacks and HTTP details (use only in local/dev)\n```\n\n### Examples\n\n1. **Crack a single hash:**\n    \n    ```sh\n    weakpass-lookup --hash \u003cHASH_VALUE\u003e\n\t  ```\n    \n2. **Crack multiple hashes from a file (default 10 threads):**\n    \n    ```sh\n    weakpass-lookup --file /path/to/hashes.txt --workers 10\n\t  ```\n    \n3. **Use verbose mode for debugging:**\n    \n    ```sh\n    weakpass-lookup --file /path/to/hashes.txt --verbose\n\t  ```\n    \n4. **Detailed debug:**\n    \n    ```sh\n    weakpass-lookup --hash \u003cHASH_VALUE\u003e --debug\n\t  ```\n\n## Output\n\n- When processing a file:\n    \n    - `\u003cfilename\u003e_cracked.txt`: Stores all cracked hashes in `\u003chash\u003e:\u003cpassword\u003e` format.\n    - `\u003cfilename\u003e_uncracked.txt`: Stores all remaining uncracked hashes.\n- When processing a single hash:\n    \n    - Prints the result (cracked or uncracked) directly to the terminal.\n\n## Contributing\n\n1. Fork the project.\n2. Create a new feature branch (`git checkout -b feature/my-feature`).\n3. Commit your changes (`git commit -m 'Add some feature'`).\n4. Push to the branch (`git push origin feature/my-feature`).\n5. Open a Pull Request.\n\n## License\n\nThis project is licensed under the MIT License. Feel free to use, modify, and distribute it as per the terms of the license.\n\n---\n\n**Happy cracking with weakpass-lookup!**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadscanpro%2Fweakpass-lookup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadscanpro%2Fweakpass-lookup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadscanpro%2Fweakpass-lookup/lists"}