No upload, 100% local, no account

Unlock PDF

Already know the password? Remove it so the PDF opens without prompting, everything runs in your browser, nothing is sent to a server.

How Unlock PDF (remove password) works

PDF Unlock removes password protection from a PDF you can already open, using qpdf.wasm running directly inside your browser. If the file has a user password, you type it in and qpdf decrypts the document in local memory; if it only has an owner password restricting printing or copying, qpdf lifts those restrictions without any password at all. The decrypted copy is written to your downloads folder and nothing is transmitted to a server at any point.

This tool is honest about what it can and cannot do. It is a decryptor, not a password cracker: if you do not know the user password, the tool cannot break it by brute force. What it does is call qpdf with the --decrypt flag on the file held in browser memory, and that produces a standard, unlocked PDF that any viewer can open freely. The exit code from qpdf determines success; an exit code of 2 means the password you supplied was wrong.

How to use Unlock PDF (remove password), step by step

  1. Drop your password-protected PDF onto the upload area.
  2. If the file requires a password to open, type it into the password field.
  3. Leave the password field empty if the file opens normally but printing or copying is restricted.
  4. Click unlock and wait for qpdf to finish decrypting in your browser.
  5. Download the unlocked PDF.

Common use cases

  • You received a bank statement as a password-protected PDF and want to save an unlocked copy for your records.
  • A vendor sent a PDF with copying disabled; unlock it so you can paste the order number into your own system.
  • A scanned contract has owner restrictions that prevent printing; remove them before sending to the printer.
  • You created a PDF with a password for sharing and now want a permanent open copy for your own archive.

Frequently asked questions

Can this tool crack a PDF password I have forgotten?

No. The tool uses qpdf --decrypt, which requires the correct password. It does not attempt brute-force guessing or dictionary attacks. If you do not know the user password, this tool cannot help; it only removes protection from a file whose password you already have.

What happens if I enter the wrong password?

qpdf returns exit code 2 when the supplied password is incorrect. The tool reads that exit code and reports a wrong-password error without producing any output file. Nothing is altered; you can try again with a different password.

What is the difference between a user password and an owner password?

A user password must be entered before the file can be opened at all. An owner password restricts actions such as printing, copying or editing but does not prevent opening. If a PDF opens normally in your viewer but certain actions are greyed out, it has only an owner restriction, which qpdf can remove without any password.

Is my PDF file sent to any server during unlocking?

No. qpdf.wasm is a WebAssembly build of the qpdf library that executes entirely inside your browser tab. The PDF bytes move from your disk into browser memory, qpdf decrypts them there, and the result is offered as a download. The file never crosses the network.

Will the unlocked PDF look identical to the original?

Yes. qpdf operates on the PDF structure and only removes the encryption layer. Fonts, images, text, form fields, bookmarks and all other content are preserved byte-for-byte.

Does the tool work on PDFs with AES-256 encryption?

Yes. qpdf supports all standard PDF encryption versions including 40-bit RC4, 128-bit RC4, 128-bit AES and 256-bit AES. As long as you supply the correct password, the encryption algorithm does not affect the result.