Looking for xss vulnerabilities on websites

Lord777

Professional
Messages
2,583
Reputation
15
Reaction score
1,296
Points
113
Hello everyone.
Today our conversation will focus on one very cool tool called xsssniper. It is designed to detect and exploit Cross-Site Scripting (XSS) vulnerabilities on attacked websites.

Installation:
Code:
▪️git clone https://github.com/gbrindisi/xsssniper
▪️cd xsssniper

Usage:
▪️python xsssniper.py -u "http://target.com/index.php?page=test" - scan URL with GET parameters
▪️python xsssniper.py -u "http://blackhat_lab.com/index.php" --post --data = POST_DATA - crawl URL with POST parameters
▪️python xsssniper.py -u "http://target.com" --crawl - full crawl of the entire site
Read more on GitHub (https://github.com/gbrindisi/xsssniper).

All information is provided for informational purposes only. We are not responsible for your actions.
 
Top