Java Reverse Engineering Tutorial

I'm interested in how reverse engineering is done by java bytecode. Can someone recommend me some useful lessons?

I have already read several articles on this topic: 1. Class file format 2. Java bytecode

These two articles provided a lot of information about bytecode. However, they don’t talk about a way to reconstruct it, like how code binding can be mapped back to an if condition block or a for loop.

thank

+3
source share
1 answer

You might want to read some books about Java virtual machines to better understand how this works:

+3

Source: https://habr.com/ru/post/1771880/


All Articles