This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org

Difference between revisions of "XPATH Injection"

From OWASP
Jump to: navigation, search
(Examples)
(Examples)
Line 35: Line 35:
 
VB:
 
VB:
 
Dim FindUserXPath as String
 
Dim FindUserXPath as String
FindUserXPath = "//Employee[UserName='" & Request("Username") & "' && Password='" & Request("Password") & "'"
+
FindUserXPath = "//Employee[UserName='" & Request("Username") & "' And Password='" & Request("Password") & "'"
  
 
C#:
 
C#:
 
String FindUserXPath;
 
String FindUserXPath;
FindUserXPath = "//Employee[UserName='" + Request("Username") + "' && Password='" + Request("Password") + "'";
+
FindUserXPath = "//Employee[UserName='" + Request("Username") + "' And Password='" + Request("Password") + "'";
 
</pre>
 
</pre>
  

Revision as of 01:47, 2 September 2006

This is an Attack. To view all attacks, please see the Attack Category page.


Description

Similar to SQL Injection, XML Injection attacks occur when a web site uses user supplied information to query XML data. By sending intentionally malformed information into the web site, an attacker can find out how the XML data is structured or access data that they may not normally have access to. They may even be able to elevate their privileges on the web site if the xml data is being used for authentication (such as an xml based user file).

Querying XML is done with XPath, a type of simple descriptive statement that allows the xml query to locate a piece of information. Like SQL you can specify certain attributes to find and patterns to match. When using XML for a web site it is common to accept some form of input on the query string to identify the content to locate and display on the page. This input must be sanitized to verify that it doesn't mess up the XPath query and return the wrong data.

Examples

We'll use this xml snippet for the examples.

<?xml version="1.0" encoding="utf-8"?>
<Employees>
   <Employee ID="1">
      <FirstName>Arnold</FirstName>
      <LastName>Baker</LastName>
      <UserName>ABaker</UserName>
      <Password>SoSecret</Password>
      <Type>Admin</Type>
   </Employee>
   <Employee ID="2">
      <FirstName>Peter</FirstName>
      <LastName>Pan</LastName>
      <UserName>PPan</UserName>
      <Password>NotTelling</Password>
      <Type>User</Type>
   </Employee>
</Employees>

Suppose we have a user authentication system on a web page that used a data file of this sort to login users. Once a username and password had been supplied the software might use an XPath to lookup the user such as this:

VB:
Dim FindUserXPath as String
FindUserXPath = "//Employee[UserName='" & Request("Username") & "' And Password='" & Request("Password") & "'"

C#:
String FindUserXPath;
FindUserXPath = "//Employee[UserName='" + Request("Username") + "' And Password='" + Request("Password") + "'";

Related Threats

Related Attacks

Related Vulnerabilities

Related Countermeasures

Categories

This article is a stub. You can help OWASP by expanding it or discussing it on its Talk page.