Skip to content

0. Installation Guide

six2dez edited this page Apr 17, 2021 · 6 revisions

Configuring Golang

  • reconFTW requires go1.14+ to install successfully.
    Installer provided should installs Golang in your system.

From Binary

▶ wget https://golang.org/dl/go1.15.10.linux-amd64.tar.gz
▶ tar -C /usr/local -xzf go1.15.10.linux-amd64.tar.gz

Configuring $PATH

Add the following lines in your .bashrc , .zshrc

export GOROOT=/usr/local/go
export GOPATH=$HOME/go
export PATH=$GOPATH/bin:$GOROOT/bin:$PATH

Clone reconFTW repository

▶ git clone https://github.com/six2dez/reconftw.git
▶ cd reconftw/
▶ ./install.sh

Clone this wiki locally