What’s Cross-Site Scripting (XSS)?
occurs when a web application does not properly sanitize or validate user-supplied input and allows the injection of malicious scripts into web pages viewed by other users
What do XSS attacks enable attackers to do?
execute malicious scripts in the context of the victim’s browser, leading to potential theft of sensitive information, session hijacking, or unauthorized actions on the web application
What type of applications does XSS attack target for what purpoes?
What are the two types of XSS attacks?
What are the XSS attack techniques?
What are the potential consequences of XSS attacks?
What is the prevention and mitigation of XSS attacks?
What’s reflected input?
What’s the defense against XSS?
What’s Cross-site tracing (XST)?
leverages the HTTP TRACE or TRACK methods and could be used to steal a user’s cookies via cross-site scripting (XSS)
Why isn’t creating filter that watches for the ˂SCRIPT˃ tag sufficent protection against XSS?
attackers may use XSS filter evasion techniques against this approach
What HTML tag is often used as part of a cross-site scripting (XSS) attack?
[SCRIPT] tag is used to indicate the beginning of an executable client-side script and is used in reflected input to create a cross-site scripting attack