Lesson Plan Title: Cross Site Request Forgery.
Concept / Topic To Teach:
This lesson teaches how to perform XPath (XML) Injection attacks.How the attacks works:
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.General Goal(s):
The form below allows employees to see all their personal data including their salaries. Your goal is to try to see other employees data as well.