top of page

Decompile — Jar ((link))

jar xf myapp.jar # or unzip myapp.jar -d extracted/

java -jar cfr.jar MyClass.class

jar tf myapp.jar | head -20 # Look for readable package names (com/mycompany) vs cryptic (a/b/c) decompile jar

bottom of page