diff --git a/.devcontainer/post-create.sh b/.devcontainer/post-create.sh index 71e834f..73623bb 100755 --- a/.devcontainer/post-create.sh +++ b/.devcontainer/post-create.sh @@ -17,4 +17,16 @@ pip install pyhidra # If arm64 os, need to build native binaries for Ghidra if uname -a | grep -q 'aarch64'; then $GHIDRA_INSTALL_DIR/support/buildNatives -fi \ No newline at end of file +fi + +# Setup Ghidra Dev for Reference +git clone git@github.com:NationalSecurityAgency/ghidra.git ~/ghidra-master +pushd ~/ghidra-master + +# Follow setup from https://github.com/NationalSecurityAgency/ghidra/blob/master/DevGuide.md +gradle -I gradle/support/fetchDependencies.gradle init +gradle prepdev + +popd + +echo 'To open up a Ghidra latest dev: code ~/ghidra-master' \ No newline at end of file