Skip to content
KitploitKITPLOIT
ツールブログ
提出
ツールブログ
提出

ハッキング、侵入テスト、サイバーセキュリティツールをあなたのセキュリティアーセナルに!

Kitploitはハッキング、サイバーセキュリティ、ペネトレーションテストのツールディレクトリです。最新のプロジェクトアップデートを見つけて、脆弱性の発見、システム分析、テストの自動化、セキュリティの強化を行いましょう。

··フィード·お問い合わせ·プライバシー·© 2026 Kitploit

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
Decompiler_Tools — ツール | Kitploit
ツール/GitHubGitHub/jas502n/decompiler_tools
静的コード分析 (SAST)リバースエンジニアリングバイナリ解析
GitHubjas502n/decompiler_tools

Decompiler_Tools

ツール

リポジトリを見る
826年前未レビュー

人気

すべて見る →

コミュニティで最も使われているツールを見つけましょう。

すべてのツールを探索

ツールコレクションを閲覧

すべてのツールを見る →
共有

Decompiler_Tools

0x01 デフォルトの IDEA デコンパイラ

Mac OS ディレクトリ

/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)

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 ディレクトリ

....

0x02 使用方法:

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\

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 ファイルのソースコードが得られます。

ツールをダウンロード