You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's written completely in Java, and it's open sourced. It's currently being maintained and developed by Konloch.
5
-
6
-
There is also a plugin system that will allow you to interact with the loaded classfiles, for example you can write a String deobfuscator, a malicious code searcher, or something else you can think of.
7
-
You can either use one of the pre-written plugins, or write your own. It supports groovy 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.
3
+
Bytecode Viewer - a lightweight user friendly Java Bytecode Viewer.
8
4
9
-
Code from various projects has been used, including but not limited to:
10
-
* J-RET by WaterWolf
11
-
* JHexPane by Sam Koivu
12
-
* RSynaxPane by Robert Futrell
13
-
* Commons IO by Apache
14
-
* ASM by OW2
15
-
* FernFlower by Stiver
16
-
* Procyon by Mstrobel
17
-
* CFR by Lee Benfield
18
-
* CFIDE by Bibl
19
-
* Smali by JesusFreke
20
-
* Dex2Jar by pxb1..?
21
-
* Krakatau by Storyyeller
22
-
* JD GUI/JD Core by The Java-Decompiler Team
23
-
* Enjarify by Storyyeller
24
-
25
-
Contributors:
26
-
* Konloch
27
-
* Bibl
28
-
* Fluke
29
-
* Righteous
30
-
* sahitya-pavurala
31
-
* priav03
32
-
* Afffsdd
33
-
* Szperak
34
-
* Zooty
35
-
* samczsun
36
-
* ItzSomebody
37
-
* If I missed you, please feel free to contact me @Konloch or konloch@gmail.com
5
+
#### New Features
6
+
* Fixed APK & dex loading
7
+
* Fixed Java 10+ classfiles
8
+
* Better visual feedback due to the new busy icon system
It's written completely in Java, and it's open sourced. It's currently being maintained and developed by Konloch.
52
+
53
+
There is also a plugin system that will allow you to interact with the loaded classfiles, for example you can write a String deobfuscator, a malicious code searcher, or something else you can think of.
54
+
You can either use one of the pre-written plugins, or write your own. It supports groovy 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.
55
+
56
+
## How do I install BCV?
57
+
Download the latest version from https://github.com/konloch/bytecode-viewer/releases and run the Bytecode-Viewer-2.9.x.jar.
58
+
You may need to execute it via command line ```java -jar Bytecode-Viewer-2.9.x.jar``` (replace the X with the current minor version)
80
59
81
-
Join The Bytecode Club Today!
60
+
## How do I use BCV?
61
+
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.
82
62
83
-
https://the.bytecode.club
63
+
##### Are you a Java Reverse Engineer? Do you want to learn?
64
+
Join The Bytecode Club Today! - https://the.bytecode.club
0 commit comments