Skip to content

Instantly share code, notes, and snippets.

@rcarrata
Created February 2, 2021 11:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rcarrata/a93598e8ddda971c532ee118255f08f8 to your computer and use it in GitHub Desktop.
Save rcarrata/a93598e8ddda971c532ee118255f08f8 to your computer and use it in GitHub Desktop.
gotlsscan_install.sh
#!/bin/bash
# Install Golang
wget https://dl.google.com/go/go1.15.2.linux-amd64.tar.gz
tar -xvf go1.15.2.linux-amd64.tar.gz
mv go /usr/local
export GOROOT=/usr/local/go
export GOPATH=$HOME
export PATH=$GOPATH/bin:$GOROOT/bin:$PATH
go version
# Download the gotlsscan and build the util
git clone https://github.com/jbardin/gotlsscan.git
cd gotlsscan/
go build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment