B4J Question Security / decompile

Iatros

Member
Licensed User
I developed a software with C++ Builder. Now I think about to rebuild it in B4J, so it can be used on Windows and Mac.

Is it enough to compile it with obfuscated ? I included a serialnumber system, but if you can decompile it ...
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
Make sure to set all the sensitive strings as process_global variables. This way they will be obfuscated.

Is it enough to compile it with obfuscated ?
Only you can answer this question. Obfuscation makes it harder to reverse engineer your code.

Note that if you haven't obfuscated your C++ code then the strings can be easily extracted from your current executable.
 
Upvote 0
Top