Ghidra
What is it?
Ghidra is a software reverse engineering (SRE) suite of tools developed by NSA’s Research Directorate in support of the Cybersecurity mission. Also, Ghidra is open-source.
Installation
First you must the download Ghidra with this link https://ghidra-sre.org/ or you use bellow commad
1 |
wget https://ghidra-sre.org/ghidra_9.0.1_PUBLIC_20190325.zip |
Unzip ghidra_x.x.x_PUBLIC_xxxxxxxx.zip
for my verision;
1 |
unzip ghidra_9.0.1_PUBLIC_20190325.zip |
Install Java jdk and jre
1 2 3 4 |
sudo add-apt-repository ppa:openjdk-r/ppa sudo apt update sudo apt install openjdk-11-jdk sudo apt install openjdk-11-jre-headless |
So that, you can run Ghidra 🙂
1 2 |
chmod +x gidraRun ./ghidraRun |
Full install script
1 2 3 4 5 6 7 8 9 10 11 |
mkdir Ghidra cd Ghidra wget https://ghidra-sre.org/ghidra_9.0.1_PUBLIC_20190325.zip unzip ghidra_9.0.1_PUBLIC_20190325.zip cd ghidra_9.0.1 sudo add-apt-repository ppa:openjdk-r/ppa sudo apt update sudo apt install openjdk-11-jdk sudo apt install openjdk-11-jre-headless chmod +x ghidraRun ./ghidraRun |
hi, the command chmod +x gidraRun misses the h!
cheers
thanks
thank you so much for the instruction
You don’t have to run
sudo apt install openjdk-11-jdk-headless
, it is already get installed withopenjdk-11-jdk