├── .gitignore ├── LICENSE ├── README.md ├── YaraSearch.py ├── binwalk.py ├── export_gameboy_rom.py ├── ghidra_ninja_helpers.py ├── golang_renamer.py ├── images ├── binwalk.png ├── golang_renamer.png ├── swift_demangler.png └── yara.png ├── swift_demangler.py ├── yara-crypto.yar └── yara.py /.gitignore: -------------------------------------------------------------------------------- 1 | *py.class 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghidraninja/ghidra_scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghidraninja/ghidra_scripts/HEAD/README.md -------------------------------------------------------------------------------- /YaraSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghidraninja/ghidra_scripts/HEAD/YaraSearch.py -------------------------------------------------------------------------------- /binwalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghidraninja/ghidra_scripts/HEAD/binwalk.py -------------------------------------------------------------------------------- /export_gameboy_rom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghidraninja/ghidra_scripts/HEAD/export_gameboy_rom.py -------------------------------------------------------------------------------- /ghidra_ninja_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghidraninja/ghidra_scripts/HEAD/ghidra_ninja_helpers.py -------------------------------------------------------------------------------- /golang_renamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghidraninja/ghidra_scripts/HEAD/golang_renamer.py -------------------------------------------------------------------------------- /images/binwalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghidraninja/ghidra_scripts/HEAD/images/binwalk.png -------------------------------------------------------------------------------- /images/golang_renamer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghidraninja/ghidra_scripts/HEAD/images/golang_renamer.png -------------------------------------------------------------------------------- /images/swift_demangler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghidraninja/ghidra_scripts/HEAD/images/swift_demangler.png -------------------------------------------------------------------------------- /images/yara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghidraninja/ghidra_scripts/HEAD/images/yara.png -------------------------------------------------------------------------------- /swift_demangler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghidraninja/ghidra_scripts/HEAD/swift_demangler.py -------------------------------------------------------------------------------- /yara-crypto.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghidraninja/ghidra_scripts/HEAD/yara-crypto.yar -------------------------------------------------------------------------------- /yara.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghidraninja/ghidra_scripts/HEAD/yara.py --------------------------------------------------------------------------------