Forum Moderators: open

Message Too Old, No Replies

obfuscation of code

obfuscation of code

         

mavrick

2:13 pm on Jul 14, 2004 (gmt 0)

10+ Year Member



hi guys

can anybody know were i could download a obfuscation Tool.

thanks

harun

1:00 pm on Aug 16, 2004 (gmt 0)

10+ Year Member



Hello,
You can download it
[wiseowl.com...] .
Demenaor is a great tool for code obfuscation. You must notice some points while developing your code. When you write public methods, you must pleace a private method inside it. Because code obfuscators does not obfuscates the public method or variable names. Let me give an example. Let's have a method named GetProductSerialNumber
public string GetProductSerialNumber(string id)
{
string result = "";
result = this.doGetProductSerialNumber("abc");
return result;
}
private string doGetProductSerialNumber(string id)
{
// do what you need
}

By this way, the cracker cannot track the code flow because the name of the method doGetProductSerialNumber will be obfuscated.

Happy coding.