Skip to main content

Breaking Excel password protection

If you came across an excel sheet asking for password for allowing to make any changes into it, you may want to unprotect it.
All we need to do is to edit the xml file which comes intrinsically packaged with Excel 2007 or 2010. But what about Excel 2003? For that, open the Excel 2003 file within Excel 2007, save it as xlsx file. So, keep in mind all the Excel files below 2007 version, you need to convert them as Excel 2007 with extension .xlsx.
Now here are the steps for doing that:
1. Open the Excel 2003 file (e.g. Secret.xlsx) and save it as .xlsx (Excel 2007) format. If you already have Excel 2007 file, then no need for any conversion.

2. Now change the extension of the above file to .zip and extract the zipped file. Browse through the file in the extracted folder and go to:
<LocalPath>\Secret\xl\worksheets.
 
3. Now open the sheet/ sheets you want to remove protection in any xml editor. Look for keywords such as 'sheetProtection' or 'workbookProtection' in the xml file.
Remove such lines entirely from the xml files above. Do this for all the sheets you want to remove the protection.

4. Now, copy all these edited and saved xml files to the original zip file under the same path. Now change the extension back to .xlsx from .zip. You are done!

Comments

Anonymous said…
I tried your suggestion. But it did not work. After saving it as an xlsx file, I rename the file to a zip extenstion.

That is where I start having a problem. The file fails to extract stating its an invalid file.
Nilesh Kumar said…
@ Anonymous,
Seems you file is an Excel 2003 file.
As I have mentioned in the blog, this only works for Excel 2007 or 2010 with .xlsx extension. If the file is Excel 2003, you need to open it with Excel 2007 and save it with .xlsx extension.So, keep in mind all the Excel files below 2007 version, you need to convert them as Excel 2007 with extension .xlsx.
Let me know if that helps.
Thanks,
Nilesh
Anonymous said…
How can you open a password protected Excel 2003 file with Excel 2007 and save it with .xlsx???? If a file has a password, you can't open it!!!!!!!!
shekhar said…
i have a file in excel 2007 password protected i cant open beacuse forget password i am very thankful if u help me in open i send u a file on your email id

regards
shekhar
Anonymous said…
Dear I have an excel 2003 sheet which is password protected and I can not open it. I have tried the brute forcing software but it takes hell lot of time. is there some simple way to remove the password
Anonymous said…
That worked very well. Hard to believe that the "protection" was that easy to crack. Why in the heck would anyone use a code cracker to try and guess the password when this method took me all of 10 minutes from start to finish, and that includes the time it took to download a zip file program? Thanks for the tip.
FGSouza said…
The method works to unprotect a spreadsheet. However how can I, (after have unprotected the sheet and made my modifications), return the protection with the same password that was before? Any ideas?
Abhishek said…
Thanks a lot Nilesh. I tried and it worked.
Anonymous said…
didn't work for me. Is there a 2006 version of Excel? I think that's what mine is
René Jensen said…
Works fine
Can you get the password to?

Popular posts from this blog

Using an AirPcap device in Windows with Wireshark

Capturing wireless traffic in a Windows environment is unfortunately not as easy as a setting change. As with most Windows-based software, drivers in Windows are often not open source and do not allow for configuration change into monitor mode. With this in mind, we must use a specialized piece of hardware known as an AirPcap device. Once you have obtained an AirPcap device you will be required to install the software on the accompanying CD to your analysis computer. The configurable options include: • Interface - Select the device you are using for your capture here. Some advanced analysis scenarios may require you to use more than one AirPcap device to sniff simultaneously on multiple channels. • Blink LED - Clicking this button will make the LED lights on the AirPcap device blink. This is primarily used to identify the specific adapter you are using if you are using multiple AirPcap devices. • Channel - In this field, you select the channel you want AirPcap to listen on. Extension C...

Anti CSRF header

Recently I came across an application which was preventing crsf attacks using a unique non-traditional approach. In traditional approach the csrf is thwarted by embedding unique random tokens, called nonce, in each sensitive page. But this application, which was making ajax calls and used jQuery, was creating a header to identify the valid and invalid requests altogether. The idea is to generate a custom header, x-session-token in this case, with every request which is considered sensitive and includes any sort of transaction. For example: xhr.setRequestHeader('x-session-token', csrf_token)   At the server level, server checks for this header if found request is fulfilled, otherwise rejected. We need to use xhr calls for making use of this technique, not useful in regular POST and GET requests. Since, I was not aware of this kind of countermeasures, probably, since most of the applications I did were using standard requests. So, I searched a bit and found even Go...

Some one watching where you visited!

Yes... Mozilla has been susceptible to browser-history stealing java script code. Today, Giorgio posted some cool information about the exploit. Mozilla is already working on this. This bug has been reported. Actually they have set up a web site to show the proof-of-concept. Visit www.statrpanic.com in FF,Safari or Netscape and it will tell you which websites have you been already ! But I am not sure it will work in IE or not because my IE is not responding to the website. Clearing history of visited website makes you safe to this attack. I mean this is one way..may be there are other ways to exploit this. But I have found this effective. Try it yourself in FF and then in IE and see the results.