Cross Site Scripting is a code injection attack that allows an attacker to execute malicious javascript in another users's browser. It's mainly a Client Side attack.
XSS attacks are often divided into three types:
- Persistent XSS - Where malicious strings originates from the website database.
- Reflected XSS - Where malicious strings originates from Victim request.
- DOM-Based XSS - Vulnerability is in the client side code rather than the Server side code.
0 Comments