跨网站指令码(Crosssite scripting,通常简称为XSS)介绍

 这是一种很危险的攻击方式,原因在于网路程序的自身漏洞,采取代码注入。

XSS则是利用网站的安全漏洞,将程序码注入网站中,藉以绕过Same origin policy限制,以取得资讯。Cross-site scripting的缩写是CSS,但因为CSS已经被广泛指层叠样式表(Cascading Style Sheets),所以将第一个Cross以X缩写。(http://zh.wikipedia.org/wiki/XSS

Cross-site scripting (XSS) is a type of computer security vulnerability typically found in web applications which allow code injection by malicious web users into the web pages viewed by other users. Examples of such code include HTML code and client-side scripts. An exploited cross-site scripting vulnerability can be used by attackers to bypass access controls such as the same origin policy. Vulnerabilities of this kind have been exploited to craft powerful phishing attacks and browser exploits. Cross-site scripting was originally referred to as CSS, although this usage has been largely discontinued (see Terminology below).(http://en.wikipedia.org/wiki/Xss

前一此提到的google的安全问题就是xss攻击。

http://lists.grok.org.uk/pipermail/full-disclosure/2006-June/047045.html

原文地址:https://www.cnblogs.com/ainima/p/6331488.html