DevKits

PDF Password Remover — Remove Owner Restrictions Online (Local)

Strip owner-password restrictions (print / copy / edit locks) from a PDF you own. Runs entirely in your browser — the file and password never leave your device.

Last updated:

Drop a locked PDF here, or

All work happens on your device — the PDF never leaves your browser.

Drop a PDF with owner-password restrictions (print/copy/edit locks) and download an unlocked copy. Runs entirely in your browser — the file never leaves your device. Not for user-open passwords.

What is PDF Password Remover?

PDFs support two very different kinds of encryption. A user password is the one you type into a modal before the file opens; without it, the reader shows nothing. An owner password is the opposite: the file opens without a prompt, but the PDF's permissions dictionary says 'no printing / no copying / no editing'. That second case is what this tool handles: taking a PDF you already have full read access to and producing an unrestricted copy. We use pdf-lib's ability to load a PDF with `ignoreEncryption: true`, then save it without any encryption dictionary. Everything runs client-side — your file, its content, and its permissions bytes never leave your browser.

How to remove PDF restrictions online

  1. 1Drop the restricted PDF onto the drop zone.
  2. 2The tool inspects the encryption dictionary in your browser and reports whether the PDF is truly locked-closed (user password) or just restricted (owner password).
  3. 3For owner-restricted PDFs, click 'Remove restrictions & download' — the tool re-saves the PDF without encryption, entirely locally.
  4. 4The downloaded copy has no watermark and can be freely printed, copied, and edited by any PDF tool.

Use Cases

Print your own PDF

A form you exported from your bank locked printing. Remove the restriction on your own copy to print a paper record.

Copy quotes from a report

A PDF you paid for restricted text selection. Remove the copy restriction on your local copy to quote it into a review.

Edit form fields

Fill in a locked PDF form by first stripping the edit lock on your local copy.

Merge / split locked PDFs

Other PDF tools sometimes refuse to load a restricted file — strip the restriction first, then run the merge or split.

Key Concepts

User password vs owner password
A user password blocks opening the PDF at all. An owner password lets the PDF open, but restricts operations (print, copy, edit) via the permissions dictionary. This tool addresses owner passwords only.
Permissions dictionary
A PDF's /Encrypt object records a bitmask of what operations are permitted. Compliant readers respect the bitmask; the underlying content is still readable, which is why 'restrictions' are considered a soft lock.
PDF 1.4 vs 1.7 encryption
Older PDFs use 40 or 128-bit RC4; newer PDFs use AES-128 or AES-256. pdf-lib strips all of them equivalently since the tool loads the content without regard to the encryption dictionary's constraints.

Tips & Best Practices

  • This tool never brute-forces or guesses passwords. If pdfjs reports 'requires password', you own that limit — decrypt with a tool that has the actual password.
  • For batch unlocks, run the tool multiple times or use qpdf locally: `qpdf --decrypt input.pdf output.pdf`.
  • Only unlock PDFs you're entitled to use freely. Removing restrictions from third-party content may violate its license.
  • The unlocked PDF is byte-different from the original (encryption dictionary is gone). Signatures over the file will break — but signatures over specific content (widget signatures) survive.

Frequently Asked Questions

Does this remove open passwords too?

No. This tool only removes owner-password restrictions — the locks that prevent printing, copying, or editing on PDFs that open freely. Removing a user-open password is a bypass, not a permission cleanup, and we don't help with that. Use qpdf or a similar desktop tool locally if it's your own document.

What is an 'owner password'?

PDFs support two encryption modes. A user password stops the PDF from opening. An owner password lets the PDF open normally but restricts operations like printing, copying, or editing. This tool addresses the second case.

Is my PDF uploaded?

No. The entire unlock happens in your browser using pdf-lib. You can disconnect the network before dropping the file and the tool still works.

Will the output PDF have any watermark or trial mark?

No. The result is a clean copy of your PDF with the encryption dictionary stripped — no watermark, no metadata added.

Related Tools