Skip to content

Commit

Permalink
fix issue xss payload
Browse files Browse the repository at this point in the history
  • Loading branch information
kh4sh3i committed Aug 15, 2022
1 parent 3af1f3a commit a5e1329
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions smartrecon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -196,9 +196,10 @@ vulnscanner(){


echo -e "${green}find Xss vulnerability ...${reset}"
python3 $paramspider -d $domain -s TRUE -e woff,ttf,eot,css,js,png,svg,jpg,jpeg,pdf | qsreplace -a | sed '1,4d' | httpx -silent | dalfox pipe -S | tee ./$domain/$foldername/xss_raw_result.txt
python3 $paramspider -d $domain -s TRUE -e jpg,jpeg,gif,css,js,tif,tiff,png,ttf,woff,woff2,ico,pdf,svg,txt,eot -q -o ./$domain/$foldername/xss_result.txt
cat ./$domain/$foldername/xss_result.txt | qsreplace -a | httpx -silent -threads 500 -mc 200 | dalfox pipe -S | tee ./$domain/$foldername/xss_raw_result.txt
cat ./$domain/$foldername/xss_raw_result.txt | cut -d ' ' -f2 | tee ./$domain/$foldername/xss_result.txt; notify -bulk -data ./$domain/$foldername/xss_result.txt -silent
# cat test.txt | gf xss | sed ‘s/=.*/=/’ | sed ‘s/URL: //’ | tee testxss.txt ; dalfox file testxss.txt -b yours-xss-hunter-domain(e.g yours.xss.ht)


# echo -e "${green}find sql injection with wayback ...${reset}"
# python3 paramspider.py -d $domain -s TRUE -e woff,ttf,eot,css,js,png,svg,jpg | deduplicate --sort | httpx -silent | sqlmap
Expand Down

0 comments on commit a5e1329

Please sign in to comment.