├── .gitignore ├── HexEditor.java ├── README.md ├── cleanup ├── img ├── gui.png ├── script_dir.png ├── script_dir_menu.png ├── script_mgr.png └── zero.png └── resources ├── GhidraProvider.java ├── GhidraSrc.java ├── MainWindow.java ├── accent.java ├── binEdit.java ├── edObj.java ├── filterRW.java ├── findT.java ├── jEP.java ├── math.java ├── saveT.java └── slaveT.java /.gitignore: -------------------------------------------------------------------------------- 1 | ghidra_bin_location.txt -------------------------------------------------------------------------------- /HexEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sengi12/ghidra-hexEditor/HEAD/HexEditor.java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sengi12/ghidra-hexEditor/HEAD/README.md -------------------------------------------------------------------------------- /cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sengi12/ghidra-hexEditor/HEAD/cleanup -------------------------------------------------------------------------------- /img/gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sengi12/ghidra-hexEditor/HEAD/img/gui.png -------------------------------------------------------------------------------- /img/script_dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sengi12/ghidra-hexEditor/HEAD/img/script_dir.png -------------------------------------------------------------------------------- /img/script_dir_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sengi12/ghidra-hexEditor/HEAD/img/script_dir_menu.png -------------------------------------------------------------------------------- /img/script_mgr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sengi12/ghidra-hexEditor/HEAD/img/script_mgr.png -------------------------------------------------------------------------------- /img/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sengi12/ghidra-hexEditor/HEAD/img/zero.png -------------------------------------------------------------------------------- /resources/GhidraProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sengi12/ghidra-hexEditor/HEAD/resources/GhidraProvider.java -------------------------------------------------------------------------------- /resources/GhidraSrc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sengi12/ghidra-hexEditor/HEAD/resources/GhidraSrc.java -------------------------------------------------------------------------------- /resources/MainWindow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sengi12/ghidra-hexEditor/HEAD/resources/MainWindow.java -------------------------------------------------------------------------------- /resources/accent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sengi12/ghidra-hexEditor/HEAD/resources/accent.java -------------------------------------------------------------------------------- /resources/binEdit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sengi12/ghidra-hexEditor/HEAD/resources/binEdit.java -------------------------------------------------------------------------------- /resources/edObj.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sengi12/ghidra-hexEditor/HEAD/resources/edObj.java -------------------------------------------------------------------------------- /resources/filterRW.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sengi12/ghidra-hexEditor/HEAD/resources/filterRW.java -------------------------------------------------------------------------------- /resources/findT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sengi12/ghidra-hexEditor/HEAD/resources/findT.java -------------------------------------------------------------------------------- /resources/jEP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sengi12/ghidra-hexEditor/HEAD/resources/jEP.java -------------------------------------------------------------------------------- /resources/math.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sengi12/ghidra-hexEditor/HEAD/resources/math.java -------------------------------------------------------------------------------- /resources/saveT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sengi12/ghidra-hexEditor/HEAD/resources/saveT.java -------------------------------------------------------------------------------- /resources/slaveT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sengi12/ghidra-hexEditor/HEAD/resources/slaveT.java --------------------------------------------------------------------------------