GhidraRPXLoader/README.md

31 lines
985 B
Markdown
Raw Normal View History

2019-03-06 14:56:59 +01:00
# Ghidra RPX/RPL loader
This is a (WIP) simple extension to open .rpx and .rpl files with Ghidra.
# Dependencies
This loader uses the Gekko/Broadway processor definitions for Ghidra if found - it is recommended that this should be installed prior to using the loader.
https://github.com/aldelaro5/ghidra-gekko-broadway-lang
The loader will fallback to the default PowerPC processor if the Gekko/Broadway language is not found, but do not expect good results if the program uses any paired single instructions.
2019-03-06 14:56:59 +01:00
# Usage
2019-03-08 19:25:41 +01:00
Install the extension using the `Install Extensions` option inside Ghidra or extract the .zip manually into `[GHIDRA_ROOT]\Ghidra\Extensions`. Make sure to restart the program after installing.
2019-03-06 14:56:59 +01:00
2019-03-08 19:25:41 +01:00
Once the extension is installed, you can import a .rpx/.rpl file via `File->Import File...`.
2019-03-06 14:56:59 +01:00
# Building
```
cd /path/to/extension
export GHIDRA_INSTALL_DIR=/path/to/ghidra
2019-03-08 19:25:41 +01:00
gradle
2019-03-06 14:56:59 +01:00
```
2019-03-08 19:25:41 +01:00
Output goes into `dist`
2019-03-06 14:56:59 +01:00
# Credits
Based on https://github.com/Relys/rpl2elf