bcv-vf/README.md

86 lines
4.7 KiB
Markdown
Raw Normal View History

2018-01-31 15:46:19 +00:00
# Bytecode Viewer
2019-04-17 06:45:15 +00:00
Bytecode Viewer - a lightweight user friendly Java Bytecode Viewer.
2018-01-31 15:46:19 +00:00
2019-04-17 06:45:15 +00:00
#### New Features
2021-06-30 20:58:42 +00:00
* Translation Process Started: Arabic, German, Japanese, Manadarin, Russian, Spanish & More
2021-07-01 22:23:02 +00:00
* Plugin Writer: Create and edit external plugins from within BCV
2021-07-06 20:47:45 +00:00
* Fixed Java & Bytecode Editing/Compiling
2021-06-29 18:31:24 +00:00
* XAPK Support
2021-06-26 02:11:59 +00:00
* Dark Mode
2021-04-14 11:00:30 +00:00
* Updated nearly all dependencies (incl. decompilers like CFR, JD-GUI etc.)
* Updated ASM library to version 9.1
* Added support to Java files compiled using JDK > 13
2021-03-30 20:09:22 +00:00
* Migrated to Maven
2018-01-31 15:46:19 +00:00
2019-04-17 06:47:10 +00:00
#### Links
2021-07-07 01:25:32 +00:00
* [BCV Discord](https://discord.gg/sXHcuS6aBG)
2021-06-27 09:35:18 +00:00
* [Website](https://bytecodeviewer.com)
* [Source Code](https://github.com/konloch/bytecode-viewer)
* [Bin/Archive](https://github.com/konloch/bytecode-viewer/releases)
* [Java Docs](https://the.bytecode.club/docs/bytecode-viewer/)
* [License (Copyleft)](https://raw.githubusercontent.com/Konloch/bytecode-viewer/master/LICENSE)
* [Credits](https://github.com/Konloch/bytecode-viewer/blob/master/CREDITS.md)
* [Contributing](https://github.com/Konloch/bytecode-viewer/blob/master/CONTRIBUTING.md)
* [Report Bugs](https://github.com/Konloch/bytecode-viewer/issues)
* [Discussion Forum](https://the.bytecode.club/forumdisplay.php?fid=69)
2018-01-31 15:46:19 +00:00
2019-04-17 06:45:15 +00:00
#### Key Features
2021-06-29 19:15:09 +00:00
* Simply drag and drop to decompile and search Java Jars & Android APKs
* File format support for: Class, Jar, XAPK, APK, DEX, WAR, JSP, Image Resources, Text Resources & More
2021-06-29 19:16:48 +00:00
* 6 Built-in Java decompilers: Krakatau, CFR, Procyon, FernFlower, JADX, JD-GUI
2021-06-29 19:15:09 +00:00
* 3 Built-in Bytecode disassemblers, including 2 assemblers: Krakatau and Smali/BakSmali
* APK/DEX Support from Dex2Jar and Enjarify
* Built-in Java Compiler
* Advanced static-search functionality
* Customizable UI
* Plugins + Script Engine Design
* Malicious code scanning API
* Translations (English, Mandarin)
* Export functionality as Runnable Jar, Zip, APK, Decompile All As Zip, Etc.
2018-01-31 15:46:19 +00:00
* And more! Give it a try for yourself!
2019-04-17 06:45:15 +00:00
#### Command Line Input
2018-01-31 15:46:19 +00:00
```
-help Displays the help menu
-list Displays the available decompilers
-decompiler <decompiler> Selects the decompiler, procyon by default
-i <input file> Selects the input file (Jar, Class, APK, ZIP, DEX all work automatically)
-o <output file> Selects the output file (Java or Java-Bytecode)
-t <target classname> Must either be the fully qualified classname or "all" to decompile all as zip
-nowait Doesn't wait for the user to read the CLI messages
```
2019-04-17 06:45:15 +00:00
## What is Bytecode Viewer?
Bytecode Viewer (BCV) is an Advanced Lightweight Java Bytecode Viewer, GUI Java Decompiler, GUI Bytecode Editor, GUI Smali, GUI Baksmali, GUI APK Editor, GUI Dex Editor, GUI APK Decompiler, GUI DEX Decompiler, GUI Procyon Java Decompiler, GUI Krakatau, GUI CFR Java Decompiler, GUI FernFlower Java Decompiler, GUI DEX2Jar, GUI Jar2DEX, GUI Jar-Jar, Hex Viewer, Code Searcher, Debugger and more.
2021-06-26 16:06:49 +00:00
It's written completely in Java, and it's open sourced. It's currently being maintained and developed by Konloch.
2019-04-17 06:45:15 +00:00
## How do I install BCV?
Download the latest version from https://github.com/konloch/bytecode-viewer/releases and run the Bytecode-Viewer-2.10.x.jar.
You may need to execute it via command line ```java -jar Bytecode-Viewer-2.10.x.jar``` (replace the X with the current minor version)
2018-01-31 15:46:19 +00:00
2019-04-17 06:45:15 +00:00
## How do I use BCV?
All you have to do is add a jar, class or APK file into the workspace. Then select the file you'd like to view from the workspace. BCV will automatically start decompiling the class in the background. When it's done it will show the Source code, Bytecode and Hexcode of the class file you chose (depending on the View panes you have selected). If you are trying to view a resource BCV will attempt to display it the best it can with code highlighting or by embedding the resources itself.
2018-01-31 15:46:19 +00:00
2021-06-26 16:06:49 +00:00
## How do the plugins work?
There is also a plugin system that will allow you to interact with the loaded classfiles. You could for example write a String deobfuscator, a malicious code searcher, or anything else you can think of.
You can either use one of the pre-written plugins, or write your own. The plugin system supports groovy, python, ruby, java and javascript scripting.
Once a plugin is activated, it will execute the plugin with a ClassNode ArrayList of every single class loaded in BCV, this allows the user to handle it completely using ASM.
2021-04-14 11:00:30 +00:00
## Instructions to compile
2021-06-21 07:25:35 +00:00
Just clone this repo and run ``mvn package``. It's that simple!
2021-04-14 11:00:30 +00:00
## Working on the source
2021-06-21 07:25:35 +00:00
Open the Maven project (e.g. in IntelliJ, open the ``pom.xml`` as a project file).
2021-06-21 22:54:05 +00:00
## Java Heap Space Issues
Start BCV with more RAM, e.g. `java -Xmx3G -jar BCV.jar`
#### Are you a Java Reverse Engineer? Do you want to learn?
2021-06-21 18:33:53 +00:00
Join The Bytecode Club Today! - https://the.bytecode.club