Forked from kingtuna/gist:2b1f031598ca2a067877f69bfcb55b1e
Created
October 23, 2018 14:34
-
-
Save welllima88/d74b607ca709f86e0870b8f95e3e1492 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