maoxia.dev

a cybersecurity journey

Installing waybackurls in Kali

A lot of the instructions out there say to use go get, however this has now been deprecated and we need to use go install instead.

It then needs to be copied to the users bin folder. From here it will just run normally when using the standalone command waybackurls.

go install github.com/tomnomnom/waybackurls@latest

This most likely won’t work right away, and this is because the go/bin directory isn’t in our path.

We can either set it temporarily or put this in our ~/.profile or ~/.bash_profile file.

export PATH="$PATH":"$HOME/go/bin"


Posted

in

by

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *