Merge branch 'next' of https://github.com/WebGoat/WebGoat into next

This commit is contained in:
diver-sity
2014-09-12 21:13:07 +10:00
157 changed files with 745 additions and 607 deletions

View File

@ -17,7 +17,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -33,10 +33,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Bruce Mayhew <a href="http://code.google.com/p/webgoat">WebGoat</a>
* @created March 13, 2007

View File

@ -31,7 +31,7 @@ import org.slf4j.LoggerFactory;
* This file is part of WebGoat, an Open Web Application Security Project
* utility. For details, please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -49,10 +49,10 @@ import org.slf4j.LoggerFactory;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository
* for free software projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
*
* @author Jeff Williams <a href="http://www.aspectsecurity.com">Aspect

View File

@ -16,7 +16,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -34,10 +34,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository
* for free software projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Bruce Mayhew <a href="http://code.google.com/p/webgoat">WebGoat</a>
* @created October 28, 2003

View File

@ -5,12 +5,17 @@
*/
package org.owasp.webgoat.controller;
import java.util.Collection;
import javax.servlet.ServletContext;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
import org.owasp.webgoat.session.Course;
import org.apache.commons.lang3.StringUtils;
import org.owasp.webgoat.session.WebSession;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.core.context.SecurityContextHolder;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@ -28,6 +33,9 @@ public class Start {
private static final String WELCOMED = "welcomed";
@Autowired
private ServletContext servletContext;
@RequestMapping(value = "start.mvc", method = {RequestMethod.GET, RequestMethod.POST})
public ModelAndView start(HttpServletRequest request,
@RequestParam(value = "error", required = false) String error,
@ -40,12 +48,32 @@ public class Start {
model.setViewName("redirect:/login.mvc");
return model;
}
String role = getRole();
String user = request.getUserPrincipal().getName();
model.addObject("role", role);
model.addObject("user", user);
String contactEmail = servletContext.getInitParameter("email");
model.addObject("contactEmail", contactEmail);
// if everything ok then go to webgoat UI
model.setViewName("main_new");
return model;
}
private String getRole() {
Collection<GrantedAuthority> authorities = (Collection<GrantedAuthority>) SecurityContextHolder.getContext().getAuthentication().getAuthorities();
String role = "N/A";
for (GrantedAuthority authority : authorities) {
authority.getAuthority();
role = authority.getAuthority();
role = StringUtils.lowerCase(role);
role = StringUtils.remove(role, "role_");
break;
}
return role;
}
public boolean checkWebSession(HttpSession session) {
Object o = session.getAttribute(WebSession.SESSION);
if (o == null) {

View File

@ -42,7 +42,7 @@ import org.slf4j.LoggerFactory;
* This file is part of WebGoat, an Open Web Application Security Project
* utility. For details, please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -60,10 +60,10 @@ import org.slf4j.LoggerFactory;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository
* for free software projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Bruce Mayhew <a href="http://code.google.com/p/webgoat">WebGoat</a>
* @created October 28, 2003

View File

@ -20,7 +20,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -36,10 +36,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Jeff Williams <a href="http://www.aspectsecurity.com">Aspect Security</a>
* @created October 28, 2003

View File

@ -30,7 +30,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -46,10 +46,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Sherif Koussa <a href="http://www.softwaresecured.com">Software Secured</a>
*/

View File

@ -22,7 +22,7 @@ import org.owasp.webgoat.util.WebGoatI18N;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -38,10 +38,10 @@ import org.owasp.webgoat.util.WebGoatI18N;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Bruce Mayhew <a href="http://code.google.com/p/webgoat">WebGoat</a>
* @created October 28, 2003

View File

@ -23,7 +23,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -41,10 +41,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository
* for free software projects.
*
* For details, please see http://code.google.com/p/webgoat/
* 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 heavily based on Bruce Mayhews' SQL

View File

@ -36,7 +36,7 @@ import java.util.Arrays;
* This file is part of WebGoat, an Open Web Application Security Project
* utility. For details, please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -54,10 +54,10 @@ import java.util.Arrays;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository
* for free software projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Bruce Mayhew <a href="http://code.google.com/p/webgoat">WebGoat</a>
* @created October 28, 2003

View File

@ -23,7 +23,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -41,10 +41,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository
* for free software projects.
*
* For details, please see http://code.google.com/p/webgoat/
* 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 heavily based on Bruce Mayhews' SQL

View File

@ -31,7 +31,7 @@ import org.owasp.webgoat.util.WebGoatI18N;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -47,10 +47,10 @@ import org.owasp.webgoat.util.WebGoatI18N;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Chuck Willis <a href="http://www.securityfoundry.com">Chuck's web
* site</a>

View File

@ -39,7 +39,7 @@ import org.owasp.webgoat.util.HtmlEncoder;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -55,10 +55,10 @@ import org.owasp.webgoat.util.HtmlEncoder;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Sherif Koussa <a href="http://www.softwaresecured.com">Software Secured</a>
*

View File

@ -11,7 +11,7 @@ import java.util.List;
* This file is part of WebGoat, an Open Web Application Security Project
* utility. For details, please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -29,10 +29,10 @@ import java.util.List;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository
* for free software projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Bruce Mayhew <a href="http://code.google.com/p/webgoat">WebGoat</a>
* @created October 28, 2003

View File

@ -47,7 +47,7 @@ import org.owasp.webgoat.util.ExecResults;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -63,10 +63,10 @@ import org.owasp.webgoat.util.ExecResults;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Bruce Mayhew <a href="http://code.google.com/p/webgoat">WebGoat</a>
* @created October 28, 2003

View File

@ -25,7 +25,7 @@ import org.owasp.webgoat.util.WebGoatI18N;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -41,10 +41,10 @@ import org.owasp.webgoat.util.WebGoatI18N;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Bruce Mayhew <a href="http://code.google.com/p/webgoat">WebGoat</a>
* @created October 28, 2003

View File

@ -31,7 +31,7 @@ import org.owasp.webgoat.util.HtmlEncoder;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -47,10 +47,10 @@ import org.owasp.webgoat.util.HtmlEncoder;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Ryan Knell <a href="http://www.aspectsecurity.com">Aspect Security</a>
* @created July, 23 2007

View File

@ -35,7 +35,7 @@ import org.owasp.webgoat.util.HtmlEncoder;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -51,10 +51,10 @@ import org.owasp.webgoat.util.HtmlEncoder;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
*/
public class CrossSiteScripting extends GoatHillsFinancial

View File

@ -19,7 +19,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -35,10 +35,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public class EditProfile extends DefaultLessonAction
{

View File

@ -25,7 +25,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -41,10 +41,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public class FindProfile extends DefaultLessonAction
{

View File

@ -26,7 +26,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -42,10 +42,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public class UpdateProfile extends DefaultLessonAction
{

View File

@ -20,7 +20,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -36,10 +36,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public class ViewProfile extends DefaultLessonAction
{

View File

@ -39,10 +39,10 @@ import org.owasp.webgoat.util.HtmlEncoder;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Contributed by <a href="http://www.partnet.com">PartNet.</a>
*

View File

@ -41,10 +41,10 @@ import org.owasp.webgoat.util.HtmlEncoder;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Contributed by <a href="http://www.partnet.com">PartNet.</a>
*

View File

@ -29,7 +29,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -45,10 +45,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
*/
public class DBCrossSiteScripting extends GoatHillsFinancial

View File

@ -25,7 +25,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -41,10 +41,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public class UpdateProfile extends DefaultLessonAction
{

View File

@ -28,7 +28,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -44,10 +44,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public class DBSQLInjection extends GoatHillsFinancial
{

View File

@ -25,7 +25,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -41,10 +41,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public class Login extends DefaultLessonAction
{

View File

@ -26,7 +26,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -42,10 +42,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Sherif Koussa <a href="http://www.softwaresecured.com">Software Secured</a>
* @created October 28, 2006

View File

@ -30,7 +30,7 @@ import org.owasp.webgoat.session.ParameterNotFoundException;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -46,10 +46,10 @@ import org.owasp.webgoat.session.ParameterNotFoundException;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Bruce Mayhew <a href="http://code.google.com/p/webgoat">WebGoat</a>
* @created October 28, 2003

View File

@ -26,7 +26,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -42,10 +42,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Eric Sheridan, Aspect Security <a href="http://www.aspectsecurity.com"/>
* @created October 28, 2003

View File

@ -39,7 +39,7 @@ import org.owasp.webgoat.util.HtmlEncoder;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -55,10 +55,10 @@ import org.owasp.webgoat.util.HtmlEncoder;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Jeff Williams <a href="http://www.aspectsecurity.com">Aspect Security</a>
* @created October 28, 2003

View File

@ -15,7 +15,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -31,10 +31,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Jeff Williams <a href="http://www.aspectsecurity.com">Aspect Security</a>
* @created October 28, 2003

View File

@ -24,7 +24,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -40,10 +40,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Sherif Koussa <a href="http://www.softwaresecured.com">Software Secured</a>
* @created November 02, 2006

View File

@ -27,7 +27,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -43,10 +43,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Eric Sheridan <a href="http://www.aspectsecurity.com">Aspect Security</a>
* @created December 18, 2005

View File

@ -19,7 +19,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -35,10 +35,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public abstract class DefaultLessonAction implements LessonAction
{

View File

@ -17,7 +17,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -33,10 +33,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public class DeleteProfile extends DefaultLessonAction
{

View File

@ -17,7 +17,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -33,10 +33,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public class EditProfile extends DefaultLessonAction
{

View File

@ -18,7 +18,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -34,10 +34,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public class FindProfile extends DefaultLessonAction
{

View File

@ -23,7 +23,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -39,10 +39,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public class GoatHillsFinancial extends RandomLessonAdapter
{

View File

@ -19,7 +19,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -35,10 +35,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public class ListStaff extends DefaultLessonAction
{

View File

@ -20,7 +20,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -36,10 +36,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public class Login extends DefaultLessonAction
{

View File

@ -14,7 +14,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -30,10 +30,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public class Logout extends DefaultLessonAction
{

View File

@ -10,7 +10,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -26,10 +26,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public class SearchStaff extends DefaultLessonAction
{

View File

@ -19,7 +19,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -35,10 +35,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public class UpdateProfile extends DefaultLessonAction
{

View File

@ -17,7 +17,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -33,10 +33,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public class ViewProfile extends DefaultLessonAction
{

View File

@ -31,7 +31,7 @@ import org.owasp.webgoat.util.WebGoatI18N;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -47,10 +47,10 @@ import org.owasp.webgoat.util.WebGoatI18N;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Jeff Williams <a href="http://www.aspectsecurity.com">Aspect Security</a>
* @author Bruce Mayhew <a href="http://code.google.com/p/webgoat">WebGoat</a>

View File

@ -13,7 +13,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -29,10 +29,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Reto Lippuner, Marcel Wirth
* @created April 4, 2008

View File

@ -28,7 +28,7 @@ import org.owasp.webgoat.util.WebGoatI18N;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -44,10 +44,10 @@ import org.owasp.webgoat.util.WebGoatI18N;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Jeff Williams <a href="http://www.aspectsecurity.com">Aspect Security</a>
* @created October 28, 2003

View File

@ -19,7 +19,7 @@ import org.owasp.webgoat.util.WebGoatI18N;
* This file is part of WebGoat, an Open Web Application Security Project
* utility. For details, please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -37,10 +37,10 @@ import org.owasp.webgoat.util.WebGoatI18N;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository
* for free software projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Bruce Mayhew <a href="http://code.google.com/p/webgoat">WebGoat</a>
* @created October 28, 2003

View File

@ -26,7 +26,7 @@ import sun.misc.BASE64Encoder;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -42,10 +42,10 @@ import sun.misc.BASE64Encoder;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public class HttpOnly extends LessonAdapter
{

View File

@ -18,7 +18,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -34,10 +34,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Sherif Koussa <a href="http://www.softwaresecured.com">Software Secured</a>
* @created September 30, 2006

View File

@ -24,7 +24,7 @@ import java.util.ArrayList;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -40,10 +40,10 @@ import java.util.ArrayList;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Sherif Koussa <a href="http://www.softwaresecured.com">Software Secured</a>
* @created December 25, 2006

View File

@ -23,7 +23,7 @@ import org.owasp.webgoat.util.WebGoatI18N;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -39,10 +39,10 @@ import org.owasp.webgoat.util.WebGoatI18N;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Jeff Williams <a href="http://www.aspectsecurity.com">Aspect Security</a>
* @created October 28, 2003

View File

@ -24,7 +24,7 @@ import org.owasp.webgoat.util.WebGoatI18N;
* This file is part of WebGoat, an Open Web Application Security Project
* utility. For details, please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -42,10 +42,10 @@ import org.owasp.webgoat.util.WebGoatI18N;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository
* for free software projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Bruce Mayhew <a href="http://code.google.com/p/webgoat">WebGoat</a>
* @created October 28, 2003

View File

@ -27,7 +27,7 @@ import org.owasp.webgoat.util.WebGoatI18N;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -43,10 +43,10 @@ import org.owasp.webgoat.util.WebGoatI18N;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Sherif Koussa <a href="http://www.softwaresecured.com">Software Secured</a>
* @created October 28, 2006

View File

@ -30,7 +30,7 @@ import org.apache.commons.fileupload.servlet.*;
* This file is part of WebGoat, an Open Web Application Security Project
* utility. For details, please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -48,10 +48,10 @@ import org.apache.commons.fileupload.servlet.*;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository
* for free software projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Chuck Willis of <a href="http://www.mandiant.com">MANDIANT</a>
* @created July 11, 2008

View File

@ -29,7 +29,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -45,11 +45,11 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Reto Lippuner, Marcel Wirth
* @created April 7, 2008

View File

@ -29,7 +29,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -45,11 +45,11 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Reto Lippuner, Marcel Wirth
* @created April 7, 2008

View File

@ -12,7 +12,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -28,10 +28,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Sherif Koussa <a href="http://www.softwaresecured.com">Software Secured</a>
* @created October 28, 2003

View File

@ -25,7 +25,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -41,10 +41,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Yiannis Pavlosoglou <a href="http://code.google.com/p/webgoat">WebGoat</a>
* @created December 05, 2009

View File

@ -24,7 +24,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -40,11 +40,11 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Reto Lippuner, Marcel Wirth
* @created April 7, 2008

View File

@ -25,7 +25,7 @@ import org.owasp.webgoat.util.WebGoatI18N;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -41,10 +41,10 @@ import org.owasp.webgoat.util.WebGoatI18N;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Bruce Mayhew <a href="http://code.google.com/p/webgoat">WebGoat</a>
* @created October 28, 2003

View File

@ -27,7 +27,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -43,10 +43,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Bruce Mayhew <a href="http://code.google.com/p/webgoat">WebGoat</a>
* @created March 13, 2007

View File

@ -28,7 +28,7 @@ import org.owasp.webgoat.util.WebGoatI18N;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -44,10 +44,10 @@ import org.owasp.webgoat.util.WebGoatI18N;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Bruce Mayhew <a href="http://code.google.com/p/webgoat">WebGoat</a>
* @created October 28, 2003

View File

@ -15,7 +15,7 @@ import org.owasp.webgoat.util.WebGoatI18N;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -31,10 +31,10 @@ import org.owasp.webgoat.util.WebGoatI18N;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Bruce Mayhew <a href="http://code.google.com/p/webgoat">WebGoat</a>
* @created October 28, 2003

View File

@ -20,7 +20,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -36,10 +36,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public class DeleteProfile extends DefaultLessonAction
{

View File

@ -19,7 +19,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -35,10 +35,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public class EditProfile extends DefaultLessonAction
{

View File

@ -29,7 +29,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -45,10 +45,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public class RoleBasedAccessControl extends GoatHillsFinancial
{

View File

@ -22,7 +22,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -38,10 +38,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public class UpdateProfile extends DefaultLessonAction
{

View File

@ -19,7 +19,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -35,10 +35,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public class ViewProfile extends DefaultLessonAction
{

View File

@ -21,7 +21,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -37,10 +37,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public class ListStaff extends DefaultLessonAction
{

View File

@ -23,7 +23,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -39,10 +39,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public class Login extends DefaultLessonAction
{

View File

@ -29,7 +29,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -45,10 +45,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public class SQLInjection extends GoatHillsFinancial
{

View File

@ -19,7 +19,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -35,10 +35,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*/
public class ViewProfile extends DefaultLessonAction
{

View File

@ -31,7 +31,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -47,11 +47,11 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Reto Lippuner, Marcel Wirth
* @created April 8, 2008

View File

@ -28,7 +28,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -44,10 +44,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Sherif Koussa <a href="http://www.softwaresecured.com">Software Secured</a>
* @created December 26, 2006

View File

@ -33,7 +33,7 @@ import org.owasp.webgoat.session.WebgoatContext;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -49,10 +49,10 @@ import org.owasp.webgoat.session.WebgoatContext;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author asmolen
*

View File

@ -28,7 +28,7 @@ import org.owasp.webgoat.util.WebGoatI18N;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -44,10 +44,10 @@ import org.owasp.webgoat.util.WebGoatI18N;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* 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)

View File

@ -28,7 +28,7 @@ import org.owasp.webgoat.util.WebGoatI18N;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -44,10 +44,10 @@ import org.owasp.webgoat.util.WebGoatI18N;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* 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)

View File

@ -31,7 +31,7 @@ import org.owasp.webgoat.util.WebGoatI18N;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -47,10 +47,10 @@ import org.owasp.webgoat.util.WebGoatI18N;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Bruce Mayhew <a href="http://code.google.com/p/webgoat">WebGoat</a>
* @created October 28, 2003

View File

@ -27,7 +27,7 @@ import org.owasp.webgoat.util.WebGoatI18N;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -43,10 +43,10 @@ import org.owasp.webgoat.util.WebGoatI18N;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Bruce Mayhew <a href="http://code.google.com/p/webgoat">WebGoat</a>
* @created October 28, 2003

View File

@ -32,7 +32,7 @@ import org.owasp.webgoat.util.WebGoatI18N;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -48,10 +48,10 @@ import org.owasp.webgoat.util.WebGoatI18N;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Jeff Williams <a href="http://www.aspectsecurity.com">Aspect Security</a>
* @created October 28, 2003

View File

@ -23,7 +23,7 @@ import org.owasp.webgoat.session.*;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -39,10 +39,10 @@ import org.owasp.webgoat.session.*;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Jeff Williams <a href="http://www.aspectsecurity.com">Aspect Security</a>
* @created October 28, 2003

View File

@ -13,7 +13,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -29,10 +29,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Reto Lippuner, Marcel Wirth
* @created April 13, 2008

View File

@ -26,7 +26,7 @@ import org.owasp.webgoat.util.HtmlEncoder;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -42,10 +42,10 @@ import org.owasp.webgoat.util.HtmlEncoder;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Bruce Mayhew <a href="http://code.google.com/p/webgoat">WebGoat</a>
* @created October 28, 2003

View File

@ -40,7 +40,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -56,10 +56,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Bruce Mayhew <a href="http://code.google.com/p/webgoat">WebGoat</a>
* @created October 28, 2003

View File

@ -13,7 +13,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -29,10 +29,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Reto Lippuner, Marcel Wirth
* @created April 7, 2008

View File

@ -42,7 +42,7 @@ import org.owasp.webgoat.session.WebgoatContext;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -58,10 +58,10 @@ import org.owasp.webgoat.session.WebgoatContext;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author asmolen
*

View File

@ -27,7 +27,7 @@ import org.owasp.webgoat.util.WebGoatI18N;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -43,10 +43,10 @@ import org.owasp.webgoat.util.WebGoatI18N;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Jeff Williams <a href="http://www.aspectsecurity.com">Aspect Security</a>
* @created October 28, 2003

View File

@ -27,7 +27,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -43,10 +43,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Rogan Dawes <a href="http://dawes.za.net/rogan">Rogan Dawes</a>
* @created March 30, 2005

View File

@ -19,7 +19,7 @@ import org.owasp.webgoat.session.*;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -35,10 +35,10 @@ import org.owasp.webgoat.session.*;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Jeff Williams <a href="http://www.aspectsecurity.com">Aspect Security</a>
* @created October 28, 2003

View File

@ -33,7 +33,7 @@ import org.xml.sax.helpers.XMLReaderFactory;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -49,10 +49,10 @@ import org.xml.sax.helpers.XMLReaderFactory;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author rdawes
*

View File

@ -32,7 +32,7 @@ import org.owasp.webgoat.session.WebgoatContext;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -48,10 +48,10 @@ import org.owasp.webgoat.session.WebgoatContext;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author asmolen
*

View File

@ -28,7 +28,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -44,10 +44,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Sherif Koussa <a href="http://www.softwaresecured.com">Software Secured</a>
*/

View File

@ -42,7 +42,7 @@ import org.owasp.webgoat.session.ECSFactory;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -58,10 +58,10 @@ import org.owasp.webgoat.session.ECSFactory;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Sherif Koussa <a href="http://www.softwaresecured.com">Software Secured</a>
* @created November 28, 2006

View File

@ -12,7 +12,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -28,10 +28,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Jeff Williams <a href="http://www.aspectsecurity.com">Aspect Security</a>
* @created October 28, 2003

View File

@ -19,7 +19,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -35,10 +35,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Jeff Williams <a href="http://www.aspectsecurity.com">Aspect Security</a>
* @created October 28, 2003

View File

@ -19,7 +19,7 @@ import org.owasp.webgoat.session.*;
* This file is part of WebGoat, an Open Web Application Security Project utility. For details,
* please see http://www.owasp.org/
*
* Copyright (c) 2002 - 2007 Bruce Mayhew
* 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
@ -35,10 +35,10 @@ import org.owasp.webgoat.session.*;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Jeff Williams <a href="http://www.aspectsecurity.com">Aspect Security</a>
* @created October 28, 2003

View File

@ -27,7 +27,7 @@ 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 - 2007 Bruce Mayhew
* 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
@ -43,10 +43,10 @@ import org.owasp.webgoat.session.WebSession;
*
* Getting Source ==============
*
* Source for this application is maintained at code.google.com, a repository for free software
* Source for this application is maintained at https://github.com/WebGoat/WebGoat, a repository for free software
* projects.
*
* For details, please see http://code.google.com/p/webgoat/
* For details, please see http://webgoat.github.io
*
* @author Bruce Mayhew <a href="http://code.google.com/p/webgoat">WebGoat</a>
* @created October 28, 2003

Some files were not shown because too many files have changed in this diff Show More