forked from Storyyeller/Krakatau
-
Notifications
You must be signed in to change notification settings - Fork 0
Java decompiler, assembler, and disassembler
License
gaelmuller/Krakatau
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Krakatau Bytecode Tools
Copyright (C) 2012-15 Robert Grosse
=== Introduction ===
Krakatau currently contains three tools - a decompiler and disassembler for
Java classfiles and an assembler to create classfiles.
=== Requirements ===
Krakatau requires Python 2.7. Note that if you want to do decompilation, you'll
probably want an installation of the JDK as well. For assembly and disassembly,
a Java installation is not strictly necessary, but it is still useful for
testing the resulting classes.
=== Decompilation ===
Usage:
python Krakatau\decompile.py [-nauto] [-path PATH] [-out OUT] [-rename-classes N] [-r] [-skip]
target
PATH : An optional list of directories, jars, or zipfiles to search for
classes in. Krakatau will attempt to automatically detect and add the
jar containing core language classes, but you can disable this with
the -nauto option. For multiple jars, you can either pass a semicolon
seperated list of jars or pass the -path option multiple times.
OUT : Directory name where source files are to be written. Defaults to the
current directory. If the name ends in .zip or .jar, the output will be a
zipfile instead.
N : (Optional). Rename all classes with a name length that is less than N.
Use 0 in order to rename all classes regardless of name length.
Renaming a class will prefix it with 'Class_'. It is useful with certain
obfuscation scheme that rename classes and packages with similar names
in order to confuse editors.
-r : Decompiles all .class files found in the directory target (recursively)
-skip : Continue upon errors. If an error occurs while decompiling a specific
method, the traceback will be printed as comments in the source file. If the
error occurs while decompiling at the class level, no source file will be
emitted and an error message will be printed to the console.
target : Class name or jar name to decompile. If a jar is specified, all
classes in the jar will be decompiled. If -r is specified, this should
be a directory.
The Krakatau decompiler takes a different approach to most Java decompilers.
It can be thought of more as a compiler whose input language is Java bytecode
and whose target language happens to be Java source code. Krakatau takes in
arbitrary bytecode, and attempts to transform it to equivalent Java code. This
makes it robust to minor obfuscation, though it has the drawback of not
reconstructing the "original" source, leading to less readable output than a
pattern matching decompiler would produce for unobfuscated Java classes.
However, it will not always produce valid Java since there are some things
that are difficult or impossible to decompile at all thanks to the limitations
of the Java language. In most cases, Krakatau will try to at least produce
readable pseudocode, but sometimes it may just throw an exception.
Warning: Output on Windows uses UNC-style paths, which means that depending on
the input class name, it may create files which are difficult or impossible
to access through Windows Explorer or other non-UNC aware tools.
Note that the decompiler does not currently support Java 8 or invokedynamic,
although the assembler and disassembler do.
=== Assembly ===
Usage:
python Krakatau\assemble.py [-out OUT] [-r] [-q] target
OUT : Directory name where class files are to be written. Defaults to the
current directory. If the name ends in .zip or .jar, the output will be a
zipfile instead.
-r : Assembles all .j files found in the directory target (recursively)
-q : Quiet mode (only display warnings and errors)
target : Name of file to assemble. If -r is specified, this should be a
directory.
The Krakatau assembler uses a syntax similar to Jasmin, but with many new
features, most importantly the ability to directly specify constant pool
references. For more information about the syntax look in the Documentation
folder.
=== Disassembly ===
Usage:
python Krakatau\disassemble.py [-out OUT] [-r] [-roundtrip] target
OUT : File or directory name where source files are to be written. Defaults
to the current directory. If the name ends in .zip or .jar, the output will
be a zipfile instead.
-r : Disassembles all .class files found in the directory target (recursively)
-roundtrip : Creates an assembly file that will assemble back to the exact
binary file that was disassembled. This is not the default because it
results in an assembly file which is harder for humans to read and edit.
target : Filename or jar name to disassemble. If a jar is specified, all
classes in the jar will be disassembled. If -r is specified, this should
be a directory.
This takes a classfile and converts it into a human readable assembly format.
Unlike Javap, this can handle even pathological classes, and the output can
be reassembled. Together with the Krakatau assembler, this tool can roundtrip
any class through assembly and back into an equivalent class. If the -roundtrip
option is passed, then it can roundtrip any valid class through assembly and
exactly reproduce the original binary classfile.
Note: If you find a valid class which Krakatau cannot disassemble, please file
an issue at https://github.com/Storyyeller/Krakatau/issues.
=== Performance ===
You can disable the internal debugging checks by passing -O to Python. This
will make Krakatau slightly faster, so it is recommended for normal usage.
About
Java decompiler, assembler, and disassembler
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published
Languages
- Python 92.4%
- Java 4.1%
- Jasmin 3.1%
- Objective-J 0.4%