Install Golang in Kali and Set GOPATH
mkdir ~/.go
echo "GOPATH=$HOME/.go" >> ~/.bashrc
echo "export GOPATH" >> ~/.bashrc
echo "PATH=\$PATH:\$GOPATH/bin # Add GOPATH/bin to PATH for scripting" >> ~/.bashrc
source ~/.bashrc
mkdir ~/.go
echo "GOPATH=$HOME/.go" >> ~/.zshrc
echo "export GOPATH" >> ~/.zshrc
echo "PATH=\$PATH:\$GOPATH/bin # Add GOPATH/bin to PATH for scripting" >> ~/.zshrc
source ~/.zshrc
# Set up Go environment in fish shell
set -x GOPATH $HOME/.go
set -x PATH $PATH $GOPATH/bin
Github ERROR Solution
git config --global --unset http.proxy
git config --global --unset https.proxy
HTTPX
grep domains from httpx output file
grep -oP 'https?://\K[^/ ]+'
Favourite Colors:
Text - #00E5A8 or #BBFFEE
background - #001900
Last updated