Sinisterly
XSS Vulnerability? - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Hacking (https://sinister.ly/Forum-Hacking)
+--- Forum: Network Hacking (https://sinister.ly/Forum-Network-Hacking)
+--- Thread: XSS Vulnerability? (/Thread-XSS-Vulnerability--59637)



XSS Vulnerability? - Xyrcode - 01-12-2015

Just wondering, are almost all sites vulnerable for XSS? And where can I learn XSS?


RE: XSS Vulnerability? - Xeru - 01-12-2015

If the administrator of the website is smart enough, he will have ironed out at least the vast majority of XSS vulnerability issues.
Making sure every bit of user input being returned to the user (at all) is run through filters that prevent html tags from being passed and parsed by the browser is a very important part of running a website.

As for learning to find XSS vulnerabilities, there are multiple guides on websites about exploitation... personally I know whatever I know about it through Google and Stack Overflow when I was securing some sites I made in 2009-2011. Same goes for SQL injection.

Hope this helps in some way.


RE: XSS Vulnerability? - phyrrus9 - 01-12-2015

(01-12-2015, 02:56 AM)Xeru Wrote: If the administrator of the website is smart enough, he will have ironed out at least the vast majority of XSS vulnerability issues.
Making sure every bit of user input being returned to the user (at all) is run through filters that prevent html tags from being passed and parsed by the browser is a very important part of running a website.

As for learning to find XSS vulnerabilities, there are multiple guides on websites about exploitation... personally I know whatever I know about it through Google and Stack Overflow when I was securing some sites I made in 2009-2011. Same goes for SQL injection.

Hope this helps in some way.

"if the editor has been designed to reject all bad input, an ingenious idiot will figure out a way to get pad data past it"


RE: XSS Vulnerability? - Xeru - 01-12-2015

(01-12-2015, 03:43 AM)phyrrus9 Wrote: "if the editor has been designed to reject all bad input, an ingenious idiot will figure out a way to get pad data past it"

True, but still definitely worth protecting against the vast majority.