10 min read
Remove password from PDF without Adobe
By ScoutMyTool Editorial Team ยท Last updated: 2026-05-18
Introduction
My bank emails every monthly statement as a password-protected PDF with my date of birth as the password. Every month I open it, re-type the password to print it, type it again to copy a transaction into a budget spreadsheet, and type it a third time when my accountant asks for a copy and I email it back as-is and she pings me with "what's the password?". This year I gave up. Below is the workflow I now run once a month โ strip the password from my own statements once, archive the unlocked copies, share them freely without re-typing a single date of birth.
Two different "password-protected" states a PDF can be in
PDFs can be encrypted in two ways that look similar but behave very differently. Knowing which kind you have explains why some files unlock with an empty password and others need the literal password you were given.
- User password (open password). The reader prompts for a password as soon as you try to open the file. Without it, you cannot read a single byte of content โ the page streams are encrypted with a key derived from your password (PBKDF2 with thousands of iterations, per ISO 32000-1 ยง7.6.41). This is what you get when you Protect PDF a file or when a bank sends you a "secure" statement.
- Owner password (permissions / restrictions). The file opens without prompting, but specific actions are blocked โ the Print button is greyed out, copy-paste returns empty, the Edit menu refuses to engage. The file is still technically encrypted (it has an /Encrypt dictionary in the PDF object structure) but with the user password set to empty; the owner password only controls the permission flags. PDF readers are required by the spec to respect the flags but the bytes are fully accessible to anyone with a one-line script.
The fix for the first kind is obvious: enter the password. The fix for the second kind is non-obvious: enter an empty password. The ScoutMyTool Unlock PDF tool handles both cases.
Step-by-step: remove a PDF password
The Unlock PDF tool lives at scoutmytool.com/pdf/unlock-pdf. Decryption runs server-side via qpdf because shipping the full PDF crypto stack to the browser would add 30 MB to the page load; the file is uploaded over HTTPS, decrypted in a per-request temp directory, and the temp files are deleted immediately after the response is sent.
- Confirm you own the file or have permission to unlock it. The tool decrypts; it is not a cracker. The legitimate-use cases are: your own files (you protected them, or set up the protection and now want to remove it), files distributed to you with permission to forward freely, and personal documents (bank statements, medical records, your own contracts) where you hold the password. Removing the password from a commercial PDF you do not have rights to is potentially a circumvention of a technical protection measure under laws like the U.S. DMCA ยง12012 โ the tool is content-neutral and the responsibility for legitimate use rests with you.
- Open the tool and drop your PDF. One file at a time, up to 50 MB. If your file is larger, run it through Split PDF first to break into <50 MB chunks, unlock each chunk, and merge them back via Merge PDF.
- Type the current password into the password field. If your PDF prompted for a password to open it, that is the password you want. If it opened without prompting but blocks printing or copying (owner-restriction case), leave the password field empty.
- Click "Unlock PDF". The tool runs a client-side pre-flight first โ file size < 50 MB, file is actually encrypted (if not, you get a clear "this PDF is not password-protected โ no need to unlock it" message that saves you a wasted upload). If pre-flight passes, the file and password are uploaded over HTTPS, qpdf removes the /Encrypt dictionary, and the unlocked output is streamed back.
- If the tool says "Wrong password". Three checks before retrying: (a) caps-lock and keyboard layout โ PDF passwords are case-sensitive; (b) trailing whitespace from password-manager paste โ clear the field and re-type; (c) wrong file โ confirm the PDF you uploaded is the one you have the password for, not a same-named file from elsewhere in your downloads folder.
- Test the unlocked file. Open it in any reader โ there should be no password prompt. Click Print, click Edit, try copy-paste โ all should work without restriction. If the source had owner restrictions, those are now gone.
- Archive the unlocked copy with a clear filename. Adding
-unlockedto the filename is the convention the tool uses by default. Useful when you later wonder why a statement opens without a password โ having the encrypted original and the unlocked copy named consistently makes the audit trail easy to follow. - Re-protect with a new password if needed. If you want to change a password rather than just remove it: unlock first (here), then re-encrypt via Protect PDF with the new password. Two-step explicit workflow โ no silent password substitution.
How ScoutMyTool compares to Smallpdf, iLovePDF and PDF2Go
All four offer PDF unlock on the free tier. The meaningful differences: daily quota, pre-flight error quality (clear named error vs generic "something went wrong"), and whether the decryption engine is disclosed (open-source qpdf is auditable; proprietary engines require trust on faith).
| Feature | ScoutMyTool | Smallpdf | iLovePDF | PDF2Go |
|---|---|---|---|---|
| Free unlimited unlocks | Yes | 2 per day on free | 1 file per task on free | Yes, up to 100 MB |
| No signup required | Yes | Required after 2 tasks | Required for >50 MB | Yes |
| Removes owner-restriction (empty pwd) | Yes | Yes | Yes | Yes |
| Detects "not actually encrypted" | Yes (clear pre-flight) | Generic error | Generic error | Generic error |
| Per-file size limit | 50 MB | 5 GB Pro / 100 MB free | 200 MB free | 100 MB free |
| Files deleted immediately after | Yes | Yes (1 hour) | Yes (2 hours) | Yes (24 hours) |
| Engine disclosed | qpdf (open source) | Proprietary | Proprietary | Proprietary |
| Honest about needing the password | Yes (no crack) | Yes | Yes | Yes |
Third-party feature gating, free-tier daily caps, and retention windows taken from each vendor's public product pages as of May 2026 and may change.
When to use the local qpdf CLI instead
If you have an extreme privacy requirement (state-secret-level document, attorney-client material under strict retention rules, anything where "uploaded to a server then deleted" is not good enough), do the decryption locally. Install qpdf โ the open-source engine the online tool itself uses โ and run:
qpdf --password=YOUR_PASSWORD --decrypt input.pdf output.pdf
qpdf is available on every major platform (Homebrew on macOS, apt/yum on Linux, scoop or the official Windows installer). The decryption happens entirely on your machine, no network traffic of any kind. For everyday business documents the upload-then- delete pipeline of the online tool is more than enough; for the small subset of cases where it is not, the local CLI is the right answer.
Related PDF tools on ScoutMyTool
- Unlock PDF โ the tool this guide is about: remove a password (you must know it).
- Protect PDF โ add an AES-256 password (the reverse operation).
- Split PDF โ break a >50 MB file into smaller chunks before unlocking.
- Merge PDF โ recombine unlocked chunks back into one file.
- PDF Editor โ edit text and annotations on the unlocked file.
- Compress PDF โ shrink the unlocked output.
- Permanent Redaction โ for sensitive content that needs more than encryption.
Frequently asked questions
- Does this tool crack passwords, or does it require the password?
- It requires the password. The Unlock PDF tool decrypts a PDF you have the password for; it does not crack, brute-force, or recover unknown passwords. The only exception is the "owner restrictions" case โ PDFs that open without a password but block printing, copying, or editing โ which can usually be unlocked by submitting an empty password (more on that below). Genuine password-cracking against a strong AES-256 user password is computationally infeasible with current technology and would be of dubious legality in most jurisdictions; the tool is a legitimate-use decryption pipeline, not a cracker.
- What's the difference between "user password" and "owner password" PDFs?
- The PDF specification (ISO 32000-1 ยง7.6) defines two separate passwords. The user password (sometimes called the open password) is required to open the file at all โ without it, you cannot read the contents. The owner password is a permission flag that lets specific actions like printing, copying, and editing be restricted while still allowing the file to open freely. Many "password-protected" PDFs you encounter actually have only an owner password set โ they open in any reader without prompting, but the print or copy buttons are greyed out. For owner-restricted PDFs, leave the password field empty in the Unlock PDF tool; the underlying qpdf engine can remove owner restrictions without needing any password.
- I get "Wrong password" โ what should I check?
- Three common causes. (1) Caps-lock or wrong keyboard layout: PDF passwords are case-sensitive and locale-sensitive, so a French-keyboard "a" is different from a US-keyboard "q" rendered by a French reader. (2) Trailing whitespace from copy-paste: passwords pasted from a password manager sometimes include a trailing space. Re-type the password by hand. (3) The wrong password is the right one for a different file with the same name: people often have multiple "statement.pdf" files in their downloads folder. Confirm you have the file you think you have.
- Is my PDF uploaded to your server?
- For this specific tool, yes โ decryption uses qpdf server-side because shipping a full PDF crypto stack to the browser would add 30 MB to the page load. The flow: your PDF and password go up over HTTPS, the file is decrypted in a per-request temp directory, the unlocked output is streamed back, and the temp files are deleted immediately. We don't archive uploads, train models on them, or share them. If you have an extreme privacy requirement, do the decryption locally with the qpdf CLI: "qpdf --password=YOUR_PASSWORD --decrypt input.pdf output.pdf".
- How do I know I'm allowed to remove the password?
- In short: you should only remove the password from a PDF you have the right to access freely โ your own files, files distributed to you with permission to redistribute, or files where you have explicit authorisation from the owner. Removing the password from a copyrighted commercial PDF you do not have rights to is potentially a circumvention of a technological measure under laws like the U.S. DMCA ยง1201 or the EU Copyright Directive. The tool itself is content-neutral; the responsibility for legitimate use rests with you. The most common legitimate uses (and the ones the tool was built for): unlocking PDFs you password-protected yourself, files your employer or vendor sent you with permission to forward, and personal documents (bank statements, medical records, your own contracts) that came with default-on encryption.
- Will the unlocked PDF look identical to the encrypted source?
- Yes โ decryption only removes the /Encrypt dictionary from the PDF object structure. Every page, every image, every form field, every annotation, every link, every bookmark survives unchanged because they were always there underneath the encryption layer. Encryption protects access to the content; it does not modify the content itself. The output file is typically slightly smaller than the input (no /Encrypt overhead) and otherwise byte-similar to the original's pre-encryption state.
- What's the file size limit?
- 50 MB per file. If your PDF exceeds that, the friendliest path is to split it under that cap with Split PDF first, unlock each chunk separately, and merge the unlocked chunks back together with Merge PDF โ the underlying decryption is per-page so this multi-pass approach produces an output equivalent to a single-pass unlock. If you do not want to split, the qpdf CLI mentioned above has no file-size limit.
Remove a password from your PDF โ no signup, no upload archive
Free, unlimited, open-source qpdf engine under the hood. Handles both user passwords (with the password) and owner restrictions (empty password). Files deleted immediately after processing.
Open the free PDF unlock tool at scoutmytool.com/pdf/unlock-pdf โ