Metadata-Version: 2.4
Name: pdf-password-cracker
Version: 1.0.0
Summary: Multiprocessing PDF password brute force tool
Author-email: Bhavya Padaliya <padaliyabhavya1510@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/bhavya1510s/pdf-pass-cracker.git
Keywords: pdf,password,cracker,bruteforce,security
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pypdf
Requires-Dist: tqdm
Dynamic: license-file

# PDF Password Cracker

A multiprocessing PDF password brute force tool.

## Installation

```bash
pip install pdf-password-cracker
```

## Usage

```python
from pdf_password_cracker import crack_pdf

password = crack_pdf(
    "secret.pdf",
    1,
    4,
    "0123456789"
)

print(password)
```

CLI

```bash
pdf-cracker --file secret.pdf --min 1 --max 4 --numbers
```
