vb6resourcesobfuscationprotector

how to protect or compress visual basic 6 compiled exe file?


I compiled a vb6 project. I need to protect exe file with protector or compressor so that users can not unresource that. please help me to find free softwares for that.


Solution

  • There's no way you can completely protect your program from being decompiled but you can make it harder. One thing you can do is use an Obfuscator. Basically, what an Obfuscator does is make your code unreadable if it's decompiled.

    One program that I used to use was VB Decompiler Pro. I don't think it's free but it has a tool in it that'll obfuscate your program. The main purpose of the program is to decompile a VB program. But you can use the "Obfuscate Project" tool that is found in the program to obfuscate your VB6 program.

    There may be other free obfuscators out there. Google them. The one I mentioned above is the only one I've used.

    You can read more about Obfuscation from here.