1 / 28

XSS Vulnerabilities

XSS Vulnerabilities. Srikar Nadipally. Outline. Finding and Exploiting XSS Vulnerabilities Standard Reflected XSS Stored XSS DOM based XSS Prevention of XSS attack Reflect Stored DOM. Standard. Use standard proof of concept “><script> alert(document.cookie )</script>.

nizana
Download Presentation

XSS Vulnerabilities

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. XSS Vulnerabilities SrikarNadipally

  2. Outline • Finding and Exploiting XSS Vulnerabilities • Standard • Reflected XSS • Stored XSS • DOM based XSS • Prevention of XSS attack • Reflect • Stored • DOM

  3. Standard • Use standard proof of concept • “><script>alert(document.cookie)</script>

  4. Detecting Reflected XSS • Systematic approach of finding reflected attack • Find all the entry points of the user input • Submit a benign alphabetical string in each entry point • Identify all the locations where the string is reflected in the applications response • For each reflection identify the syntactic context in which string appears • Submit modified data tailored to the reflection syntactic context, attempting to introduce the arbitrary script in to response. • If reflected data is blocked, try to understand and circumvent the application defensive filter

  5. Example 1 Tag attribute value • Return page contains the code <input type=“text” name=“address1” value=“myxssscript”> • Ways to craft XSS exploit • “><Script>alert(1)</script> • “ onfoucus=“alert(1)

  6. Example 2 Java Script String If return page code is <script> var a=‘myxsstest’; varb =123; </script> Ways to craft XSS exploit ‘; alert(1); varfoo=‘

  7. Example 3 Atrribute Containing URL Returned page code <a href=“myxssscript”>Click here…</a> Ways to craft XSS exploit • javascript:alert(1) • #”onclick=“javascript:alert(1)

  8. Stored XSS • Stored XSS vulnerability identification is quite similar to that of reflected XSS – submitting a unique string in every entry point within the application. • Once you identify every instance in which user controllable data is stored by the application and later displayed back to the browser, same process is followed as that of reflected XSS – determining what input to be submitted to embed valid JavaScript within the surrounding HTML and then besiege the filters that intervene with your attack payload process.

  9. Techniques to test for stored XSS • Testing for XSS in Web Mail applications • Send all kinds of unusual HTML content within emails to test for bypasses in input filters. • Restricting to standard email client will not give you enough control over the raw message content or the client may itself sanitize or clean up your malformed syntax. • Using UNIX sendmail command a raw email can be created in a text editor and send it. Sendmail –t test@example.org < email.txt

  10. Example • Raw email file MIME-Version: 1.0 From: test@example.org Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: XSS test <html> <body> <imgsrc=``onerror=alert(1)> </body> </html>

  11. Techniques to Detect stored XSS • Testing for XSS in Uploaded Files • Hybrid File attacks – • “hybrid files” - two different formats • Example: GIFAR (GIF + JAR) • Uploaded file attack using GIFAR • The attack using GIFAR files can be prevented in current versions of Java browser plug-in by validating whether JAR files being loaded actually content hybrid content.

  12. Detecting DOM-based XSS • Manually walk through the application with your browser and modify each URL parameter to contain a standard test string. “<script>alert(1)</script> “;alert(1)// ‘-alert(1)-’ • Displaying each returned page in the browser causes all client side scripts to execute referencing the modified URL parameter. • If you see a dialog box containing cookies, you will have found a vulnerability.

  13. Detecting DOM-based XSS • Effective approach: • Review all client-side JavaScript for any use of DOM properties that may lead to a vulnerability. • DOM-tracer is a tool that helps you to automate this process

  14. Preventing XSS attacks • Due to the different root causes different defense mechanisms needs to be applied for reflected and stored XSS on one hand and DOM-based on the other. • Reflected and Stored XSS • Identify every instance within the application where user-controllable data is being copied into responses including data that is copied from immediate request and also any stored data that is originated from any user at any prior time, including via out-of-band channels. • After identification, follow a threefold approach to prevent any actual vulnerabilities from arising.

  15. …Continued • Threefold approach- • Validate input • Validate output (Encode the output) • Eliminate dangerous insertion points • Validate input: The application should perform context-dependent validation of data when application receives user-supplied data that may copy into one of its responses at any future point. • Potential features to validate – data is not too long, contains only a certain permitted character set, matches a particular regular expression. • Different Validation rules should also be applied – names, email id’s, account numbers etc.

  16. …Continued • Validate Output • Data should be HTML-encoded to sanitize potentially malicious characters. • HTML encoding involves replacing literal characters with their corresponding HTML entities. • HTML encodings of the primary problematic characters are as follows – • “ — &quot; • ‘ — &apos; • & — &amp; • < — &lt; • > — &gt;

  17. …Continued • Eliminate dangerous insertion points • Inserting user-controllable data directly into existing script code should be avoided wherever possible. This applies to the code within <script> tags, and also code within event handlers. • Allowing limited HTML

  18. …Continued • Preventing DOM-based XSS • Application should avoid using client-side scripts to process DOM data and insert it into the page. • DOM-based XSS flaws can be prevented through two types of defenses- • Validate input • Validate output • Validate input: • Attack can be prevented by validating the data about to be inserted into the document containing only alphanumeric characters and white space.

  19. …Continued • Example: <script> var a = document.URL; a = a.substring(a.indexOf(“message=”) + 8, a.length); a = unescape(a); varregex=/^([A-Za-z0-9+\s])*$/; if (regex.test(a)) document .write(a); </script>

  20. …Continued • Server-side validation can also be employed to detect requests that may contain malicious exploits by verifying the following: • The query string contains a single parameter. • The parameter’s name is message (case-sensitive check). • The parameter’s value contains only alphanumeric content

  21. …Continued • Validate output: • Applications can perform HTML encoding of user-controllable DOM data before it is inserted into the document. • HTML encoding can be implemented in client-side Javascript with a function like the following: function sanitize(str) { var d = document.createElement(‘div’); d.appendChild(document.createTextNode(str)); return d.innerHTML; }

  22. Request forgery • Also known as “Session riding” is related to session hijacking attacks, in which an attacker captures a user’s session token and thereby uses that application as that user. • Request Forgery vulnerabilities comes in two flavors: • On-site Request Forgery (OSRF) • Cross-Site Request Forgery (CSRF)

  23. OSRF • Attack for exploiting stored XSS vulnerabilities. • OSRF vulnerabilities can exist even in situations where XSS is not possible. • Consider a message board application that lets users submit items that are viewed by other users. Messages are submitted using a request like the following: POST /submit.php Host: wahh-app.com Content-Length: 34 type=question&name=daf&message=foo

  24. …Continued • This request results in the following being added to the messages page: <tr> <td><imgsrc=”/images/question.gif”></td> <td>daf</td> <td>foo</td> </tr>

  25. CSRF • Attacker creates the innocuous-looking website causes the user’s browser to submit a request directly to the vulnerable application to perform some unintended action that is beneficial to the attacker. • CSRF attacks are “one-way” only. • Consider an application in which administrators can create new user accounts using requests like the following: POST /auth/390/NewUserStep2.ashx HTTP/1.1 Host: mdsec.net Cookie: SessionId=8299BE6B260193DA076383A2385B07B9 Content-Type: application/x-www-form-urlencoded Content-Length: 83 realname=daf&username=daf&userrole=admin&password=letmein1& confirmpassword=letmein1

  26. …Continued • This request has three key features that make it vulnerable to CSRF attacks: • The request performs a privileged action. In the example shown, the request creates a new user with administrative privileges. • The application relies solely on HTTP cookies for tracking sessions. No session-related tokens are transmitted elsewhere within the request. • The attacker can determine all the parameters required to perform the action. Aside from the session token in the cookie, no unpredictable values need to be included in the request

  27. …Continued • Attacker can construct a web page that makes a cross-domain request to the vulnerable application containing everything needed to perform the privileged action. • Example of such attack: <html> <body> <form action=”https://mdsec.net/auth/390/NewUserStep2.ashx” method=”POST”> <input type=”hidden” name=”realname” value=”daf”> <input type=”hidden” name=”username” value=”daf”> <input type=”hidden” name=”userrole” value=”admin”> <input type=”hidden” name=”password” value=”letmein1”> <input type=”hidden” name=”confirmpassword” value=”letmein1”> </form> <script> document.forms[0].submit(); </script> </body> </html>

  28. Questions

More Related