Difference between revisions of "Cross-site scripting"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(See also)
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
'''Cross-site scripting''' ('''XSS''') is a type of computer security vulnerability typically found in [[Web application|web applications]].  
+
'''Cross-site scripting''' ('''XSS''') is a type of [[computer security]] [[vulnerability]] typically found in [[Web application|web applications]].  
  
 
== Description ==
 
== Description ==
Line 18: Line 18:
 
* [[Client-side scripting]]
 
* [[Client-side scripting]]
 
* [[Computer security]]
 
* [[Computer security]]
 +
* [[Cross-origin resource sharing]]
 +
* [[HTTP cookie]]
 
* [[Same-origin policy]]
 
* [[Same-origin policy]]
 
* [[Web security]]
 
* [[Web security]]
Line 24: Line 26:
  
 
* [https://en.wikipedia.org/wiki/Cross-site_scripting Cross-site scripting] @ Wikipedia
 
* [https://en.wikipedia.org/wiki/Cross-site_scripting Cross-site scripting] @ Wikipedia
 +
 +
[[Category:Computer science]]
 +
[[Category:Internet security]]
 +
[[Category:Security]]
 +
[[Category:Web design and development]]
 +
[[Category:Web security]]

Latest revision as of 19:04, 24 April 2016

Cross-site scripting (XSS) is a type of computer security vulnerability typically found in web applications.

Description

XSS enables attackers to inject client-side script into web pages viewed by other users.

Same-origin policy

A cross-site scripting vulnerability may be used by attackers to bypass access controls such as the same-origin policy.

Effects

The effect of XSS may range from a petty nuisance to a significant security risk, depending on the sensitivity of the data handled by the vulnerable site and the nature of any security mitigation implemented by the site's owner.

See also

External Links