arrow-left

All pages
gitbookPowered by GitBook
1 of 1

Loading...

Tools Setup

hashtag
Radare 2

Kali comes pre-installed with radare2. You can check by doing:

If it's not installed, then we can either download it from apt

hashtag
Windows:

Or you can install it from github:

(Or without root permissions)

And then to run it:

hashtag
Ghidra:

Ghidra is a tool that the NSA released for it to be open source back in April 2019, and it's an amazing tool.\

  • Official download link:

  • Github page:

  • Full installation guide found here:

The software needed to install ghidra is as follows (taken exactly from the installation guide):\

  • Java 11 64-bit Runtime and Development Kit (JDK)

  • Free long term support (LTS) versions of JDK 11 are provided here:

    • AdoptOpenJDK

If, for whatever reason, your installation doesn't go as expected, here is ghidra's troubleshooting page:

hashtag
Linux:

Once you've downloaded ghidra as a zip file, you need to unzip:

Change directories into the ghidra folder, and then run using

hashtag
Windows:

Extract the zip file to any location that you would like (I'm going to be using the desktop)

  • Right click on zip -> extract all / extract (here)

Open the Environment Tables window:

  • Right click on windows start button -> Click on "System"

  • Click "Advanced System Settings" on the left (Administrative priveleges needed)

  • Click "Environment Variables" at the bottom

Add the JDK bin directory to the PATH variable

  • Under "System Variables", click "Path" -> edit -> new

  • Type the path of where you extracted the zip to + "\bin"

  • Click "ok" -> "ok" -> "ok"

To run:

  • Navigate to zip extraction path

  • Run ghidra.bat

$ radare2 --version
$ apt-get install radare2

Amazon Corretto

https://www.ghidra-sre.org/arrow-up-right
https://github.com/NationalSecurityAgency/ghidraarrow-up-right
https://ghidra-sre.org/InstallationGuide.htmlarrow-up-right
https://ghidra-sre.org/InstallationGuide.html#Troubleshootingarrow-up-right
$ git clone https://github.com/radare/radare2.git
$ cd radare2
$ sys/install.sh
$ sys/user.sh
$ r2
$ unzip ghidra_*_PUBLIC_*.zip
$ sudo apt-get install default-jdk
$ ./ghidraRun