Local Links External Links Contact Search this site |
Arbed - Obfuscation featuresObfuscation is used in a program to hide information about its inner workings. Its purpose is to keep lurkers and hackers from figuring out what the program does, preventing them to modify (crack) your program or to simply extract information from it. There are two types of obfuscation that Arbed can perform on your projects:
String obfuscation(Available in Arbed 1.6 and later) This operation rewrites your code so that strings do not appear in clear from in your built program any more. Instead, it stores encoded (encrypted) versions of strings in the code, and adds code that decodes the strings at runtime. So, instead of seeing clear text strings such as "enter your serial number here", an attacker will see nothing but garbled data that he can't decypher by simply looking at it. To make sense and decode these strings, the hacker would have to find and understand the machine code that uses and decrypts these strings. While that is not impossible to accomplish, it requires a lot more expertise and time investment than what it takes to use a hex editor to look over the executable file to find out what the program seems to do. Remember: The key to preventing hacks is not to make it 100% safe (this can't be done) but to make it so hard that the attacker is likely to give up. (See also my article on foiling attempts at cracking.) Details for performing String Obfuscation with Arbed are on this separate page Method name manglingNot available yet. |