package org.owasp.webgoat.lessons; import java.sql.Connection; import java.sql.ResultSet; import java.sql.ResultSetMetaData; import java.sql.SQLException; import java.sql.Statement; import java.util.ArrayList; import java.util.List; import org.apache.ecs.Element; import org.apache.ecs.ElementContainer; import org.apache.ecs.html.A; import org.apache.ecs.html.BR; import org.apache.ecs.html.IMG; import org.apache.ecs.html.Input; import org.apache.ecs.html.P; import org.apache.ecs.html.PRE; import org.owasp.webgoat.session.DatabaseUtilities; import org.owasp.webgoat.session.ECSFactory; import org.owasp.webgoat.session.WebSession; /*************************************************************************************************** * * * This file is part of WebGoat, an Open Web Application Security Project utility. For details, * please see http://www.owasp.org/ * * Copyright (c) 2002 - 20014 Bruce Mayhew * * This program is free software; you can redistribute it and/or modify it under the terms of the * GNU General Public License as published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License along with this program; if * not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. * * Getting Source ============== * * Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software * projects. * * For details, please see http://webgoat.github.io * * @author Chuck Willis <a href="http://www.securityfoundry.com">Chuck's web * site</a> (this lesson is based on the String SQL Injection lesson) * @created October 29, 2009 */ public class SqlAddData extends SequentialLessonAdapter { public final static A MANDIANT_LOGO = new A().setHref("http://www.mandiant.com").addElement(new IMG("images/logos/mandiant.png").setAlt("MANDIANT").setBorder(0).setHspace(0).setVspace(0)); private final static String USERID = "userid"; private String userid; /** * Description of the Method * * @param s * Description of the Parameter * @return Description of the Return Value */ protected Element createContent(WebSession s) { ElementContainer ec = new ElementContainer(); try { Connection connection = DatabaseUtilities.getConnection(s); ec.addElement(makeAccountLine(s)); String query = "SELECT * FROM salaries WHERE userid = '" + userid + "'"; //ec.addElement(new PRE(query)); try { // get number of rows in table before executing injectable query Statement target_statement = connection.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY); ResultSet target_results = target_statement.executeQuery("SELECT * from salaries"); target_results.last(); int number_of_results_before = target_results.getRow(); System.out.println("Before running query, table salaries has " + number_of_results_before + " records."); // execute query Statement statement = connection.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY); statement.execute(query); ResultSet results = statement.getResultSet(); if ((results != null) && (results.first() == true)) { ResultSetMetaData resultsMetaData = results.getMetaData(); ec.addElement(DatabaseUtilities.writeTable(results, resultsMetaData)); results.last(); } else { ec.addElement(getLabelManager().get("NoResultsMatched")); } // see if the number of rows in the table has changed target_results = target_statement.executeQuery("SELECT * from salaries"); target_results.last(); int number_of_results_after = target_results.getRow(); System.out.println("After running query, table salaries has " + number_of_results_after + " records."); if(number_of_results_after != number_of_results_before) { makeSuccess(s); } } catch (SQLException sqle) { ec.addElement(new P().addElement(sqle.getMessage())); sqle.printStackTrace(); } } catch (Exception e) { s.setMessage(getLabelManager().get("ErrorGenerating") + this.getClass().getName()); e.printStackTrace(); } return (ec); } protected Element makeAccountLine(WebSession s) { ElementContainer ec = new ElementContainer(); ec.addElement(new P().addElement(getLabelManager().get("EnterUserid"))); userid = s.getParser().getRawParameter(USERID, "jsmith"); Input input = new Input(Input.TEXT, USERID, userid.toString()); ec.addElement(input); Element b = ECSFactory.makeButton(getLabelManager().get("Go!")); ec.addElement(b); return ec; } /** * Gets the category attribute of the SqNumericInjection object * * @return The category value */ protected Category getDefaultCategory() { return Category.INJECTION; } /** * Gets the credits attribute of the AbstractLesson object * * @return The credits value */ public Element getCredits() { return super.getCustomCredits("Created by Chuck Willis ", MANDIANT_LOGO); } /** * Gets the hints attribute of the DatabaseFieldScreen object * * @return The hints value */ protected List<String> getHints(WebSession s) { List<String> hints = new ArrayList<String>(); hints.add(getLabelManager().get("SqlAddDataHint1")); hints.add(getLabelManager().get("SqlAddDataHint2")); hints.add(getLabelManager().get("SqlAddDataHint3")); hints.add(getLabelManager().get("SqlAddDataHint4")); hints.add(getLabelManager().get("SqlAddDataHint5")); return hints; } private final static Integer DEFAULT_RANKING = new Integer(78); protected Integer getDefaultRanking() { return DEFAULT_RANKING; } /** * Gets the title attribute of the DatabaseFieldScreen object * * @return The title value */ public String getTitle() { return ("Add Data with SQL Injection"); } /** * Gets the instructions attribute of the SqlInjection object * * @return The instructions value */ public String getInstructions(WebSession s) { String instructions = "The form below allows a user to view salaries associated with a userid " + "(from the table named <b>salaries</b>). This form" + " is vulnerable to String SQL Injection. In order to pass this lesson, use SQL Injection to " + "add a record to the table."; return (instructions); } /** * Constructor for the DatabaseFieldScreen object * * @param s * Description of the Parameter */ public void handleRequest(WebSession s) { try { super.handleRequest(s); } catch (Exception e) { // System.out.println("Exception caught: " + e); e.printStackTrace(System.out); } } }