Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hacker proofing a jar file

What techniques could I use to make my "jar" file Reverse Engineer proof?

like image 640
Kevin Boyd Avatar asked Nov 26 '22 22:11

Kevin Boyd


1 Answers

You can't make it reverse engineer proof. If the java runtime can read the instructions, so can the user.

There are obfuscators which make the disassembled code less readable/understandable to make reverse engineering it harder, but you can't make it impossible.

like image 141
sepp2k Avatar answered Dec 10 '22 03:12

sepp2k