Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Decompiler_Tools — Tools | Kitploit
Tools/GitHubGitHub/jas502n/decompiler_tools
Static Code Analysis (SAST)Reverse EngineeringBinary Analysis
GitHubjas502n/decompiler_tools

Decompiler_Tools

Tools

View Repository
826 years agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Decompiler_Tools

0x01 default idea decompiler

Mac OS Dir

/Applications/IntelliJ IDEA.app/Contents/plugins/java-decompiler/lib

root@kitploit:~
/Applications/IntelliJ IDEA.app/Contents/plugins/java-decompiler/lib

-rw-r--r--@ 1 xxx  xxx   1.4M  4  8 22:19 java-decompiler.jar

java-decompiler.jar: Java archive data (JAR)

set zsh

~/.zshrc

alias jd="java -cp '/Applications/IntelliJ IDEA.app/Contents/plugins/java-decompiler/lib/java-decompiler.jar' org.jetbrains.java.decompiler.main.decompiler.ConsoleDecompiler -dgs=true $1 $2"

root@kitploit:~
jd aaaa.jar decompile

INFO:  Decompiling class org/apache/http/client/utils/URIBuilder
INFO:  ... done
INFO:  Decompiling class org/apache/http/impl/cookie/CookieSpecBase
INFO:  ... done
INFO:  Decompiling class org/apache/http/impl/execchain/ServiceUnavailableRetryExec
INFO:  ... done
INFO:  Decompiling class org/apache/http/impl/auth/SPNegoSchemeFactory

Windows OS Dir

....

0x02 usage:

root@kitploit:~
java -cp java-decompiler.jar org.jetbrains.java.decompiler.main.decompiler.ConsoleDecompiler

Usage: java -jar fernflower.jar [-<option>=<value>]* [<source>]+ <destination>
Example: java -jar fernflower.jar -dgs=true c:\my\source\ c:\my.jar d:\decompiled\

Set Bat

java -cp java-decompiler.jar org.jetbrains.java.decompiler.main.decompiler.ConsoleDecompiler -dgs=true %1 %2

1.bat xxxx.jar decompiled

decompiled 目录得到一个jar,然后修改后缀为zip等格式,解压缩得到java文件源代码。

Download Tool