Remove PDF Password — Unlock Protected PDFs for Free
Published May 5, 2026
Password-protected PDFs are useful for security, but they become a problem when you forget the password, receive a file with restrictions you do not need, or have to type the password every single time you open it. Removing PDF password protection is straightforward — if you know the password. Even if you do not, there are legitimate ways to regain access to your own documents.
This guide covers every method to remove PDF passwords, from quick online tools to desktop software and command-line utilities. All free, all legitimate.
Types of PDF Password Protection
Before removing a password, it helps to understand what kind of protection your PDF has:
- User password (open password): Required to open and view the PDF. Without it, you cannot see the contents at all.
- Owner password (permissions password): Controls what you can do with the PDF — print, copy text, edit, or add comments. You can open the file, but certain actions are blocked.
Many PDFs use both. You might be able to open the document with the user password but cannot print or copy because of the owner password restrictions.
Method 1: Remove PDF Password Online (Fastest)
Online PDF unlockers are the quickest solution. Upload the protected file, enter the password if prompted, and download an unlocked version. The output file has no password protection — you can open, edit, print, and copy freely.
Steps:
- Open an online PDF password remover in your browser
- Upload the password-protected PDF
- If the file has a user password, enter it when prompted
- Click unlock or remove password
- Download the unprotected PDF
For owner-password-only PDFs: If you can open the file but cannot print or copy, many online tools can remove the restrictions without needing any password at all. This is because owner password restrictions are essentially advisory — they tell PDF readers what to allow, but the content is not encrypted.
For user-password PDFs: You must know or provide the correct password. Legitimate tools cannot bypass user passwords — that would require breaking encryption, which is a different process entirely.
Method 2: Remove Password with Desktop Software
Adobe Acrobat Pro
- Open the PDF in Adobe Acrobat Pro (enter the password when prompted)
- Go to Tools > Protect > Encrypt > Remove Security
- If prompted, enter the password again to confirm
- Save the file — it is now unprotected
Acrobat also lets you change or remove just the owner password while keeping the open password, giving you fine-grained control over what protection remains.
Preview (macOS) — Simple Owner Password Removal
- Open the PDF in Preview (enter the password if needed)
- Go to File > Export as PDF
- Give it a new filename and click Save
- The exported copy is saved without password protection
This trick works for owner-password protection (print/copy restrictions). It re-encodes the PDF content without carrying over the permissions restrictions. For user-password-protected files, you still need to know the password to open them first.
Google Chrome — Print to PDF Trick
- Open the PDF in Google Chrome (enter the password when prompted)
- Press Ctrl+P (or Cmd+P on Mac) to open the print dialog
- Change the printer destination to Save as PDF
- Click Save
- The saved copy is not password protected
This is one of the simplest free methods for removing owner-password restrictions. It works on any operating system where Chrome is installed. The output is a clean, unrestricted PDF.
Method 3: Remove PDF Password with Command Line
Using qpdf
# Remove owner password (no password needed) qpdf --decrypt input.pdf output.pdf # Remove both passwords (provide user password) qpdf --password=yourpassword --decrypt input.pdf output.pdf
qpdf is the most reliable command-line tool for PDF decryption. It handles both user and owner passwords. For owner-password-only PDFs, you do not even need to provide a password — the --decrypt flag strips the restrictions directly.
Using pdftk
# Remove all password protection pdftk input.pdf input_pw yourpassword output output.pdf
pdftk requires you to supply the password. It then creates a new copy without any protection applied.
Using Ghostscript
gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=output.pdf input.pdf
Ghostscript re-renders the PDF, which effectively strips all security settings. This works for owner-password restrictions without needing the password. The output is a clean PDF with no protection. Be aware that Ghostscript re-processes the file, so complex formatting may shift slightly.
What If You Forgot the Password?
If you legitimately own the document but have forgotten the user password, your options depend on the encryption strength:
Weak Encryption (40-bit, common in older PDFs)
Older PDFs with 40-bit RC4 encryption can sometimes be unlocked quickly using freely available tools. This encryption standard was common before 2005 and is considered insecure by modern standards.
Strong Encryption (128-bit AES and above)
Modern PDFs use AES-128 or AES-256 encryption. There is no practical way to break this encryption directly. Your options are:
- Try common passwords: Many people reuse a small set of passwords. Try the ones you commonly use.
- Contact the sender: If someone sent you the file, ask them for the password or an unlocked copy.
- Check your password manager: If you saved the password when you first opened the file, it might be stored.
- Check email history: The password may have been sent in the same email thread as the PDF.
When to Keep Password Protection
Removing passwords is convenient, but some documents should stay protected:
- Confidential business documents shared internally that should not leave the organization
- Legal documents where password protection is required by policy or regulation
- Financial records containing sensitive account numbers or tax information
- Documents shared for review where you want to prevent editing or redistribution
- Compliance-required files in industries like healthcare (HIPAA) or finance (SOX)
Remove the password when the protection is no longer needed — when you are the sole user of the file, when the confidential information is outdated, or when you need to use the document in a workflow that does not support password-protected PDFs.
Security Best Practices After Removing Passwords
- Store unlocked files securely: If the document contains sensitive information, keep the unlocked version in an encrypted folder or secure storage.
- Delete unprotected copies when done: If you only needed to unlock the PDF for a one-time task, delete the unprotected copy afterward.
- Re-protect if needed: If you need to share the document again, add a new password rather than distributing the unprotected version.
- Be careful with cloud storage: Unlocked PDFs uploaded to cloud services may be accessible to others depending on your sharing settings.
Frequently Asked Questions
Is it legal to remove PDF passwords?
Removing password protection from documents you own or have legitimate access to is generally legal. However, circumventing protection on documents you do not own or have no right to access may violate copyright law or terms of service. Always ensure you have the right to modify the document before removing its protection.
Can I remove a PDF password without knowing it?
For owner passwords (print/copy/edit restrictions), yes — these restrictions are not encrypted and can be stripped by many tools without the password. For user passwords (required to open the file), you generally need to know the password. The only exception is older PDFs with weak 40-bit encryption.
Does removing a password change the PDF content?
Methods that decrypt the file (qpdf, pdftk) preserve the content exactly — no changes to text, images, or formatting. Methods that re-render the file (Chrome print-to-PDF, Ghostscript) may introduce minor formatting differences, especially with complex layouts or embedded fonts.
Key Takeaways
- Online tools remove PDF passwords in seconds — no software required
- Chrome's "Save as PDF" trick removes owner-password restrictions for free
- Command-line tools (qpdf, pdftk) are best for batch processing and automation
- You need to know the user password to remove open-password protection
- Owner password restrictions can be removed without the password
- Keep sensitive documents protected when necessary — only remove passwords when the protection is no longer needed