https://github.com/miiraak/crypdf
Small PDF password Dictionary attack
https://github.com/miiraak/crypdf
Last synced: 2 months ago
JSON representation
Small PDF password Dictionary attack
- Host: GitHub
- URL: https://github.com/miiraak/crypdf
- Owner: Miiraak
- License: mit
- Created: 2024-04-26T22:25:31.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-07-24T21:38:55.000Z (10 months ago)
- Last Synced: 2024-10-11T19:25:20.460Z (8 months ago)
- Language: Python
- Homepage:
- Size: 301 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CryPDF:
Dictionary Attack on Locked PDFs---
**CryPDF** is a simple yet powerful tool designed to help unlock password-protected PDF files using a dictionary attack. With its user-friendly graphical interface, you can quickly test passwords from a predefined or custom dictionary.

## Features
- **Simple Graphical Interface**: Easily select your PDF files and dictionaries via an intuitive interface.
- **Dictionary Attack**: Test passwords from dictionary files to unlock your PDFs.
- **Multithreading Support**: Use multiple threads to speed up the dictionary attack.
- **Result Window**: Displays the found password in a separate window with a one-click copy option.
## Installation
To use CryPDF, ensure Python is installed on your system.
Clone the repository and install the required dependencies:```bash
git clone https://github.com/Miiraak/CryPDF.git
cd CryPDF
pip install -r requirements.txt
```
orDownload the executable from [Releases](https://github.com/Miiraak/CryPDF/releases)
## Usage
#### Run the Application:
Execute the main script to open the graphical interface.
```bash
python crypdf.py
```
or
```
Run the executable.
```#### Choose a PDF:
Click the PDF button to select the PDF file you want to unlock. (required)#### Choose a Dictionary:
Click the Dictionary button to select the file containing the passwords to test. (optional)#### Start the Attack:
Click the Attack button to start the dictionary attack. If the password is found, it will be displayed in a new window with the option to copy.## Contribute:
Contributions are welcome! To propose improvements or report bugs, please open an issue or submit a pull request on the GitHub repository.---
# Disclaimer
Although it's "harmless," forcing PDFs that don't belong to you is still illegal!
### _I cannot be held responsible for your actions, guys_---
## License:
This software is provided under the [MIT](https://github.com/Miiraak/CryPDF/blob/master/LICENSE) license.## :sparkling_heart: Thanks to:
Dictionaries:
- [Richelieu - Tarraschk](https://github.com/tarraschk/richelieu) - [(CC BY 4.0 license)](https://creativecommons.org/licenses/by/4.0/)
- [CrackStation's Password Cracking Dictionary](https://crackstation.net/crackstation-wordlist-password-cracking-dictionary.htm) - [(CC BY SA 3.0 license)](https://creativecommons.org/licenses/by-sa/3.0/deed.en)
- [SecLists](https://github.com/danielmiessler/SecLists/tree/master/Passwords) - [(MIT License)](https://github.com/danielmiessler/SecLists/blob/master/LICENSE)