Explainer · PDF passwords
Is it safe to remove a PDF password online
Short answer
In this guide
The questions worth asking any unlock service
Is the password written to a database or a log? Is the uploaded file deleted, and after how long? Does it claim to recover passwords you do not know?
Whether it is safe depends on the document, not on how confident the site sounds. Removing a PDF password online means two secrets leave your machine at once: the file and the password that opens it. On TryDeputize the password travels only as an argument to the processing task, it is not written to the job record or the logs, and the upload and result are deleted automatically about an hour later. That is a reasonable trade for an ordinary document. For something genuinely sensitive, doing it locally is the better answer, and we will say so rather than talk you into an upload.
What happens to the password
The password has to reach the code that opens the file, so it is sent with the
job and used once to decrypt the PDF. What matters is what happens to it after
that: it is not saved in the job record, it is not printed into the application
logs, and there is no account it gets attached to. The job row that tracks your
upload has no password column to write it to, and the label the queue keeps for
that job is written out as the literal text <password> instead of the thing
you typed, so the places a password normally leaks from have nothing in them.
The practical consequence is the one people dislike: we cannot help you if you forget it. There is nothing to look up. A service that can send you your old password later is a service that kept it.
What happens to the file
The uploaded PDF and the unlocked copy both sit on the server long enough to run the job and let you download the result, then automatic cleanup removes them. Two details are worth having straight, because they are the difference between a promise and a mechanism: the hour is counted from the moment you upload, not from the moment you download, and the sweep that does the deleting runs on a ten-minute cycle rather than at the stroke of sixty. So the honest outside figure is a little over an hour, and the window you have to collect your file is shorter than the window the file exists for. Files travel over HTTPS, no account is required, and the contents are used only for that job. The full explanation of what happens to an uploaded PDF covers the questions worth asking any tool in this category, including ours.
One honest limit: all of that is a claim you are choosing to trust. Retention policy and system design make a service easier to judge, but they are not proof, and no site can hand you a receipt showing every copy is gone.
Remove a password you know
-
Open Unlock PDF and add the PDF, up to 50 MB. You get no page thumbnails here, because the file stays encrypted until the password opens it.
-
Type the password you already use into the Current password box. If the file opens freely but blocks printing or copying, leave the box empty: those are owner restrictions, and they come off without a password.
-
Press Remove password. The button stays greyed out until a file is loaded.
-
Download unlocked.pdf and open it. It should not ask for anything. Keep the protected original until you have checked the pages you care about.
Unlock PDF
Remove a password you already know
Free · no signup · files deleted in 60 minutes
When local is the right call
Some documents should not be uploaded at all, whatever the deletion policy says. Medical records, legal material, identity documents, unreleased financials, and anything covered by a workplace or client rule belong in software you control. Automatic deletion does not override that rule.
The local route is not hard. An approved desktop PDF application can usually save an unprotected copy once you have opened the file with the password. On the command line, qpdf does the same thing without the file ever leaving your machine:
qpdf --password=yourpassword --decrypt locked.pdf unlocked.pdf
If you are deciding in the other direction, adding protection rather than removing it, the password protection guide covers what PDF encryption does and does not buy you.
Nobody can recover a password you do not know
This is the part the ads get wrong. A properly encrypted PDF is protected by AES, and the key comes from the password. Without it there is no clever route in. The only attack is guessing, and guessing a long unique passphrase does not finish in a useful amount of time.
So a site advertising forgotten-password recovery is doing one of two things: running a guessing attempt that will succeed only if the password was short or obvious, or selling you something that does not work. Either way, handing that site your confidential file is the worst version of this decision, because you pay the privacy cost and get nothing back.
If the password is genuinely gone, look for the unprotected original, ask whoever sent the file, or check a password manager. Those are the real recovery paths.
When this won’t work
- You do not know the password. Unlock PDF removes protection you can already get past. It does not crack, guess, or recover anything.
- Policy forbids third-party processing. Deletion about an hour later is not the same as local-only processing, and it does not satisfy a workplace, school, legal, or healthcare rule.
- The PDF is larger than 50 MB. That is the per-file upload cap. Use approved desktop software rather than splitting a protected document to get under it.
- Your password is longer than 127 bytes. That ceiling comes from the PDF specification rather than from us: AES-256 encryption caps a password at 127 UTF-8 bytes, so a longer one could not have locked the file in the first place. The page refuses it before the upload starts rather than after.
- You want the original file changed. You get a new unprotected copy. The protected file on your device stays exactly as it was, so delete or archive it deliberately once you no longer need it.
- You need proof of what happened to the upload. A published retention window is a policy backed by system design, not an auditable record you can show someone else.
Questions
Do you store the password I type in?
No. It is passed to the worker as an argument for that one job so the file can be opened, and it is not written to the job record or the logs. That also means we have no way to look it up for you later.
Can you remove a password I have forgotten?
No, and neither can anyone else for a properly encrypted PDF. Unlock PDF needs the password you already know. A short or obvious password can fall to offline guessing, but that is not a service we offer.
How long do you keep the file?
About an hour, counted from when you upload rather than from when you download. The retention window is 60 minutes and a sweep clears expired jobs every ten minutes, so the outside case is nearer seventy than sixty. Download your copy well inside that, because the deletion is a privacy feature and not storage.
My PDF opens without a password but blocks printing. Is that different?
Yes. That is an owner restriction rather than encryption, so leave the password field empty and the restrictions are removed from the downloaded copy. Those restrictions were never a confidentiality control in the first place.
Is it safer to do this offline?
For a sensitive document, yes, because the file never leaves your machine and there is no claim you have to trust. For an ordinary password-protected statement or form, a short-lived server job is usually a reasonable trade.
Unlock PDF
Remove a password you already know
Free · no signup · files deleted in 60 minutes
The rest of this topic
Related guides
- How do I put a password on a PDF?Open Protect PDF, type the password twice, and download the encrypted copy.Main guide
- Is it safe to upload my PDF to a free online tool?A server-side tool copies your file to a server, processes it, and retains it until its deletion rule runs.Explainer
- How do I remove the password from a PDF?Open Unlock PDF, add the file, type the password you already know, and download the unlocked copy.How-to