java: retrieve bytecode from in-memory to prevent hacking - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T23:52:05Zhttp://stackoverflow.com/feeds/question/506939http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/506939/java-retrieve-bytecode-from-in-memory-to-prevent-hacking2java: retrieve bytecode from in-memory to prevent hackingAndreas2009-02-03T12:42:59Z2009-02-03T13:50:13Z
<p>How can i retrieve the bytecode and make a hash to see if someone has manipulated with my bytecode in-memory or on file?</p>
<p>EDIT:
Does signing the binaries protect the code from being modified and executed? As much as I want to protect my users from making sure they are running my software. I would also like to protect the program (server) from being used by a hacked client.</p>
<p>How do i server side detect if someone tampered with my client?</p>
http://stackoverflow.com/questions/506939/java-retrieve-bytecode-from-in-memory-to-prevent-hacking/506943#5069437Answer by Peter Štibraný for java: retrieve bytecode from in-memory to prevent hackingPeter Štibraný2009-02-03T12:45:38Z2009-02-03T12:45:38Z<p>Maybe you want to <a href="http://java.sun.com/docs/books/tutorial/deployment/jar/intro.html" rel="nofollow">sign your jar files</a> instead?</p>
<p>What you want should be possible via Intrumentation, by adding custom Transformer. See <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/instrument/package-summary.html" rel="nofollow">http://java.sun.com/j2se/1.5.0/docs/api/java/lang/instrument/package-summary.html</a></p>
<p>Custom classloader also does the job, as it gets bytecode when class is defined.</p>
http://stackoverflow.com/questions/506939/java-retrieve-bytecode-from-in-memory-to-prevent-hacking/506947#5069472Answer by Dev er dev for java: retrieve bytecode from in-memory to prevent hackingDev er dev2009-02-03T12:46:38Z2009-02-03T12:46:38Z<p>You can create your own classloader and do the checking manually, <strong>or</strong> you can <strong>sign</strong> your code and let the java runtime do the job for you.</p>
http://stackoverflow.com/questions/506939/java-retrieve-bytecode-from-in-memory-to-prevent-hacking/506960#50696012Answer by Joachim Sauer for java: retrieve bytecode from in-memory to prevent hackingJoachim Sauer2009-02-03T12:50:21Z2009-02-03T12:50:21Z<p>So you are trying to prevent some process with the same (or higher) privilege level than your application from manipulating your application?</p>
<p>That's a task that's doomed to fail. Because if you add your security checks, what would prevent the attacker from modifying your <code>isSecure()</code> method by replacing it with a simple <code>return true;</code>?</p>
http://stackoverflow.com/questions/506939/java-retrieve-bytecode-from-in-memory-to-prevent-hacking/506994#5069945Answer by sleske for java: retrieve bytecode from in-memory to prevent hackingsleske2009-02-03T13:03:59Z2009-02-03T13:03:59Z<p>I think you need to clarify your requirements (at least I'm having trouble understanding what you are looking for).</p>
<p>In security-related areas, you always need to answer two questions, befor you can even start to tackle a problem:</p>
<ul>
<li>What am I trying to protect?</li>
<li>What capabilities does an attacker have?</li>
</ul>
<p>In your case, I believe you are trying to protect a Java client's class files from being modified. In that case the answer depends on what the (potential) attacker can do.</p>
<p>If the attacker actually has admin privileges on the machine the client is running on, then there is essentially nothing you can do. As saua above points out, if you cannot trust the the system you're running on, you're doomed.</p>
<p>If the attacker can only modify the class files <em>before</em> they reach the client maching, then signing your JAR files will let your clients detect the manipulation.</p>
http://stackoverflow.com/questions/506939/java-retrieve-bytecode-from-in-memory-to-prevent-hacking/507057#5070571Answer by basszero for java: retrieve bytecode from in-memory to prevent hackingbasszero2009-02-03T13:27:49Z2009-02-03T13:27:49Z<p>Signing the jars will protect the code from being modified. Signing involves creating a signature based on your private key. The public key is embedded in the jar with these signatures. Java will validate the signatures against your public key and refuse to load modified classes. </p>
<p>A hacked client will be a little harder to prevent. First an attacked would have to reverse engineer your protocol. You could take a step toward preventing this with a java obfuscator, but ultimately the attacker could just watch the wire and reverse engineer the protocol from the traffic. Even if you encrypt the client-server comms (this isn't exactly easy, considering using a protocol that already does it for you ... SSH or HTTPS) you will ultimately still be suceptible to a man-in-the-middle attack.</p>
<p>What exactly are you trying to protect against? </p>
http://stackoverflow.com/questions/506939/java-retrieve-bytecode-from-in-memory-to-prevent-hacking/507119#5071193Answer by Rolf Rander for java: retrieve bytecode from in-memory to prevent hackingRolf Rander2009-02-03T13:50:13Z2009-02-03T13:50:13Z<blockquote>
<p>How do i server side detect if someone tampered with my client?</p>
</blockquote>
<p>You can not. On the internet nobody knows if you're a dog ;-)</p>
<p>Seriously: the only option server-side for making any assumptions about the client, is in the information sent back over the network. By encrypting the protocol and making it sufficiently hard to reverse-engineer, you can make it hard for an intruder to hack the client, but not impossible.</p>
<p><a href="http://en.wikipedia.org/wiki/Next-Generation_Secure_Computing_Base" rel="nofollow">NGSCB</a> (formerly known as Palladium) is designed to make this more secure, but this has its own set of <a href="http://www.theregister.co.uk/2002/06/25/ms_to_eradicate_gpl_hence/" rel="nofollow">issues</a>.</p>