Javascript Recon for Bug Bounty & Pentesting

2 days ago 17
BOOK THIS SPACE FOR AD
ARTICLE AD

💾Install Pre-requisites (GOlang)

wget -4 https://go.dev/dl/go1.24.1.linux-amd64.tar.gz
tar -C /usr/local/ -xzf go1.24.1.linux-amd64.tar.gz
rm go1.24.1.linux-amd64.tar.gz

Open your configuration file using any text editor you like nano , vim ,etc…

#for kali linux
nano ~/.zshrc

#for ubuntu
nano ~/.bashrc

Add the following lines at the end of the .zshrc or .bashrc file

(You can change the GOPATH accordingly based on your setup)

export GOPATH=/root/go-workspace
export GOROOT=/usr/local/go
PATH=$PATH:$GOROOT/bin/:$GOPATH/bin

Save the file and then update it using

#kali linux
source ~/.zshrc

#ubuntu
source ~/.bashrc

📥 Installation

git clone…
Read Entire Article