How to Remove Password From PDF: 4 Free Methods That Actually Work
Unlock your own password-protected PDFs using free tools — no software installation required
By Ben Praveen J · March 24, 2026
You have a PDF you need to access, but it is locked with a password. Maybe it is a bank statement you downloaded months ago, a tax document from your accountant, or an old work file you set a password on and now need to share freely. You know the password — or at least you can open it — but you want a clean, unlocked copy.
This guide covers four free methods to remove PDF password protection, from the simplest online tool to command-line options for developers. Each method works differently, so if one does not suit your situation, the next one might.
Important legal note: Only remove passwords from PDFs that you own or have explicit permission to modify. Removing password protection from copyrighted or confidential documents that are not yours may violate laws in your jurisdiction. All methods in this guide assume you have the legal right to unlock the file.
Understanding PDF Password Types
Before choosing a method, you need to understand that PDFs can have two different types of passwords. Each serves a different purpose, and the removal process differs:
User Password (Open Password)
This password is required to open the PDF. Without it, you cannot view the document at all. The file is encrypted, and the password is the decryption key. To remove this password, you must know it first — you enter it once, and the tool creates an unprotected copy. No tool can bypass a user password without knowing it (that would be cracking encryption, not removal).
Owner Password (Permissions Password)
This password restricts specific actions: printing, copying text, editing, or extracting pages. You can still open and view the PDF without knowing the owner password — but you cannot perform the restricted actions. This type is easier to work around because the document content is not encrypted; only the permission flags are protected.
Method 1: GoToolsOnline PDF Unlock Tool (Easiest)
The simplest method for removing a user password (open password) from a PDF you know the password to.
- Go to GoToolsOnline PDF Unlock.
- Upload your password-protected PDF file by dragging it into the upload area or clicking to browse.
- Enter the password when prompted. This is the password you normally type to open the file.
- Click "Unlock PDF." The tool decrypts the file and creates a new, unprotected copy.
- Download the unlocked PDF. It is an identical copy of your document without any password protection.
Why this works: The tool uses your password to decrypt the PDF, then saves a new copy without re-applying the encryption. The content is exactly the same — only the protection layer is removed.
Privacy note: Your file is processed in the browser or on the server temporarily and is not stored. No one sees your password or your document.
Method 2: Chrome Print-to-PDF Trick
This method works for PDFs with owner password restrictions (print/copy/edit disabled) and sometimes for user-password PDFs you can open but want to save unlocked.
- Open Google Chrome on your computer.
- Drag the PDF file into a Chrome browser tab, or use File > Open to navigate to it.
- If prompted for a password, enter it. The PDF opens in Chrome's built-in viewer.
- Press Ctrl+P (Windows/Linux) or Cmd+P (Mac) to open the print dialog.
- Change the "Destination" to "Save as PDF" (not a physical printer).
- Click "Save" and choose where to save the new file.
The resulting PDF is a fresh file with no password protection. Chrome essentially re-renders the document and creates a new PDF from the rendered pages.
Limitations: This method may lose interactive elements like form fields, bookmarks, hyperlinks, and table of contents navigation. The visual appearance is preserved, but some PDF features are flattened during the re-rendering. For important documents where you need all features intact, use Method 1 instead.
Method 3: Preview on Mac
If you use macOS, Preview — the built-in PDF viewer — can remove passwords natively without any third-party tools.
- Double-click the PDF to open it in Preview (the default PDF viewer on Mac).
- Enter the password when prompted.
- Go to File > Export as PDF (not "Save" — you need "Export").
- In the export dialog, do not set any password in the security options. Leave the password fields empty.
- Choose a save location and click "Save."
The exported file is a complete copy of the original without password protection. Unlike the Chrome method, Preview preserves most PDF features including bookmarks, links, and form fields.
Note: If "Export as PDF" is grayed out, the PDF has restrictions that Preview respects. In that case, try Method 2 (Chrome) or Method 1 (GoToolsOnline) instead.
Method 4: Command-Line with qpdf (For Developers and Power Users)
If you are comfortable with the terminal and need to unlock PDFs in batch, qpdf is the tool for the job. It is free, open-source, and available on Windows, Mac, and Linux.
Installation
Remove a user password (you know the password)
qpdf --password=YOUR_PASSWORD --decrypt input.pdf output.pdf
Remove owner password restrictions
qpdf --decrypt input.pdf output.pdf
If the PDF only has an owner password (no user password), qpdf can remove the restrictions without needing any password at all.
Batch processing
To unlock all PDFs in a folder (Linux/Mac):
for f in *.pdf; do qpdf --password=YOUR_PASSWORD --decrypt "$f" "unlocked_$f"; done
Why use qpdf: It does not re-render the PDF. It processes the file structure directly, preserving every feature, annotation, and metadata exactly. It is also fast — a 100-page PDF processes in under a second.
When Password Removal Will Not Work
These methods have limitations. Here are the cases where you may not be able to remove the password:
- You do not know the user password. If you cannot open the PDF, none of these methods can help. They all require you to either know the password or be able to view the document already. There is no ethical way to bypass encryption without the key.
- Strong AES-256 encryption without the password. Modern PDFs use AES-256 encryption. Without the correct password, brute-forcing is computationally infeasible — it would take millions of years.
- DRM-protected PDFs. Some publishers and enterprise systems use Digital Rights Management that goes beyond standard PDF passwords. These require the specific vendor's software and authorization server to access. Standard PDF tools cannot bypass DRM.
- Corrupted or damaged PDF files. If the PDF's encryption headers are corrupted, even the correct password may fail. Try repairing the PDF first, or contact the sender for a new copy.
After Removing the Password
Once you have an unlocked copy, consider these next steps:
- Compress the unlocked PDF. Password-protected PDFs are sometimes larger due to encryption overhead. Run the unlocked file through PDF compression to reduce its size.
- Add your own password if sharing. If you removed the old password to update the document and now need to re-protect it with a new password, use PDF Password Protect to set a new one.
- Keep the original. Do not delete the original password-protected file until you have verified the unlocked copy is complete and correct. Compare page counts and spot-check content.
FAQ
- Is it legal to remove a password from a PDF?
- Yes, if you own the document or have authorization from the owner. Removing password protection from your own bank statements, tax documents, or business files is perfectly legal. Removing passwords from copyrighted material you do not have rights to may violate copyright laws in your jurisdiction.
- What is the difference between a user password and an owner password?
- A user password (open password) prevents anyone from opening the PDF at all — the file is encrypted. An owner password (permissions password) allows opening and viewing the PDF but restricts actions like printing, copying text, or editing. The removal process and available methods differ for each type.
- Can I remove a PDF password if I forgot it?
- If you forgot the user password (open password), you cannot open the file, and these tools cannot help. If you forgot the owner password (permissions password), tools like the Chrome print-to-PDF method or qpdf can often bypass the restrictions since you can still open and view the document.
- Does removing a PDF password affect the document content?
- No. Removing the password creates an identical copy of the document without the password protection. All text, images, formatting, bookmarks, and links remain exactly the same. The only change is that the new file can be opened without entering a password.
- Why does my PDF still ask for a password after I tried to remove it?
- This usually happens when the PDF uses strong AES-256 encryption or DRM protection that cannot be bypassed by simple methods. It can also occur if the file is corrupted. Try a different method from this guide, or check if the PDF uses DRM protection from a publisher, which requires their specific software to access.
← Blog index | Unlock PDF | Password Protect PDF | Compress PDF | All tools