Crosssite
Crosssite is a term used in web security to describe phenomena that occur when data, behavior, or requests cross from one site or domain to another. It is used to describe issues arising from interactions across sites, including how browsers enforce security boundaries like the same-origin policy and how attackers can exploit trust relationships between sites. The term is most often encountered in discussions of vulnerabilities such as cross-site scripting and cross-site request forgery.
Cross-site scripting (XSS) is a class of vulnerabilities that allow an attacker to inject and execute malicious
Cross-site request forgery (CSRF) is a different class, where an attacker entices a user to perform an
Mitigation of crosssite risks involves defense in depth: input validation and output encoding, the use of a
See also: cross-site scripting, content security policy, same-origin policy, cross-site request forgery.