Home Cross Site Scripting (XSS) in ASP .NET Core
Post
Cancel

Cross Site Scripting (XSS) in ASP .NET Core

Cross Site Scripting (XSS) is an attack where attackers inject code into a website which is then executed. XSS is on place seven of the OWASP Top 10 list of 2017 but could be easily avoided. In this post, I will talk about the concepts of cross site scripting and how you can protect your application against these attacks.

What is Cross Site Scripting

Cross site scripting is the injection of malicious code in a web application, usually, Javascript but could also be CSS or HTML. When attackers manage to inject code into your web application, this code often gets also saved in a database. This means every user could be affected by this. For example, if an attacker manages to inject Javascript into the product name on Amazon. Every user who opens the infected product would load the malicious code.

Consequences of XSS Attacks

There are many possible consequences for your users if your website got attacked by cross site scripting:

  • Attackers could read your cookies and therefore gain access to your private accounts like social media or bank
  • Users may be redirected to malicious sites
  • Attackers could modify the layout of the website to lure users into unintentional actions
  • Users could be annoyed which will lead to damage to your reputation and probably a loss of revenue
  • Often used in combination with other attacks like cross site request forgery (CSRF)

Best Practices against Cross Site Scripting Attacks

Preventing XSS attacks is pretty simple if you follow these best practices:

  • Validate every user input, either reject or sanitize unknown character, for example, < or > which can be used to create
  • Test every input from an external source
  • Use HttpOnly for cookies so it is not readable by Javascript (therefore an attacker can’t use Javascript to read your cookies)
  • Use markdown instead of HTML editors

Cross Site Scripting in ASP .NET Core

ASP .NET Core Is already pretty safe out of the box due to automatically encoding HTML, for example < gets encoded into &lt. Let’s have a look at two examples where XSS attacks can happen and how to prevent them. You can find the code for the demo on GitHub.

ASP .NET Core 3.1 Demo

XSS can occur when you display text which a user entered. ASP .NET Core automatically encodes text when you use @Model, but displays the code as it if if you use @Html.Raw.

Preventing XSS Attacks in forms

The following code creates a form where the user can enter his user name. The input is displayed once in a safe way and once in an unsafe way.

When a user enters his user name everything is fine. But when an attacker enters Javascript, the Javascript will be executed when the text is rendered inside the unsafe output

tag. When you enter the following code as your name:

and click submit, an alert windows will be displayed.

The injected code got executed causing Cross Site Scripting

The injected code got executed

When you click on OK, the text will be rendered into the safe output line and nothing will be displayed in the unsafe output line because the browser interprets the Javascript.

The Javascript is displayed as text in the safe output line, no Cross Site Scripting possible

The Javascript is displayed as text in the safe output line

Preventing XSS Attacks in Query Parameters

Another way to inject code is through query parameters. If your application ready query parameters but doesn’t sanitize them, Javascript in it will be executed. The following code contains two forms. When you click on the button a query parameter will be read and printed to an alert box.

The first submit button will execute Javascript whereas the second one uses the JavaScriptEncode to encode the text first. To simulate an attack replace the value of the UserId with the following code and click enter:

Click the submit button of the unsafe form and you will see two Javascript alerts. The first one saying “Saving user name for account with id: ” and then a second one saying “You got attacked”.

The Javascript got executed Cross Site Scripting

The Javascript got executed

When you click the submit button of the safe form, you will see the Javascript as text.

The Javascript is displayed as text and not executed and no Cross Site Scripting

The Javascript is displayed as text and not executed

In reality, an attacker wouldn’t display an alert box but try to access your cookies or redirect you to a malicious website.

Conclusion

This post showed what cross site scripting attacks are and how they can be executed. ASP .NET Core makes it very easy to prevent these attacks and to offer a great user experience to your users.

You can find the code for the demo on GitHub.

This post is licensed under CC BY 4.0 by the author.

Cross Site Request Forgery (CSRF) in ASP .NET Core

Azure Pipelines Task Library Encoding Problem

Comments powered by Disqus.