WebGoat教程学习--XPATH 注入(XPATH-Injection)
Posted 励志SQA女
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WebGoat教程学习--XPATH 注入(XPATH-Injection)相关的知识,希望对你有一定的参考价值。
1、除了SQL注入外还要考虑XPTH的过滤。
File d = new File(dir); XPathFactory factory = XPathFactory.newInstance(); XPath xPath = factory.newXPath(); InputSource inputSource = new InputSource(new FileInputStream(d)); String expression = "/employees/employee[loginID/text()=‘" + username + "‘ and passwd/text()=‘" + password + "‘]"; nodes = (NodeList) xPath.evaluate(expression, inputSource, XPathConstants.NODESET);
在用户名处注入 Smith‘ or 1=1 or ‘a‘=‘a,这将会显示你登录系统的第一个用户。密码是必须的字段,可以任意输入。
以上是关于WebGoat教程学习--XPATH 注入(XPATH-Injection)的主要内容,如果未能解决你的问题,请参考以下文章
WebGoat教程学习--日志欺骗(Log Spoofing)