This extension adds read-only REST API to your Ghidra project.
Download prebuilt package from the Releases section. Select release which matches your Ghidra version. Then in main Ghidra window:
- Select
File -> Install Extensions
. - Press the green plus button.
- Select downloaded ZIP.
- Restart Ghidra.
After installing this extension enable the RestApiPlugin
in the Miscellaneous
plugins configuration window.
Then after opening program select Start Rest API Server
from the Tools
menu bar. The server will start on port 18489
.
The port currently can only be changed by setting GHIDRA_REST_API_PORT
environment variable.
The following endpoints are available, they all return data from the current Program
:
GET /v1/bookmarks
- returns all bookmarks.GET /v1/memory-blocks
- returns all memory blocks.GET /v1/memory?address={addressString}&length={length}
- returns program memory. Note that theaddressString
can include the address space, e.g.?address=segment_2::0x20
will return data from thesegment_2
space at offset 0x20.GET /v1/relocations
- returns all relocations.GET /v1/functions
- returns all functions.GET /v1/symbols
- returns all symbols.GET /v1/types
- returns all types used in program.
To view the response model see classes here. The fields are usually mapped 1:1 from Ghidra's data, for now you will need to refer to the Ghidra docs for detailed explanation about each field.
If you have some usecase which requires access to other Program
data then feel free to open issue describing what is needed.
GHIDRA_INSTALL_DIR
environment variable must be set to Ghidra root installation directory.
./gradlew buildExtension
- build extension, this will create a zip file in thedist
directory.
The following commands require GHIDRA_USER_DIR
environment variable, it must be set to your Ghidra user
directory, for example: C:\Users\<user>\AppData\Roaming\ghidra\ghidra_11.1_PUBLIC
.
./gradlew ghidraInstall
- build and install into Ghidra user directory (contents of$GHIDRA_USER_DIR/Extensions/ghidra-rest-api
will be overwritten)../gradlew ghidraInstallThenRun
- runghidraInstall
task then start Ghidra, useful for development../gradlew ghidraInstallThenDebug
- runghidraInstall
task then start Ghidra in debug mode, useful for development.
Licensed under Apache License 2.0.