Skip to content

Instantly share code, notes, and snippets.

@setrus
Created January 9, 2020 10:21
Show Gist options
  • Save setrus/0fe6539e4e5195e87859a8c57bc75829 to your computer and use it in GitHub Desktop.
Save setrus/0fe6539e4e5195e87859a8c57bc75829 to your computer and use it in GitHub Desktop.
Install GO Environmnet
wget https://dl.google.com/go/go1.13.3.linux-amd64.tar.gz
sudo tar -xvf go1.13.3.linux-amd64.tar.gz
sudo mv go /usr/local
export GOROOT=/usr/local/go
export GOPATH=$HOME/go
export PATH=$GOPATH/bin:$GOROOT/bin:$PATH
go version
go env
go get github.com/OJ/gobuster
gobuster
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment