{"id":23116550,"url":"https://github.com/rkstudio585/psscrack","last_synced_at":"2025-04-04T01:26:10.578Z","repository":{"id":267640383,"uuid":"901891006","full_name":"rkstudio585/PssCrack","owner":"rkstudio585","description":"A command-line tool for auditing password security using dictionary and brute force attacks, supporting MD5, SHA-1, SHA-256, and SHA-512 hashes with customizable options for efficient password cracking and testing.","archived":false,"fork":false,"pushed_at":"2024-12-11T14:22:02.000Z","size":25,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-09T13:13:35.189Z","etag":null,"topics":["cracking","cracking-tools","hash-cracking-tool","pass-cracking-tools","password-cracking","password-cracking-tools","psscrack","python","python3"],"latest_commit_sha":null,"homepage":"https://rkstudio.com","language":"Python","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/rkstudio585.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":"2024-12-11T14:04:33.000Z","updated_at":"2024-12-11T14:22:06.000Z","dependencies_parsed_at":"2024-12-11T15:28:38.647Z","dependency_job_id":"053be043-b7c7-480a-aba3-a5aeb6673e27","html_url":"https://github.com/rkstudio585/PssCrack","commit_stats":null,"previous_names":["rkstudio585/psscrack"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rkstudio585%2FPssCrack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rkstudio585%2FPssCrack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rkstudio585%2FPssCrack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rkstudio585%2FPssCrack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rkstudio585","download_url":"https://codeload.github.com/rkstudio585/PssCrack/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247105688,"owners_count":20884480,"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":["cracking","cracking-tools","hash-cracking-tool","pass-cracking-tools","password-cracking","password-cracking-tools","psscrack","python","python3"],"created_at":"2024-12-17T04:16:36.162Z","updated_at":"2025-04-04T01:26:10.555Z","avatar_url":"https://github.com/rkstudio585.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PssCrack\n\n### Password Auditor Tool\n\nThe **Password Auditor Tool** is a powerful and simple command-line utility designed to test the strength of passwords by performing **dictionary attacks** and **brute force attacks**. Built for ethical purposes such as auditing password security, this tool supports popular hashing algorithms like MD5, SHA-1, SHA-256, and SHA-512.  \n\n---\n\n## Features\n\n### 1. **Hash Type Support**\nThe tool supports the following hash types:\n- **MD5**\n- **SHA-1**\n- **SHA-256**\n- **SHA-512**\n\n### 2. **Attack Modes**\n- **Dictionary Attack:** Attempts to match the target hash with passwords from a user-specified wordlist.  \n- **Brute Force Attack:** Generates all possible combinations of characters up to a specified length to match the target hash.\n\n### 3. **Customizable Settings**\n- Define the character set for brute force attacks.\n- Specify the maximum password length for brute force attacks.\n- Choose your own wordlist for dictionary attacks.\n\n### 4. **Command-Line Interface (CLI)**\nThe tool features a clean and intuitive CLI, making it easy to specify options and perform attacks.\n\n### 5. **Real-Time Feedback**\n- Progress updates during brute force attacks.\n- Immediate result display when the password is found.\n\n---\n\n## How It Works\n\nThe tool takes a **hashed password** as input and attempts to recover the original password using one of two modes: **dictionary attack** or **brute force attack**. Here's an overview of the workflow:\n\n1. **Hash Detection**  \n   The user specifies the hash type. If it's incorrect, the tool won't work properly.  \n   \n2. **Password Generation**  \n   - For dictionary attacks, the tool reads passwords line-by-line from a wordlist.  \n   - For brute force attacks, the tool generates password combinations based on the user-defined character set and length.\n\n3. **Hash Comparison**  \n   Each generated password is hashed using the specified algorithm and compared to the target hash.\n\n4. **Result Display**  \n   Once the password is found, it's displayed to the user.\n\n---\n\n## Installation\n\n1. **Clone the Repository**\n  ```bash\n   git clone https://github.com/rkstudio585/PssCrack\n   cd PssCrack\n   ```\n\n2. **Install Python Dependencies**\n   Make sure Python 3 is installed on your system. The tool uses the `rich` library for CLI styling. Install it via pip:\n   ```bash\n   pip install rich\n   ```\n\n3. **Run the Tool**\n   ```bash\n   python main.py --help\n   ```\n\n---\n\n## Usage\n\nThe tool supports two attack modes: dictionary and brute force. Below are examples of how to use each mode.\n\n### 1. **Dictionary Attack**\nRun the following command:\n```bash\npython main.py -m dictionary -t md5 -H \u003cHASH\u003e -w \u003cWORDLIST_PATH\u003e\n```\n- `-m dictionary`: Specifies the dictionary attack mode.\n- `-t md5`: Indicates the hash type (replace with `sha1`, `sha256`, or `sha512` as needed).\n- `-H \u003cHASH\u003e`: The target hash you want to crack.\n- `-w \u003cWORDLIST_PATH\u003e`: Path to the wordlist file.\n\n#### Example:\n```bash\npython main.py -m dictionary -t sha256 -H d2d2d0e05640c52298961b3c0a372e2c74f0ab728c7b88264e0d7eb7e2f4fbbd -w wordlist.txt\n```\n\n### 2. **Brute Force Attack**\nRun the following command:\n```bash\npython main.py -m bruteforce -t sha256 -H \u003cHASH\u003e -c abc123 -l 5\n```\n- `-m bruteforce`: Specifies the brute force attack mode.\n- `-t sha256`: Indicates the hash type (replace with `md5`, `sha1`, or `sha512` as needed).\n- `-H \u003cHASH\u003e`: The target hash you want to crack.\n- `-c abc123`: Character set to use for brute force (e.g., letters, numbers, or symbols).\n- `-l 5`: Maximum password length to attempt.\n\n#### Example:\n```bash\npython main.py -m bruteforce -t md5 -H 5f4dcc3b5aa765d61d8327deb882cf99 -c abcdefghijklmnopqrstuvwxyz -l 4\n```\n\n---\n\n## Wordlist Creation\n\n### Example Wordlist\nBelow is a sample `wordlist.txt` file that you can use with the tool:\n```\npassword\n123456\nqwerty\nletmein\nwelcome\nmonkey\npassword1\niloveyou\ntrustno1\n```\n\n### Expanding the Wordlist\nYou can find publicly available wordlists like the **RockYou** wordlist for larger datasets.\n\n---\n\n## Example Outputs\n\n### Dictionary Attack\n```bash\npython main.py -m dictionary -t md5 -H 5f4dcc3b5aa765d61d8327deb882cf99 -w wordlist.txt\n```\n**Output:**\n```\n[INFO] Starting dictionary attack using wordlist.txt...\n[SUCCESS] Password found: password\n```\n\n### Brute Force Attack\n```bash\npython main.py -m bruteforce -t sha256 -H 6dcd4ce23d88e2ee9568ba546c007c63df6a62e72b6c0b7b030b99144f6503d0 -c abc123 -l 3\n```\n**Output:**\n```\n[INFO] Starting brute force attack...\n[SUCCESS] Password found: abc\n```\n\n---\n\n## Limitations\n\n1. **Performance:** Brute force attacks are computationally expensive and may take significant time for long passwords or large character sets.\n2. **Supported Hash Types:** Only common hash types (MD5, SHA-1, SHA-256, SHA-512) are supported in this version.\n3. **Wordlist Size:** The success of dictionary attacks depends heavily on the quality and size of the wordlist.\n\n---\n\n## Future Improvements\n\n- **Multi-threading:** Speed up brute force attacks using concurrent processing.\n- **Additional Hashes:** Add support for more complex hash types like bcrypt or Argon2.\n- **GUI Interface:** Provide a graphical user interface for non-technical users.\n- **Real-Time Stats:** Display attack progress and estimated time for completion.\n\n---\n\n## Ethical Considerations\n\nThis tool is intended for ethical use only:\n- Test password strength on systems you own or have explicit permission to audit.\n- Do not use this tool for illegal or unauthorized purposes.\n\nUnauthorized use of this tool may violate privacy laws and result in severe penalties.\n\n---\n\n## License\n\nThis project is licensed under the MIT License. See the `LICENSE` file for more details.\n\n---\n\n## Contributing\n\nContributions are welcome! Feel free to fork the repository, make improvements, and submit a pull request.\n\n---\n\n## Contact\n\nFor questions, suggestions, or feedback, reach out at:\n- **GitHub:** [GitHub Profile](https://github.com/rkstudio585)\n- **Email:** rkriad585@yahoo.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frkstudio585%2Fpsscrack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frkstudio585%2Fpsscrack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frkstudio585%2Fpsscrack/lists"}