vote up 0 vote down star

In case one wants to protect VBA applications to make trial(demo) versions and not to expose the scripts, how secure the built in password protection is? Are there any alternatives?

Edit: I'm asking about Excel VBA here.

flag

59% accept rate
Is this Excel, Word or Access?? – DJ Nov 3 '08 at 19:38

3 Answers

vote up 2 vote down

Your password security is going to depend largely upon the version of office used. All other Office solutions prior to 2007 can be cracked. Office 2007 requires brute forcing the password. The default encryption mechanism is 128 bit AES.

This means the higher the complexity of the password, the harder to crack. IE - Numbers, special characters, mixing case, etc.

link|flag
Are there any alternative ways to protect the code in versions prior to 2007? – axk Nov 3 '08 at 20:14
I wonder how the code is accessed by Excel when it runs it if the code is encrypted? – axk Nov 3 '08 at 20:16
vote up 0 vote down

It's not very safe, and can be pretty easily cracked with a tool.

This video shows how it's done.

link|flag
vote up 0 vote down

If you really want to protect source, this may be the way to go for you. For those who may not want to follow the link it's an article regarding developing an XLL add-in for Excel 2007. Xll is a specialized dll for use with MS Excel.

link|flag
I don't thinks this is an option in my situation. – axk Nov 3 '08 at 20:35
I thought it might not be Aleksey--on the other hand, I thought it might be possible that you might know C++ and just be asking about VBA because it's Excel. – Onorio Catenacci Nov 3 '08 at 20:38
I had some experience with C++ myself, but the problem is that the question is actually from a person who doesn't know C++ and there's already a lot of code in VBA. – axk Nov 3 '08 at 22:01

Your Answer

Get an OpenID
or

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