vote up 2 vote down star
1

I have a few SSIS packages that were password-protected (their protection level is apparently EncryptAllWithPassword) by a developer who left the company and can't be reached anymore, and trying to open them gives the following error since the password can't be supplied:

Error loading 'Package.dtsx' : Failed to remove package protection with error 0xC0014037 "The package is encrypted with a password. The password was not specified, or is not correct.". This occurs in the CPackage::LoadFromXML method.

Is there any any way to open these packages? I have access to the administrator account originally used to create these packages and have other packages encrypted by the same person but using a different password that I know.

I have contacted a local Microsoft representative about the issue and so far they have only linked me to a a page describing how to set or change a password, which doesn't help because I need to open the package first or provide the old password. Has anyone been in a similar situation before or knows a way around this issue?

flag

1  
Ouch, I would be interested to know the answer to this also as I suspect it cannot be done without some sort of hack. Not that is much help to you now but you may wish to consider using a Password Safe/Key Manager internally within your organisation to avoid this issue in the future. – John Sansom Jun 4 at 10:03
Good Question! Did you guys use any form of source safe on this? You may be able find an unencrypted version there and some developers even put a file up with the password... – RSolberg Jun 5 at 17:38

3 Answers

vote up 0 vote down

I agree with Michael's comment about a password guessing or dictionary attack as being a good approach.

I was just about to also suggest using a cloud computing environment like EC2 to divide and conquer ... but then I realized you are stuck on windows!

link|flag
EC2 does run Windows too. (aws.amazon.com/windows) And then there is Azure! (microsoft.com/azure) – Michael Jun 13 at 23:51
1  
so there you go! Rent a 1000 machines and crack the password. (and your boss's password, that hated co-worker's password, ... ) – Pat Jun 15 at 22:44
vote up 2 vote down

I don't think there is any way to recover package if EncryptAllWithPassword is used, the whole package is encrypted, and can't be decoded without password. One can try of course password guessing or dictionary attacks hoping the developer used weak password.

If it is EncryptSensitiveWithPassword - you can open and then just retype the connection string passwords.

link|flag
vote up 0 vote down

It seems that the package was also stored on SQL Server (msdb database), exporting it from Integration Services into the file system allows us to open it (with a warning about losing sensitive data). This solution works perfectly for this particular situation; we mainly needed to know what happens in these packages.

link|flag
Nice workaround. – John Sansom Jun 4 at 14:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.