Home > Ask the Software Quality Experts > Application Security Questions & Answers > What is XPath Injection?
Ask The Software Quality Expert: Questions & Answers
EMAIL THIS

What is XPath Injection?

Alex Smolen EXPERT RESPONSE FROM: Alex Smolen

Pose a Question
Other Software Quality Categories
Meet all Software Quality Experts
Become an Expert for this site


Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   


>
QUESTION POSED ON: 11 January 2006
I'm hearing more about XPath Injection these days. What is it?

>
EXPERT RESPONSE
XPath Injection is a new kind of security vulnerability. It is associated with the XPath specification (XML Path Language) and is similar to back-end interpreter injection vulnerabilities (such as SQL Injection and LDAP Injection). An understanding of XPath is needed to understand how XPath Injection works.

XPath is a language used by standards such as XSLT and XQuery to reference specific parts of an XML document. To accomplish its goal, XPath has a number of standard operators to describe XML constructs. By applying logic based on these operators, users of XPath can logically select specific values from a document and perform basic manipulations.

When XPath is used in such a way that an unauthorized user can inject arbitrary data into an XPath expression, then there is a potential for exploitation. Let's look at the following XPath scenario:

XML Document
<user>
   <name>
          John Doe
   </name>
   <password>
          topsecret
   </password>
   <account_number>
          1264436532
   </account_number>
</user>
<user>
  …
</user>
XPath String
//user[name='user name' and password='password']/account_number
Assuming that user name and password come from a potentially malicious user, an Xpath injection could allow someone to submit the following data:

user name:
' OR '1'='1
password:
' OR '1'='1

This would cause the following XPath statement:
//user[name=''  OR '1'='1' and password=''  OR '1'='1']/account_number
This statement would cause the first account number to be returned, without requiring the user to know the user name or password. Obviously, this technique could be used to return any user with a known username's account number. A more devastating XPath injection is possible if an attacker can access different parts of an XML document. In this case, an attacker can access a social security number, or a credit card number rather than an account number. The details of this attack are explained in the "Blind XPath Injections" white paper available at http://www.watchfire.com/resources/blind-xpath-injection.pdf.

To prevent XPath injection and other types of injection attacks, it is important to consistently and properly validate user input so that it conforms to expected criteria.


Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   


RELATED CONTENT
Software security testing and techniques
Recipe for successful Web application security testing
Software quality needs to be a continuous process
Cloud computing's effect on application security
Web Security Testing Cookbook sample recipe
Ajax website security: Don't trust the client
PCI compliance falls short of assuring website security
Be aware of SOA application security issues
Browser security a concern for website development
Static analysis at the end of the SDLC doesn't work
Website security improved, but more can be done

Application Security
Top tools for testing Web application security
How to prevent HTTP response splitting
PCI DSS compliance: WAF, code review or both?
Application security careers have bright future
How to prevent anti-DNS pinning attacks
Open source application security testing tools
Java application security features and measures
Web application security testing basics
Password recovery with .NET 2.O using C#
Free load and performance testing tools

RELATED RESOURCES
2020software.com, trial software downloads for accounting software, ERP software, CRM software and business software systems
Search Bitpipe.com for the latest white papers and business webcasts
Whatis.com, the online computer dictionary



Search and Browse the Expert Answer Center
Search and browse more than 25,000 question and answer pairs from more than 250 TechTarget industry experts.
Browse our Expert Advice



Software Quality - Software Maintenance, Software Requirements, Software Standards
About Us  |  Contact Us  |  For Advertisers  |  For Business Partners  |  Site Index  |  RSS
SEARCH 
TechTarget provides enterprise IT professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective IT purchase decisions and managing their organizations' IT projects - with its network of technology-specific Web sites, events and magazines.

TechTarget Corporate Web Site  |  Media Kits  |  Reprints  |  Site Map




All Rights Reserved, Copyright 2006 - 2008, TechTarget | Read our Privacy Policy
  TechTarget - The IT Media ROI Experts