https://github.com/isosphere/pyjavadisassemble
A Java Class file disassembler (not "decompiler") written in Python.
https://github.com/isosphere/pyjavadisassemble
disassembler java-bytecode reverse-engineering
Last synced: 5 months ago
JSON representation
A Java Class file disassembler (not "decompiler") written in Python.
- Host: GitHub
- URL: https://github.com/isosphere/pyjavadisassemble
- Owner: isosphere
- License: gpl-2.0
- Created: 2013-10-28T09:41:08.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2015-08-03T15:52:40.000Z (over 10 years ago)
- Last Synced: 2025-07-27T21:19:25.664Z (5 months ago)
- Topics: disassembler, java-bytecode, reverse-engineering
- Language: Python
- Homepage:
- Size: 203 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
The purpose of this project is to create a Python application that will
take an arbitrary Java .class file and output the Java bytecode
corresponding to the methods that make up the .class file.
This is not a "decompiler" that generates Java source code. Those exist
and are pretty buggy. I wanted something more reliable.
Uses prettytable for rendering.