├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitlab-ci.yml ├── Ghidra.app └── Contents │ ├── Info.plist │ ├── MacOS │ ├── ghidra │ └── update.py │ └── Resources │ ├── Ghidra.icns │ ├── build.gradle │ └── requirements.txt ├── LICENSE ├── README.md ├── doc └── Ghidra.png ├── requirements.txt ├── settings.py └── update.py /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorgoTorgo/Ghidra-App-Bundle/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorgoTorgo/Ghidra-App-Bundle/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorgoTorgo/Ghidra-App-Bundle/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /Ghidra.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorgoTorgo/Ghidra-App-Bundle/HEAD/Ghidra.app/Contents/Info.plist -------------------------------------------------------------------------------- /Ghidra.app/Contents/MacOS/ghidra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorgoTorgo/Ghidra-App-Bundle/HEAD/Ghidra.app/Contents/MacOS/ghidra -------------------------------------------------------------------------------- /Ghidra.app/Contents/MacOS/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorgoTorgo/Ghidra-App-Bundle/HEAD/Ghidra.app/Contents/MacOS/update.py -------------------------------------------------------------------------------- /Ghidra.app/Contents/Resources/Ghidra.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorgoTorgo/Ghidra-App-Bundle/HEAD/Ghidra.app/Contents/Resources/Ghidra.icns -------------------------------------------------------------------------------- /Ghidra.app/Contents/Resources/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorgoTorgo/Ghidra-App-Bundle/HEAD/Ghidra.app/Contents/Resources/build.gradle -------------------------------------------------------------------------------- /Ghidra.app/Contents/Resources/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | dmgbuild 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorgoTorgo/Ghidra-App-Bundle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorgoTorgo/Ghidra-App-Bundle/HEAD/README.md -------------------------------------------------------------------------------- /doc/Ghidra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorgoTorgo/Ghidra-App-Bundle/HEAD/doc/Ghidra.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Ghidra.app/Contents/Resources/requirements.txt -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorgoTorgo/Ghidra-App-Bundle/HEAD/settings.py -------------------------------------------------------------------------------- /update.py: -------------------------------------------------------------------------------- 1 | Ghidra.app/Contents/MacOS/update.py --------------------------------------------------------------------------------