How can I unlock a Microsoft .docx document?

38

15

I have a Microsoft .docx document that is locked down and can't even be viewed without the forgotten password.

I'm wondering if there is an easy way to unlock it or get the computer to remember the password itself with a hint or something.

Richard

Posted 2012-10-12T13:21:05.527

Reputation: 741

Answers

49

DocX is a compressed zip container file. Make a copy of the original docx file. If you unzip it, there is a subfolder named word with a file named settings.xml. You can open settings.xml with a plain text editor.

Within that there is a block of text:

<w:documentProtection
w:edit=""
w:enforcement="1"
 w:cryptProviderType=""
 w:cryptAlgorithmClass=""
 w:cryptAlgorithmType=""
 w:cryptAlgorithmSid=""
 w:cryptSpinCount=""
 w:hash=""
 w:salt=""/>

You can either change w:enforcement value to 0 or remove the block entirely.

Then you zip up the whole thing again (don't zip up the whole folder: the content_types.xml and subfolders must be root of the zip file.), rename the result to have a Docx extension, and then open it in word.

horatio

Posted 2012-10-12T13:21:05.527

Reputation: 3 345

5In Word 2010, this works only if the document is not read-protected, so it won't work for the OP. If the 2010 document is read-protected, it does not appear as a valid ZIP file. Also, the 2010 tag name is writeProtection rather than documentProtection and there is no w:enforcement. – Ben – 2015-01-09T21:01:49.080

1It's honestly sad it's that easy to "unencrypt" a shipping product... – MarcusJ – 2015-06-25T23:41:10.997

I honestly can't believe a security company just sent me a doc with this type of protection – vault – 2016-12-21T11:29:36.470

2To clarify, this method is for making a document editable again. It will not allow you to view a password‑encrypted document. – Zenadix – 2018-05-03T04:48:06.993

14

From this link: http://people.csail.mit.edu/seth/misc/unlockworddoc.html

How to Unlock a Word Document under Windows

Seth Teller, August 2009

Some authors (for example, of forms to be filled out) "lock" their documents under Windows. This is annoying, as it prevents you from fixing errors or adding anything to the document.

If you web-search on "unlocking word document," you get a bunch of pages with advice that doesn't work under Windows, or pointers to paid software. Here is a method that works, and is free:

  1. Open your document in Word, then save it in ".xml" format.

  2. Open the .xml doc in wordpad, emacs, or your favorite text editor.

  3. Search for the string w:enforcement="1".

  4. Replace the "1" with a "0" to disable enforcement (i.e., unlock the document).

  5. Save the document from your text editor.

  6. Open the .xml document in Word.

  7. Choose "Save as..." and save it as a .doc or .docx file.

Your Word document can now be edited normally. Enjoy!

Mac users: ExtendScript Toolkit works well as a text editor in this workaround.

stuartd

Posted 2012-10-12T13:21:05.527

Reputation: 540

"Open your document in Word, then save it in ".xml" format." cant open document... we are precisely looking for the pass for do that... – Matrix – 2017-08-16T11:05:27.370

3This technique is for removing the readonly flag, not the document password.. – stuartd – 2017-08-16T11:12:40.343

This also appears to work for removing the ability to disable tack changes – Jeef – 2017-11-27T12:22:44.503

7

MS Word has used 128-bit AES encryption since Office 2007 so no, there's no easy way to unlock it.

If think your password is simple enough or vunerable to a dictionary attack, you could try one of the various password cracking apps available (caveat downloader).

It's trivial to remove the Edit protection from Word documents by editing 'settings.xml' within the compressed .docx file as discussed in other answers here. However, as you have applied 'Encrypt with Password' to require a password to open the document, that method won't be available.

pelms

Posted 2012-10-12T13:21:05.527

Reputation: 8 283

2

Which OS and version of Word? If messing about with XMLs and text editors is not your cup of tea, in Word 2010 for Windows at least you can remove all restrictions, passwords, final locks etc. from File / Info / Permissions:

Word 2010 Doc Locks

Also make sure the file is not set to Read-only (close Word, right-click the file, check Properties / General tab / Attributes).

Karan

Posted 2012-10-12T13:21:05.527

Reputation: 51 857

Will only work for 'Edit protection' not 'Open protection' as in the OP's case – pelms – 2015-09-07T09:47:26.663