Git Product home page Git Product logo

java-bytecode-differential's Introduction

Java-bytecode-differential

I wasn't able find any competent disassemblers and reassemblers that were useable from java code as a library. Since I always wanted to do patches in an easily human-readable way, I also added it to the things it can do. This application can be run as a standalone application via CLI (although right now only to patch things) or as a library.

Using the disassembler from code.

The simplest way to disassemble a class is to convert that class to an Objectweb ASM ClassNode and call the DeltaGenerator#generateBytecode(ClassNode) method. Alternatively you can do it yourself with the BytecodeGeneratorVisitor class.

Using the reassembler from code

The easiest way is to invoke the cosntructor of the SLAssembler class. Why the constructor? Because I didn't want to use static and I haven't thought it out all the way when I started creating it.

Drawbacks

It uses a custom format to assemble the code into and disassembles the methods and fields via Recaf and stitched together via an in-house application, though reassembly is done manually. Because two different applicaions handle method/field assembly/disassembly there are following limitations:

  • Local variables could be remapped in a sub-optimal fashion. This can be negated by using the SKIP_DEBUG flag in your ClassReader. This is done by default in CLI mode.
  • Literal strings could have escapes stripped when they shouldn't be or escapeed when not needed. However for normal classes, this is not an issue and is only potent rubbish data are stored as literal strings.
  • Annotations are not supported
  • Attributes are not supported
  • Larger jar size due to shadowing recaf
  • Resulting jars may fail the verifier due to missing frames (ASM issue)

java-bytecode-differential's People

Contributors

geolykt avatar

Stargazers

Kyle Escobar avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.