OWASP Amass Installation

Nitesh Pandey
1 min readMay 24, 2020

--

In this tutorial, we will learn how to install OWASP amass using go lang

So let us see how to install amass into Linux and ubuntu system.

The first thing you need is you need to install golang in your system and we can easily do it using the script in the description and the step shown below if then also you face any issue you can check the video above.

STEP 1: Download the script to your system using the command shown below:

git clone https://github.com/mrnitesh/amass.git

STEP 2: you need to go to the folder you have downloaded the script you can do it easily by using the command shown below:

cd amass

STEP 3: Now you are in the amass folder now you need to make the script executable and for making the script executable you need to use the command chmod.

chmod+x script.sh

STEP 4:Now when you will do ls inside the amass folder you will notice that the color of the script.sh is changed and now it turns green. So you are good to install the amass into your system for installing you just need to run following command.

./script.sh

As soon as you will run the script.sh, you will see that it start installing if you face any problem you can run the script.sh using sudo command and the command will look like

sudo ./script.sh

--

--