Created
May 21, 2017 22:24
-
-
Save kingtuna/2b1f031598ca2a067877f69bfcb55b1e to your computer and use it in GitHub Desktop.
install zgrab on ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd | |
mkdir work | |
cd work | |
git clone https://github.com/zmap/zmap.git | |
apt-get install build-essential cmake libgmp3-dev gengetopt libpcap-dev flex byacc libjson-c-dev pkg-config libunistring-dev | |
cd zmap | |
cmake . | |
make -j4 | |
make install | |
cd | |
wget https://storage.googleapis.com/golang/go1.8.1.linux-amd64.tar.gz | |
tar -C /usr/local -xzf go1.5.3.linux-amd64.tar.gz | |
export PATH=$PATH:/usr/local/go/bin | |
go version | |
export GOPATH=/root/work | |
go get github.com/zmap/zgrab | |
go build github.com/zmap/zgrab |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment