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
Recaf — The modern Java bytecode editor | Kitploit
Tools/GitHubGitHub/col-e/recaf
Static AnalysisCode AnalysisReverse EngineeringDebuggersBinary Analysis
GitHubcol-e/recaf

Recaf

The modern Java bytecode editor

View Repository
7.3k5371 day agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
Website

Recaf Discord codecov downloads Contributions welcome

Recaf 4x UI

An easy to use modern Java bytecode editor that abstracts away the complexities of Java programs.

Download

  • Launcher
    • Usage & instructions found on the launcher repo
  • Snapshot releases
    • See CI actions for release artifacts
  • Independent releases (None for 4X currently)

Features

  • Edit Java bytecode with ease from a high or low level (minus the annoying parts)
    • Editor features within Recaf abstract away complex details of compiled Java applications like:
      • The constant pool
      • Stack frame calculation
      • Using wide instructions when needed
      • And more!
  • Easy to use navigable interface with context-sensitive actions
  • Support for standard Java and Android applications
  • Multiple decompilers to switch between, with all of their parameters made fully configurable
  • Built in compiler to allow recompiling decompiled classes, even if some referenced classes are missing (When supported, support may vary depending on code complexity and obfuscation)
  • A bytecode assembler with a simple syntax, and supporting tooling
    • See the state of local variables and stack values at any point in methods
    • Access variables by names instead of indices for clearer disassembled code
    • Convert snippets of Java source code to bytecode sequences automatically
  • Searching for a variety of different content: Strings/numeric constants, classes and member references, instruction patterns
  • Tools for deobfuscating obfuscated code
    • Specially crafted class files with the intent of crashing reverse engineering tools are automatically patched when opened in Recaf
    • Specially crafted jar/zip files are read as the JVM does, bypassing sneaky tricks that can trick reverse engineering tools into showing the wrong data
    • Support for automatically renaming obfuscated classes and their members
    • Support for manually renaming classes and their members (And exporting these mappings to a variety of mapping formats for use in other tools)
    • Bytecode transformers for simplifying common obfuscation strategies
  • Attach to running Java process with instrumentation capabilities
  • And much more

A complete list of features can be found in the user documentation.

Scripting & Plugins

Recaf exposes almost all of its functionality through modular API's. Automating behaviors can be done easily with scripts, or with plugins for more complex situations. Additional features can also be added via plugins, which can register hooks in API's that offer them.

To create your own script or plugin, see the developer documentation, specifically the "plugins & scripts" section.

Command Line

Recaf can run as a command line application, which can be especially useful when paired with scripts provided at startup. You can see all the current launch arguments by passing --help as an application argument.

Development Setup

Clone the repository via git clone https://github.com/Col-E/Recaf.git

Open the project in an IDE or generate the build with gradle.

IDE:

  1. Import the project from the build.gradle file
  2. Create a run configuration with the main class software.coley.recaf.Main

Without IDE:

  1. Run gradlew build
    • Output will be located at: recaf-ui/build/libs/recaf-ui-{VERSION}-all.jar
Download Tool