How to Install Amass
-
2. Installing Go
How to Install GoLang on Linux
-
3. Installing OWASP Amass
Then to Install OWASP Amass on Linux
First, make a local Go Workspace:Copymkdir ~/Downloads/amass && cd ~/Downloads/amass
Then to initialize it:
Copygo work init
Next simply run:
Copygo install -v github.com/owasp-amass/amass/v4/...@master
For further Insight see the Official Documentation.
Now to amend the User’s Path:Copyecho "export PATH=$PATH:$GOPATH/bin" >> ~/.bashrc
And then Re-load it:
Copybash
Last, to Test your Setup show the Help with:
Copyamass --help
Contents