mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-04 18:29:26 +00:00
7 lines
411 B
Bash
Executable file
7 lines
411 B
Bash
Executable file
#!/bin/bash -ex
|
|
|
|
[ -e https://github.com/NationalSecurityAgency/ghidra/releases/download/Ghidra_10.3.1_build/ghidra_10.3.1_PUBLIC_20230614.zip ] || wget https://github.com/NationalSecurityAgency/ghidra/releases/download/Ghidra_10.3.1_build/ghidra_10.3.1_PUBLIC_20230614.zip
|
|
[ -e ghidra_10.3.1_PUBLIC ] || unzip ghidra_10.3.1_PUBLIC_20230614.zip
|
|
mkdir -p bin
|
|
cd bin
|
|
ln -s ../ghidra_9.1-BETA_DEV/ghidraRun ghidra
|