Document Object Model Based Cross Site Scripting

By
Manieendar Mohan
Published on
29 Jun 2018
2 min read
DOM XSS

Cross-Site Scripting (XSS) is a client-side code injection attack where an attacker can execute malicious scripts into a website or web application. Document Object Model based Cross Site Scripting is a type of Cross Site Scripting attack. This attack is encountered when a web application’s client-side scripts write user-provided information to the Document Object Model. The data is read using the Document Object Model. It is then outputted to the browser. If the information is incorrectly handled, an attacker can inject a payload as part of the Document Object Model. The payload is executed when the data is read as a response from the Document Object Model.

If a web application is found that allows Document Object Model-Based Cross Site Scripting, the application’s Document Object Model might contain several vulnerable files that the attacker can manipulate in order to generate the Cross Site Scripting conditions.

Example

The following code is used to creating a form to let the user choose his/her country.

        
        
        Select your country:
        
        <select><script>
        
        document.write("<OPTION value=1>"+document.location.href.substring(document.location.href.indexOf("default=")+8)+"</OPTION>");
        
        document.write("<OPTION value=2>Armenia</OPTION>");
        
        </script></select>
        

    

The page is requested with the below URL:

https://www.example.beaglesecurity.com/page.html?default=France

A DOM-Based XSS can be against this page can be perforated by an attacker by sending the following URL to a victim:-

        https://www.example.beaglesecurity.com/page.html?default=<script>alert(document.cookie)</script>

    

The above URL will alert the cookie.

The Javascript code present in a page doesn’t expect the default parameter to contain HTML markup. The script merely echoes the HTML tag into the page (DOM) at runtime. The browser then renders the page and executes the attacker’s script.

Impact

Using this vulnerability, an attacker can:-

  • execute malicious code to the user.
  • make the web application unstable.
  • execute remote commands.

Mitigation / Precaution

Beagle recommends the following fixes:-

  • Avoid client-side sensitive actions like rewriting or redirection using client-side data.
  • Apply a proper authentication on the client side code.
  • Implement an intrusion prevention systems in the server.
  • Avoid including untrusted data in this context.
  • Escape the JavaScript code before inserting untrusted data into the HTML Attribute Subcontext.
  • Implement URL escape before Inserting Untrusted Data into URL Attribute Subcontext.
Automated human-like penetration testing for your web apps & APIs
Teams using Beagle Security are set up in minutes, embrace release-based CI/CD security testing and save up to 65% with timely remediation of vulnerabilities. Sign up for a free account to see what it can do for you.

Written by
Manieendar Mohan
Manieendar Mohan
Cyber Security Lead Engineer
Find website security issues in a flash
Improve your website's security posture with proactive vulnerability detection.
Free website security assessment
Experience the power of automated penetration testing & contextual reporting.