├── .gitignore ├── README.md ├── access-control-matrix ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── AccessControlMatrix.java │ └── resources │ └── plugin │ └── AccessControlMatrix │ ├── images │ └── aspect.jpg │ ├── lessonPlans │ ├── en │ │ └── AccessControlMatrix.html │ └── ru │ │ └── AccessControlMatrix.html │ └── lessonSolutions │ └── en │ ├── AccessControlMatrix.html │ └── AccessControlMatrix_files │ ├── Thumbs.db │ ├── colorschememapping.xml │ ├── filelist.xml │ ├── image001.png │ ├── image002.jpg │ ├── image003.png │ ├── image004.jpg │ └── themedata.thmx ├── back-doors ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── BackDoors.java │ └── resources │ └── plugin │ └── BackDoors │ ├── lessonPlans │ ├── en │ │ └── BackDoors.html │ └── ru │ │ └── BackDoors.html │ └── lessonSolutions │ └── en │ ├── BackDoors.html │ └── BackDoors_files │ ├── colorschememapping.xml │ ├── filelist.xml │ ├── image001.png │ ├── image003.png │ ├── image005.png │ ├── image007.png │ ├── image009.png │ ├── image011.png │ ├── image013.jpg │ ├── image014.jpg │ ├── image015.jpg │ ├── image016.jpg │ ├── image017.jpg │ ├── image018.jpg │ └── themedata.thmx ├── basic-authentication ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── BasicAuthentication.java │ └── resources │ └── plugin │ ├── BasicAuthentication │ ├── lessonPlans │ │ ├── de │ │ │ └── BasicAuthentication.html │ │ ├── en │ │ │ └── BasicAuthentication.html │ │ └── ru │ │ │ └── BasicAuthentication.html │ └── lessonSolutions │ │ └── en │ │ ├── BasicAuthentication.html │ │ └── BasicAuthentication_files │ │ ├── colorschememapping.xml │ │ ├── filelist.xml │ │ ├── image001.png │ │ ├── image003.png │ │ ├── image005.png │ │ ├── image007.png │ │ ├── image009.png │ │ ├── image011.png │ │ ├── image013.png │ │ ├── image015.png │ │ ├── image017.png │ │ ├── image019.png │ │ ├── image021.png │ │ ├── image023.png │ │ ├── image025.jpg │ │ ├── image026.jpg │ │ ├── image027.jpg │ │ ├── image028.jpg │ │ ├── image029.jpg │ │ ├── image030.jpg │ │ ├── image031.jpg │ │ ├── image032.jpg │ │ ├── image033.jpg │ │ ├── image034.jpg │ │ ├── image035.jpg │ │ ├── image036.jpg │ │ └── themedata.thmx │ └── i18n │ ├── WebGoatLabels.properties │ ├── WebGoatLabels_de.properties │ ├── WebGoatLabels_fr.properties │ └── WebGoatLabels_ru.properties ├── blind-numeric-sql-injection ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── BlindNumericSqlInjection.java │ └── resources │ └── plugin │ └── BlindNumericSqlInjection │ └── lessonSolutions │ └── en │ └── BlindNumericSqlInjection.html ├── blind-script ├── pom.xml └── src │ └── main │ └── java │ └── org │ └── owasp │ └── webgoat │ └── plugin │ └── BlindScript.java ├── blind-string-sql-injection ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── BlindStringSqlInjection.java │ └── resources │ └── plugin │ └── BlindStringSqlInjection │ ├── lessonPlans │ └── en │ │ └── BlindStringSqlInjection.html │ └── lessonSolutions │ └── en │ └── BlindStringSqlInjection.html ├── bypass-html-field-restrictions ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── BypassHtmlFieldRestrictions.java │ └── resources │ └── plugin │ ├── BypassHtmlFieldRestrictions │ └── lessonSolutions │ │ └── en │ │ ├── BypassHtmlFieldRestrictions.html │ │ └── BypassHtmlFieldRestrictions_files │ │ ├── image001.jpg │ │ └── image002.jpg │ └── i18n │ ├── WebGoatLabels.properties │ ├── WebGoatLabels_de.properties │ ├── WebGoatLabels_fr.properties │ └── WebGoatLabels_ru.properties ├── challenge ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── ChallengeScreen.java │ └── resources │ └── plugin │ └── challenge │ └── lessonPlans │ ├── de │ └── ChallengeScreen.html │ ├── en │ └── ChallengeScreen.html │ └── ru │ └── ChallengeScreen.html ├── client-side-filtering ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── ClientSideFiltering.java │ └── resources │ └── plugin │ ├── ClientSideFiltering │ ├── images │ │ ├── lesson1_header.jpg │ │ └── lesson1_workspace.jpg │ ├── js │ │ ├── clientSideFiltering.js │ │ └── formate.css │ ├── jsp │ │ ├── clientSideFiltering-stage1.css │ │ ├── clientSideFiltering.css │ │ ├── clientSideFiltering.jsp │ │ └── employees.xml │ ├── lessonPlans │ │ ├── en │ │ │ └── ClientSideFiltering.html │ │ └── ru │ │ │ └── ClientSideFiltering.html │ └── lessonSolutions │ │ └── en │ │ ├── ClientSideFiltering.html │ │ └── ClientSideFiltering_files │ │ └── clientside_firebug.jpg │ └── i18n │ └── WebGoatLabels.properties ├── client-side-validation ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── ClientSideValidation.java │ └── resources │ └── plugin │ └── ClientSideValidation │ ├── js │ └── clientSideValidation.js │ ├── jsp │ └── clientSideValidation.jsp │ ├── lessonPlans │ ├── en │ │ └── ClientSideValidation.html │ └── ru │ │ └── ClientSideValidation.html │ └── lessonSolutions │ └── en │ ├── ClientSideValidation.html │ └── ClientSideValidation_files │ └── ClientSideValidation_stage1.png ├── command-injection ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── CommandInjection.java │ └── resources │ └── plugin │ ├── CommandInjection │ ├── lessonPlans │ │ ├── de │ │ │ └── CommandInjection.html │ │ ├── en │ │ │ └── CommandInjection.html │ │ └── ru │ │ │ └── CommandInjection.html │ └── lessonSolutions │ │ └── en │ │ ├── CommandInjection.html │ │ └── CommandInjection_files │ │ ├── colorschememapping.xml │ │ ├── filelist.xml │ │ ├── image001.png │ │ ├── image003.png │ │ ├── image005.png │ │ ├── image007.jpg │ │ ├── image008.jpg │ │ ├── image009.jpg │ │ └── themedata.thmx │ └── i18n │ ├── WebGoatLabels.properties │ ├── WebGoatLabels_de.properties │ ├── WebGoatLabels_fr.properties │ └── WebGoatLabels_ru.properties ├── common ├── pom.xml └── src │ └── main │ └── java │ └── org │ └── owasp │ └── webgoat │ └── plugin │ ├── Encoding.java │ ├── Exec.java │ ├── ExecResults.java │ ├── LessonUtil.java │ └── ThreadWatcher.java ├── concurrency-cart ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── ConcurrencyCart.java │ └── resources │ └── plugin │ └── ConcurrencyCart │ ├── lessonPlans │ ├── en │ │ └── ConcurrencyCart.html │ └── ru │ │ └── ConcurrencyCart.html │ └── lessonSolutions │ └── en │ ├── ConcurrencyCart.html │ └── ConcurrencyCart_files │ ├── image001.jpg │ ├── image002.jpg │ └── image003.jpg ├── cross-site-scripting ├── pom.xml └── src │ └── main │ ├── java │ ├── instructor │ │ ├── FindProfile_i.java │ │ ├── UpdateProfile_i.java │ │ └── ViewProfile_i.java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── crosssitescripting │ │ ├── CrossSiteScripting.java │ │ ├── EditProfileCrossSiteScripting.java │ │ ├── FindProfileCrossSiteScripting.java │ │ ├── UpdateProfileCrossSiteScripting.java │ │ └── ViewProfileCrossSiteScripting.java │ └── resources │ └── plugin │ └── CrossSiteScripting │ ├── images │ ├── lesson1_SearchWindow.jpg │ ├── lesson1_header.jpg │ ├── lesson1_loginWindow.jpg │ ├── lesson1_menu.jpg │ └── lesson1_workspace.jpg │ ├── jsp │ ├── CrossSiteScripting.css │ ├── CrossSiteScripting.jsp │ ├── EditProfile.jsp │ ├── ListStaff.jsp │ ├── Login.jsp │ ├── SearchStaff.jsp │ ├── ViewProfile.jsp │ └── error.jsp │ └── lessonPlans │ ├── en │ └── CrossSiteScripting.html │ └── ru │ └── CrossSiteScripting.html ├── csrf-prompt-by-pass ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── CsrfPromptByPass.java │ └── resources │ └── plugin │ └── CsrfPromptByPass │ ├── lessonPlans │ ├── en │ │ └── CsrfPromptByPass.html │ └── ru │ │ └── CsrfPromptByPass.html │ └── lessonSolutions │ └── en │ ├── CsrfPromptByPass.html │ └── CsrfPromptByPass_files │ ├── iframePromptHack.png │ ├── iframePromptHacked.png │ ├── imgPromptHack.png │ ├── transferFundsComplete.png │ ├── transferFundsHack.png │ ├── transferFundsPage.png │ └── transferFundsPrompt.png ├── csrf-token-by-pass ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── CsrfTokenByPass.java │ └── resources │ └── plugin │ └── CsrfTokenByPass │ ├── lessonPlans │ ├── en │ │ └── CsrfTokenByPass.html │ └── ru │ │ └── CsrfTokenByPass.html │ └── lessonSolutions │ └── en │ ├── CsrfTokenByPass.html │ └── CsrfTokenByPass_files │ ├── tokenHack.png │ ├── tokenHacked.png │ └── tokenPage.png ├── csrf ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── CSRF.java │ └── resources │ └── plugin │ └── CSRF │ ├── lessonPlans │ ├── en │ │ └── CSRF.html │ └── ru │ │ └── CSRF.html │ └── lessonSolutions │ └── en │ ├── CSRF.html │ └── CSRF_files │ ├── colorschememapping.xml │ ├── filelist.xml │ ├── image001.png │ ├── image003.png │ ├── image005.png │ ├── image007.png │ ├── image009.png │ ├── image011.jpg │ ├── image012.jpg │ ├── image013.jpg │ ├── image014.jpg │ ├── image015.jpg │ └── themedata.thmx ├── dangerous-eval-injection ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── DangerousEval.java │ └── resources │ └── plugin │ └── DangerousEval │ ├── js │ └── eval.js │ ├── jsp │ └── eval.jsp │ ├── lessonPlans │ ├── en │ │ └── DangerousEval.html │ └── ru │ │ └── DangerousEval.html │ └── lessonSolutions │ └── en │ └── DangerousEval.html ├── db-cross-site-scripting ├── pom.xml └── src │ └── main │ ├── java │ ├── instructor │ │ ├── RegexMatch.cs │ │ └── UpdateProfile_i.java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── db_cross_site │ │ ├── DBCrossSiteScripting.java │ │ └── UpdateProfileDBCrossSiteScripting.java │ └── resources │ └── plugin │ └── DBCrossSiteScripting │ ├── images │ ├── lesson1_SearchWindow.jpg │ ├── lesson1_header.jpg │ ├── lesson1_loginWindow.jpg │ ├── lesson1_menu.jpg │ └── lesson1_workspace.jpg │ ├── jsp │ ├── DBCrossSiteScripting.css │ ├── DBCrossSiteScripting.jsp │ ├── EditProfile.jsp │ ├── ListStaff.jsp │ ├── Login.jsp │ ├── SearchStaff.jsp │ ├── ViewProfile.jsp │ └── error.jsp │ └── lessonPlans │ ├── en │ └── DBCrossSiteScripting.html │ └── ru │ └── DBCrossSiteScripting.html ├── db-sql-injection ├── pom.xml └── src │ └── main │ ├── java │ ├── instructor │ │ └── Login_i.java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── dbsqlinjection │ │ ├── DBSQLInjection.java │ │ └── LoginDBSQLInjection.java │ └── resources │ └── plugin │ └── DBSQLInjection │ ├── images │ ├── lesson1_SearchWindow.jpg │ ├── lesson1_header.jpg │ ├── lesson1_loginWindow.jpg │ ├── lesson1_menu.jpg │ └── lesson1_workspace.jpg │ ├── jsp │ ├── DBSQLInjection.css │ ├── DBSQLInjection.jsp │ ├── EditProfile.jsp │ ├── ListStaff.jsp │ ├── Login.jsp │ ├── SearchStaff.jsp │ ├── ViewProfile.jsp │ └── error.jsp │ └── lessonPlans │ ├── en │ └── DBSQLInjection.html │ └── ru │ └── DBSQLInjection.html ├── dist ├── pom.xml └── zip.xml ├── dom-injection ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── DOMInjection.java │ └── resources │ └── plugin │ └── DOMInjection │ ├── js │ └── dom_injection.js │ ├── lessonPlans │ ├── en │ │ └── DOMInjection.html │ └── ru │ │ └── DOMInjection.html │ └── lessonSolutions │ └── en │ ├── DOMInjection.html │ └── DOMInjection_files │ ├── colorschememapping.xml │ ├── filelist.xml │ ├── image001.png │ ├── image002.jpg │ ├── image003.png │ ├── image004.jpg │ ├── image005.png │ ├── image006.jpg │ ├── image007.png │ ├── image008.jpg │ ├── image008fix.jpg │ ├── image009.png │ ├── image010.jpg │ ├── image011.png │ ├── image012.jpg │ └── themedata.thmx ├── dom-xss ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── DOMXSS.java │ └── resources │ └── plugin │ └── DOMXSS │ ├── images │ └── owasp.jpg │ ├── js │ ├── DOMXSS.js │ └── escape.js │ ├── lessonPlans │ ├── en │ │ └── DOMXSS.html │ └── ru │ │ └── DOMXSS.html │ └── lessonSolutions │ └── en │ ├── DOMXSS.html │ └── DOMXSS_files │ ├── Thumbs.db │ ├── image001.jpg │ ├── image002.jpg │ ├── image003.jpg │ └── image004.jpg ├── dos-login ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── DOS_Login.java │ └── resources │ └── plugin │ └── DOS_Login │ ├── lessonPlans │ ├── en │ │ └── DOS_Login.html │ └── ru │ │ └── DOS_Login.html │ └── lessonSolutions │ └── en │ ├── DOS_Login.html │ └── DOS_Login_files │ ├── colorschememapping.xml │ ├── filelist.xml │ ├── image001.png │ ├── image002.jpg │ ├── image003.png │ ├── image004.jpg │ └── themedata.thmx ├── encoding ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── EncodingLesson.java │ └── resources │ └── plugin │ └── Encoding │ ├── lessonPlans │ ├── en │ │ └── Encoding.html │ └── ru │ │ └── Encoding.html │ └── lessonSolutions │ └── en │ └── Encoding.html ├── fail-open-authentication ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── FailOpenAuthentication.java │ └── resources │ └── plugin │ └── FailOpenAuthentication │ ├── lessonPlans │ ├── en │ │ └── FailOpenAuthentication.html │ └── ru │ │ └── FailOpenAuthentication.html │ └── lessonSolutions │ └── en │ ├── FailOpenAuthentication.html │ └── FailOpenAuthentication_files │ ├── colorschememapping.xml │ ├── filelist.xml │ ├── image001.png │ ├── image003.png │ ├── image005.png │ ├── image007.png │ ├── image009.jpg │ ├── image010.jpg │ ├── image011.jpg │ ├── image012.jpg │ └── themedata.thmx ├── forced-browsing ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ ├── Config.java │ │ └── ForcedBrowsing.java │ └── resources │ └── plugin │ └── ForcedBrowsing │ ├── lessonPlans │ ├── en │ │ └── ForcedBrowsing.html │ └── ru │ │ └── ForcedBrowsing.html │ └── lessonSolutions │ └── en │ ├── ForcedBrowsing.html │ └── ForcedBrowsing_files │ ├── colorschememapping.xml │ ├── filelist.xml │ ├── image001.png │ ├── image002.jpg │ ├── image003.png │ ├── image004.jpg │ ├── image005.png │ ├── image006.jpg │ ├── image007.png │ ├── image008.jpg │ └── themedata.thmx ├── forgot-password ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── ForgotPassword.java │ └── resources │ └── plugin │ └── ForgotPassword │ ├── lessonPlans │ ├── en │ │ └── ForgotPassword.html │ └── ru │ │ └── ForgotPassword.html │ └── lessonSolutions │ └── en │ ├── ForgotPassword.html │ └── ForgotPassword_files │ ├── colorschememapping.xml │ ├── filelist.xml │ ├── image001.png │ ├── image003.png │ ├── image005.png │ ├── image007.png │ ├── image009.png │ ├── image011.png │ ├── image013.png │ ├── image015.jpg │ ├── image016.jpg │ ├── image017.jpg │ ├── image018.jpg │ ├── image019.jpg │ ├── image020.jpg │ ├── image021.jpg │ └── themedata.thmx ├── goat-hills-financial ├── pom.xml └── src │ └── main │ └── java │ └── org │ └── owasp │ └── webgoat │ └── plugin │ └── GoatHillsFinancial │ ├── DefaultLessonAction.java │ ├── DeleteProfile.java │ ├── EditProfile.java │ ├── Employee.java │ ├── EmployeeStub.java │ ├── FindProfile.java │ ├── GoatHillsFinancial.java │ ├── LessonAction.java │ ├── ListStaff.java │ ├── Login.java │ ├── Logout.java │ ├── SearchStaff.java │ ├── UpdateProfile.java │ └── ViewProfile.java ├── hidden-field-tampering ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── HiddenFieldTampering.java │ └── resources │ └── plugin │ ├── HiddenFieldTampering │ ├── lessonPlans │ │ ├── de │ │ │ └── HiddenFieldTampering.html │ │ ├── en │ │ │ └── HiddenFieldTampering.html │ │ └── ru │ │ │ └── HiddenFieldTampering.html │ └── lessonSolutions │ │ └── en │ │ ├── HiddenFieldTampering.html │ │ └── HiddenFieldTampering_files │ │ ├── Thumbs.db │ │ ├── colorschememapping.xml │ │ ├── filelist.xml │ │ ├── image001.png │ │ ├── image003.png │ │ ├── image005.png │ │ ├── image007.png │ │ ├── image009.png │ │ ├── image011.jpg │ │ ├── image012.jpg │ │ ├── image013.jpg │ │ ├── image014.jpg │ │ ├── image015.jpg │ │ └── themedata.thmx │ └── i18n │ ├── WebGoatLabels.properties │ ├── WebGoatLabels_de.properties │ ├── WebGoatLabels_fr.properties │ └── WebGoatLabels_ru.properties ├── how-to-work ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── HowToWork.java │ └── resources │ └── plugin │ └── HowToWork │ ├── lessonPlans │ ├── de │ │ └── HowToWork.html │ ├── en │ │ ├── HowToWork.html │ │ └── HowToWork_files │ │ │ ├── HowToUse_2.jpg │ │ │ ├── HowToUse_3.jpg │ │ │ ├── UsefulTools-ZAP.png │ │ │ ├── UsefulTools-ZAP_1.png │ │ │ ├── interface.png │ │ │ └── wireshark.png │ └── ru │ │ └── HowToWork.html │ └── lessonSolutions │ └── en │ ├── HowToWork.html │ └── HowToWork_files │ ├── HowToUse_2.jpg │ ├── HowToUse_3.jpg │ ├── UsefulTools-ZAP.png │ ├── UsefulTools-ZAP_1.png │ ├── interface.png │ └── wireshark.png ├── html-clues ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── HtmlClues.java │ └── resources │ └── plugin │ ├── HtmlClues │ ├── lessonPlans │ │ ├── de │ │ │ └── HtmlClues.html │ │ ├── en │ │ │ └── HtmlClues.html │ │ └── ru │ │ │ └── HtmlClues.html │ └── lessonSolutions │ │ └── en │ │ ├── HtmlClues.html │ │ └── HtmlClues_files │ │ ├── colorschememapping.xml │ │ ├── filelist.xml │ │ ├── image001.png │ │ ├── image003.png │ │ ├── image005.png │ │ ├── image007.png │ │ ├── image009.png │ │ ├── image011.jpg │ │ ├── image012.jpg │ │ ├── image013.jpg │ │ ├── image014.jpg │ │ ├── image015.jpg │ │ └── themedata.thmx │ └── i18n │ ├── WebGoatLabels.properties │ ├── WebGoatLabels_de.properties │ └── WebGoatLabels_ru.properties ├── http-basics ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── HttpBasics.java │ └── resources │ └── plugin │ ├── HttpBasics │ ├── lessonPlans │ │ ├── de │ │ │ └── HttpBasics.html │ │ ├── en │ │ │ └── HttpBasics.html │ │ └── ru │ │ │ └── HttpBasics.html │ └── lessonSolutions │ │ └── en │ │ ├── HttpBasics.html │ │ └── HttpBasics_files │ │ ├── colorschememapping.xml │ │ ├── filelist.xml │ │ ├── image001.png │ │ ├── image003.png │ │ ├── image005.jpg │ │ ├── image006.jpg │ │ ├── themedata.thmx │ │ ├── webscarab1.jpg │ │ └── webscarab2.jpg │ └── i18n │ ├── WebGoatLabels.properties │ ├── WebGoatLabels_de.properties │ ├── WebGoatLabels_fr.properties │ └── WebGoatLabels_ru.properties ├── http-only ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── HttpOnly.java │ └── resources │ └── plugin │ └── HttpOnly │ ├── lessonPlans │ ├── en │ │ └── HttpOnly.html │ └── ru │ │ └── HttpOnly.html │ └── lessonSolutions │ └── en │ ├── HttpOnly.html │ └── HttpOnly_files │ ├── colorschememapping.xml │ ├── filelist.xml │ ├── image001.png │ ├── image003.png │ ├── image005.png │ ├── image007.png │ ├── image009.png │ ├── image011.png │ ├── image013.png │ ├── image015.jpg │ ├── image016.jpg │ ├── image017.jpg │ ├── image018.jpg │ ├── image019.jpg │ ├── image020.jpg │ ├── image021.jpg │ └── themedata.thmx ├── insecure-login ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── InsecureLogin.java │ └── resources │ └── plugin │ └── InsecureLogin │ ├── images │ ├── lesson1_header.jpg │ └── lesson1_workspace.jpg │ ├── jsp │ └── insecureLogin.css │ ├── lessonPlans │ ├── en │ │ └── InsecureLogin.html │ └── ru │ │ └── InsecureLogin.html │ └── lessonSolutions │ └── en │ ├── InsecureLogin.html │ └── InsecureLogin_files │ └── wireshark1.png ├── java-script-validation ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── JavaScriptValidation.java │ └── resources │ └── plugin │ ├── JavaScriptValidation │ ├── lessonPlans │ │ ├── de │ │ │ └── JavaScriptValidation.html │ │ ├── en │ │ │ └── JavaScriptValidation.html │ │ └── ru │ │ │ └── JavaScriptValidation.html │ └── lessonSolutions │ │ └── en │ │ ├── JavaScriptValidation.html │ │ └── JavaScriptValidation_files │ │ ├── colorschememapping.xml │ │ ├── filelist.xml │ │ ├── image001.png │ │ ├── image002.jpg │ │ ├── image003.png │ │ ├── image004.jpg │ │ ├── image005.png │ │ ├── image006.jpg │ │ ├── image007.png │ │ ├── image008.jpg │ │ ├── image009.gif │ │ ├── image010.png │ │ ├── image011.jpg │ │ ├── image012.png │ │ ├── image013.jpg │ │ ├── image014.png │ │ ├── image015.jpg │ │ ├── image016.png │ │ ├── image017.jpg │ │ ├── image018.png │ │ ├── image019.jpg │ │ ├── image020.png │ │ ├── image021.jpg │ │ ├── image022.png │ │ ├── image023.jpg │ │ └── themedata.thmx │ └── i18n │ ├── WebGoatLabels.properties │ ├── WebGoatLabels_de.properties │ ├── WebGoatLabels_fr.properties │ └── WebGoatLabels_ru.properties ├── json-injection ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── JSONInjection.java │ └── resources │ └── plugin │ └── JSONInjection │ ├── js │ └── jsonInjection.js │ ├── lessonPlans │ ├── en │ │ └── JSONInjection.html │ └── ru │ │ └── JSONInjection.html │ └── lessonSolutions │ └── en │ ├── JSONInjection.html │ └── JSONInjection_files │ ├── colorschememapping.xml │ ├── filelist.xml │ ├── image001.png │ ├── image003.png │ ├── image005.png │ ├── image007.png │ ├── image009.png │ ├── image011.png │ ├── image013.jpg │ ├── image014.jpg │ ├── image015.jpg │ ├── image016.jpg │ ├── image017.jpg │ ├── image018.jpg │ └── themedata.thmx ├── lesson-converter ├── pom.xml ├── readme.md └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── converter │ │ ├── ConverterException.java │ │ ├── ConverterMain.java │ │ ├── HtmlLessonSolutionFinder.java │ │ ├── HtmlLessonSourceFinder.java │ │ ├── JavaSource.java │ │ ├── JavaSourceLessonFinder.java │ │ ├── LessonConverterFileUtils.java │ │ ├── LessonCreator.java │ │ ├── Logger.java │ │ ├── PomCreator.java │ │ └── PropertyCreator.java │ ├── resources │ ├── pom1.example │ └── pom2.example │ └── test │ └── java │ └── org │ └── owasp │ └── webgoat │ └── converter │ └── JavaSourceTest.java ├── lesson-template-legacy ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── NewLegacyLesson.java │ └── resources │ └── plugin │ ├── NewLegacyLesson │ ├── lessonPlans │ │ ├── de │ │ │ └── NewLegacyLesson.html │ │ ├── en │ │ │ └── NewLegacyLesson.html │ │ └── ru │ │ │ └── NewLegacyLesson.html │ └── lessonSolutions │ │ └── en │ │ ├── NewLegacyLesson.html │ │ └── NewLegacyLesson_files │ │ ├── filelist.xml │ │ ├── image002.png │ │ ├── image004.png │ │ └── themedata.xml │ └── i18n │ └── WebGoatLabels.properties ├── log-spoofing ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── LogSpoofing.java │ └── resources │ └── plugin │ ├── LogSpoofing │ ├── lessonPlans │ │ ├── de │ │ │ └── LogSpoofing.html │ │ ├── en │ │ │ └── LogSpoofing.html │ │ └── ru │ │ │ └── LogSpoofing.html │ └── lessonSolutions │ │ └── en │ │ ├── LogSpoofing.html │ │ └── LogSpoofing_files │ │ ├── Thumbs.db │ │ ├── colorschememapping.xml │ │ ├── filelist.xml │ │ ├── image001.png │ │ ├── image003.png │ │ ├── image005.png │ │ ├── image007.jpg │ │ ├── image008.jpg │ │ ├── image009.jpg │ │ └── themedata.thmx │ └── i18n │ ├── WebGoatLabels.properties │ ├── WebGoatLabels_de.properties │ ├── WebGoatLabels_fr.properties │ └── WebGoatLabels_ru.properties ├── malicious-file-execution ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── MaliciousFileExecution.java │ └── resources │ └── plugin │ └── MaliciousFileExecution │ └── lessonSolutions │ └── en │ ├── MaliciousFileExecution.html │ └── MaliciousFileExecution_files │ ├── image001.jpg │ └── image002.jpg ├── multi-level-login1 ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── MultiLevelLogin1.java │ └── resources │ └── plugin │ └── MultiLevelLogin1 │ ├── images │ ├── lesson1_header.jpg │ └── lesson1_workspace.jpg │ ├── jsp │ └── MultiLevelLogin1.css │ ├── lessonPlans │ ├── en │ │ └── MultiLevelLogin1.html │ └── ru │ │ └── MultiLevelLogin1.html │ └── lessonSolutions │ └── en │ ├── MultiLevelLogin1.html │ └── MultiLevelLogin1_files │ ├── login.png │ ├── success.png │ ├── tan.png │ └── webscarab.png ├── multi-level-login2 ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── MultiLevelLogin2.java │ └── resources │ └── plugin │ └── MultiLevelLogin2 │ ├── lessonPlans │ ├── en │ │ └── MultiLevelLogin2.html │ └── ru │ │ └── MultiLevelLogin2.html │ └── lessonSolutions │ └── en │ ├── MultiLevelLogin2.html │ └── MultiLevelLogin2_files │ └── success.png ├── off-by-one ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── OffByOne.java │ └── resources │ └── plugin │ └── OffByOne │ ├── lessonPlans │ └── en │ │ └── OffByOne.html │ └── lessonSolutions │ └── en │ └── OffByOne.html ├── password-strength ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── PasswordStrength.java │ └── resources │ └── plugin │ └── PasswordStrength │ ├── lessonPlans │ ├── en │ │ └── PasswordStrength.html │ └── ru │ │ └── PasswordStrength.html │ └── lessonSolutions │ └── en │ ├── PasswordStrength.html │ └── PasswordStrength_files │ ├── image001.jpg │ └── image002.jpg ├── path-based-access-control ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── PathBasedAccessControl.java │ └── resources │ └── plugin │ ├── PathBasedAccessControl │ ├── lessonPlans │ │ ├── de │ │ │ └── PathBasedAccessControl.html │ │ ├── en │ │ │ └── PathBasedAccessControl.html │ │ └── ru │ │ │ └── PathBasedAccessControl.html │ └── lessonSolutions │ │ └── en │ │ ├── PathBasedAccessControl.html │ │ └── PathBasedAccessControl_files │ │ ├── colorschememapping.xml │ │ ├── filelist.xml │ │ ├── image001.png │ │ ├── image002.jpg │ │ ├── image003.png │ │ ├── image004.jpg │ │ ├── image005.png │ │ ├── image006.jpg │ │ └── themedata.thmx │ └── i18n │ ├── WebGoatLabels.properties │ ├── WebGoatLabels_de.properties │ ├── WebGoatLabels_fr.properties │ └── WebGoatLabels_ru.properties ├── phishing ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── Phishing.java │ └── resources │ └── plugin │ ├── Phishing │ ├── lessonPlans │ │ ├── en │ │ │ └── Phishing.html │ │ └── ru │ │ │ └── Phishing.html │ └── lessonSolutions │ │ └── en │ │ ├── Phishing.html │ │ └── Phishing_files │ │ └── image001.jpg │ └── i18n │ └── WebGoatLabels.properties ├── pom.xml ├── reflected-xss ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── ReflectedXSS.java │ └── resources │ └── plugin │ ├── ReflectedXSS │ ├── lessonPlans │ │ ├── de │ │ │ └── ReflectedXSS.html │ │ ├── en │ │ │ └── ReflectedXSS.html │ │ └── ru │ │ │ └── ReflectedXSS.html │ └── lessonSolutions │ │ └── en │ │ ├── ReflectedXSS.html │ │ └── ReflectedXSS_files │ │ ├── colorschememapping.xml │ │ ├── filelist.xml │ │ ├── image001.png │ │ ├── image003.png │ │ ├── image005.jpg │ │ ├── image006.jpg │ │ └── themedata.thmx │ └── i18n │ ├── WebGoatLabels.properties │ ├── WebGoatLabels_de.properties │ ├── WebGoatLabels_fr.properties │ └── WebGoatLabels_ru.properties ├── remote-admin-flaw ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── RemoteAdminFlaw.java │ └── resources │ └── plugin │ ├── RemoteAdminFlaw │ ├── lessonPlans │ │ ├── de │ │ │ └── RemoteAdminFlaw.html │ │ ├── en │ │ │ └── RemoteAdminFlaw.html │ │ └── ru │ │ │ └── RemoteAdminFlaw.html │ └── lessonSolutions │ │ └── en │ │ ├── RemoteAdminFlaw.html │ │ └── RemoteAdminFlaw_files │ │ ├── colorschememapping.xml │ │ ├── filelist.xml │ │ ├── image001.png │ │ ├── image002.jpg │ │ ├── image003.png │ │ ├── image004.jpg │ │ ├── image005.png │ │ ├── image006.jpg │ │ └── themedata.thmx │ └── i18n │ ├── WebGoatLabels.properties │ ├── WebGoatLabels_de.properties │ ├── WebGoatLabels_fr.properties │ └── WebGoatLabels_ru.properties ├── role-based-access-control ├── pom.xml └── src │ └── main │ ├── java │ ├── instructor │ │ ├── DeleteProfile_i.java │ │ ├── EditProfile_i.java │ │ ├── RoleBasedAccessControl_i.java │ │ ├── UpdateProfile_i.java │ │ └── ViewProfile_i.java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── rollbased │ │ ├── DeleteProfileRoleBasedAccessControl.java │ │ ├── EditProfileRoleBasedAccessControl.java │ │ ├── RoleBasedAccessControl.java │ │ ├── UpdateProfileRoleBasedAccessControl.java │ │ └── ViewProfileRoleBasedAccessControl.java │ └── resources │ └── plugin │ └── RoleBasedAccessControl │ ├── images │ ├── accessControl.jpg │ ├── dbSchema.jpg │ ├── lesson1_SearchWindow.jpg │ ├── lesson1_header.jpg │ ├── lesson1_loginWindow.jpg │ ├── lesson1_menu.jpg │ ├── lesson1_workspace.jpg │ └── orgChart.jpg │ ├── jsp │ ├── EditProfile.jsp │ ├── ListStaff.jsp │ ├── Login.jsp │ ├── RoleBasedAccessControl.css │ ├── RoleBasedAccessControl.jsp │ ├── ViewProfile.jsp │ └── error.jsp │ └── lessonPlans │ ├── en │ └── RoleBasedAccessControl.html │ └── ru │ └── RoleBasedAccessControl.html ├── same-origin-policy-protection ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── SameOriginPolicyProtection.java │ └── resources │ └── plugin │ └── SameOriginPolicyProtection │ ├── js │ └── sameOrigin.js │ ├── jsp │ └── sameOrigin.jsp │ ├── lessonPlans │ ├── en │ │ └── SameOriginPolicyProtection.html │ └── ru │ │ └── SameOriginPolicyProtection.html │ └── lessonSolutions │ └── en │ └── SameOriginPolicyProtection.html ├── session-fixation ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── SessionFixation.java │ └── resources │ └── plugin │ ├── SessionFixation │ ├── lessonPlans │ │ ├── en │ │ │ └── SessionFixation.html │ │ └── ru │ │ │ └── SessionFixation.html │ └── lessonSolutions │ │ └── en │ │ ├── SessionFixation.html │ │ └── SessionFixation_files │ │ ├── sf_stage1.png │ │ ├── sf_stage2.png │ │ ├── sf_stage3.png │ │ ├── sf_stage4_1.png │ │ ├── sf_stage4_2.png │ │ └── sf_success.png │ ├── images │ ├── lesson1_header.jpg │ └── lesson1_workspace.jpg │ └── jsp │ └── SessionFixation.css ├── silent-transactions ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── SilentTransactions.java │ └── resources │ └── plugin │ └── SilentTransactions │ ├── js │ └── silentTransaction.js │ ├── lessonPlans │ ├── en │ │ └── SilentTransactions.html │ └── ru │ │ └── SilentTransactions.html │ └── lessonSolutions │ └── en │ ├── SilentTransactions.html │ └── SilentTransactions_files │ ├── colorschememapping.xml │ ├── filelist.xml │ ├── image001.png │ ├── image003.png │ ├── image005.png │ ├── image007.png │ ├── image009.jpg │ ├── image010.jpg │ ├── image011.jpg │ ├── image012.jpg │ └── themedata.thmx ├── soap-request ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── SoapRequest.java │ └── resources │ └── plugin │ └── SoapRequest │ ├── lessonPlans │ ├── en │ │ └── SoapRequest.html │ └── ru │ │ └── SoapRequest.html │ └── lessonSolutions │ └── en │ ├── SoapRequest.html │ └── SoapRequest_files │ ├── colorschememapping.xml │ ├── filelist.xml │ ├── image001.png │ ├── image002.jpg │ ├── image003.png │ ├── image004.jpg │ ├── image005.png │ ├── image006.jpg │ ├── image007.png │ ├── image008.jpg │ ├── image009.png │ ├── image010.jpg │ ├── image011.jpg │ └── themedata.thmx ├── sql-injection ├── pom.xml └── src │ └── main │ ├── java │ ├── instructor │ │ ├── Login_i.java │ │ └── ViewProfile_i.java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── sqlinjection │ │ ├── ListStaffSqlInjection.java │ │ ├── LoginSqlInjection.java │ │ ├── SQLInjection.java │ │ └── ViewProfileSqlInjection.java │ └── resources │ └── plugin │ └── SQLInjection │ ├── images │ ├── lesson1_SearchWindow.jpg │ ├── lesson1_header.jpg │ ├── lesson1_loginWindow.jpg │ ├── lesson1_menu.jpg │ └── lesson1_workspace.jpg │ ├── jsp │ ├── EditProfile.jsp │ ├── ListStaff.jsp │ ├── Login.jsp │ ├── SQLInjection.css │ ├── SQLInjection.jsp │ ├── SearchStaff.jsp │ ├── ViewProfile.jsp │ └── error.jsp │ └── lessonPlans │ ├── en │ └── SQLInjection.html │ └── ru │ └── SQLInjection.html ├── sql-numeric-injection ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── SqlNumericInjection.java │ └── resources │ └── plugin │ ├── SqlNumericInjection │ ├── lessonPlans │ │ ├── de │ │ │ └── SqlNumericInjection.html │ │ ├── en │ │ │ └── SqlNumericInjection.html │ │ └── ru │ │ │ └── SqlNumericInjection.html │ └── lessonSolutions │ │ └── en │ │ ├── SqlNumericInjection.html │ │ └── SqlNumericInjection_files │ │ ├── colorschememapping.xml │ │ ├── filelist.xml │ │ ├── image001.png │ │ ├── image002.jpg │ │ ├── image003.png │ │ ├── image004.jpg │ │ ├── image005.png │ │ ├── image006.jpg │ │ ├── numericinjection.png │ │ ├── numericinjection_solved.png │ │ └── themedata.thmx │ └── i18n │ ├── WebGoatLabels.properties │ ├── WebGoatLabels_de.properties │ ├── WebGoatLabels_fr.properties │ └── WebGoatLabels_ru.properties ├── sql-string-injection ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── SqlStringInjection.java │ └── resources │ └── plugin │ ├── SqlStringInjection │ ├── lessonPlans │ │ ├── de │ │ │ └── SqlStringInjection.html │ │ ├── en │ │ │ └── SqlStringInjection.html │ │ └── ru │ │ │ └── SqlNumericInjection.html │ └── lessonSolutions │ │ └── en │ │ ├── SqlStringInjection.html │ │ └── SqlStringInjection_files │ │ ├── colorschememapping.xml │ │ ├── filelist.xml │ │ ├── image001.png │ │ ├── image003.png │ │ ├── image005.jpg │ │ ├── image006.jpg │ │ └── themedata.thmx │ └── i18n │ ├── WebGoatLabels.properties │ ├── WebGoatLabels_de.properties │ ├── WebGoatLabels_fr.properties │ └── WebGoatLabels_ru.properties ├── stored-xss ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── StoredXss.java │ └── resources │ └── plugin │ ├── StoredXss │ ├── lessonPlans │ │ ├── de │ │ │ └── StoredXss.html │ │ ├── en │ │ │ └── StoredXss.html │ │ └── ru │ │ │ └── StoredXss.html │ └── lessonSolutions │ │ └── en │ │ ├── StoredXss.html │ │ └── StoredXss_files │ │ ├── colorschememapping.xml │ │ ├── filelist.xml │ │ ├── image001.png │ │ ├── image003.png │ │ ├── image005.png │ │ ├── image007.jpg │ │ ├── image008.jpg │ │ ├── image009.jpg │ │ └── themedata.thmx │ └── i18n │ ├── WebGoatLabels.properties │ ├── WebGoatLabels_de.properties │ ├── WebGoatLabels_fr.properties │ └── WebGoatLabels_ru.properties ├── thread-safety-problem ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── ThreadSafetyProblem.java │ └── resources │ └── plugin │ └── ThreadSafetyProblem │ ├── lessonPlans │ ├── en │ │ └── ThreadSafetyProblem.html │ └── ru │ │ └── ThreadSafetyProblem.html │ └── lessonSolutions │ └── en │ ├── ThreadSafetyProblem.html │ └── ThreadSafetyProblem_files │ ├── colorschememapping.xml │ ├── filelist.xml │ ├── image001.png │ ├── image002.jpg │ ├── image003.png │ ├── image004.jpg │ ├── image007.png │ ├── image009.jpg │ └── themedata.thmx ├── trace-xss ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── TraceXSS.java │ └── resources │ └── plugin │ └── TraceXSS │ ├── lessonPlans │ ├── en │ │ └── TraceXSS.html │ └── ru │ │ └── TraceXSS.html │ └── lessonSolutions │ └── en │ ├── TraceXSS.html │ └── TraceXSS_files │ ├── colorschememapping.xml │ ├── filelist.xml │ ├── image001.png │ ├── image002.jpg │ └── themedata.thmx ├── unchecked-email ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── UncheckedEmail.java │ └── resources │ └── plugin │ └── UncheckedEmail │ ├── lessonPlans │ ├── en │ │ └── UncheckedEmail.html │ └── ru │ │ └── UncheckedEmail.html │ └── lessonSolutions │ └── en │ ├── UncheckedEmail.html │ └── UncheckedEmail_files │ ├── colorschememapping.xml │ ├── filelist.xml │ ├── image001.png │ ├── image002.jpg │ ├── image003.png │ ├── image004.jpg │ ├── image005.png │ ├── image006.jpg │ ├── image007.png │ ├── image008.jpg │ └── themedata.thmx ├── weak-authentication-cookie ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── WeakAuthenticationCookie.java │ └── resources │ └── plugin │ ├── WeakAuthenticationCookie │ ├── lessonPlans │ │ ├── de │ │ │ └── WeakAuthenticationCookie.html │ │ ├── en │ │ │ └── WeakAuthenticationCookie.html │ │ └── ru │ │ │ └── WeakAuthenticationCookie.html │ └── lessonSolutions │ │ └── en │ │ ├── WeakAuthenticationCookie.html │ │ └── WeakAuthenticationCookie_files │ │ ├── colorschememapping.xml │ │ ├── filelist.xml │ │ ├── image001.png │ │ ├── image003.png │ │ ├── image005.png │ │ ├── image007.png │ │ ├── image009.png │ │ ├── image011.png │ │ ├── image013.png │ │ ├── image015.png │ │ ├── image017.png │ │ ├── image019.jpg │ │ ├── image020.jpg │ │ ├── image021.jpg │ │ ├── image022.jpg │ │ ├── image023.jpg │ │ ├── image024.jpg │ │ ├── image025.jpg │ │ ├── image026.jpg │ │ ├── image027.jpg │ │ └── themedata.thmx │ └── i18n │ ├── WebGoatLabels.properties │ ├── WebGoatLabels_de.properties │ ├── WebGoatLabels_fr.properties │ └── WebGoatLabels_ru.properties ├── weak-session-id ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── WeakSessionID.java │ └── resources │ └── plugin │ └── WeakSessionID │ ├── lessonPlans │ ├── en │ │ └── WeakSessionID.html │ └── ru │ │ └── WeakSessionID.html │ └── lessonSolutions │ └── en │ ├── WeakSessionID.html │ └── WeakSessionID_files │ ├── image001.jpg │ ├── image002.jpg │ ├── image003.jpg │ ├── image004.jpg │ ├── image005.jpg │ └── image006.jpg ├── ws-sax-injection ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── WsSAXInjection.java │ └── resources │ └── plugin │ └── WsSAXInjection │ ├── lessonPlans │ ├── en │ │ └── WsSAXInjection.html │ └── ru │ │ └── WsSAXInjection.html │ └── lessonSolutions │ └── en │ ├── WsSAXInjection.html │ └── WsSAXInjection_files │ ├── colorschememapping.xml │ ├── filelist.xml │ ├── image001.png │ ├── image002.jpg │ ├── image003.png │ ├── image004.jpg │ ├── image005.png │ ├── image006.jpg │ ├── image007.png │ ├── image008.jpg │ ├── image009.png │ ├── image010.jpg │ └── themedata.thmx ├── ws-sql-injection ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── WsSqlInjection.java │ └── resources │ └── plugin │ └── WsSqlInjection │ ├── lessonPlans │ ├── en │ │ └── WsSqlInjection.html │ └── ru │ │ └── WsSqlInjection.html │ └── lessonSolutions │ └── en │ ├── WsSqlInjection.html │ └── WsSqlInjection_files │ ├── colorschememapping.xml │ ├── filelist.xml │ ├── image001.png │ ├── image002.jpg │ ├── image003.png │ ├── image004.jpg │ ├── image005.png │ ├── image006.jpg │ ├── image007.png │ ├── image008.jpg │ └── themedata.thmx ├── wsdl-scanning ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── WSDLScanning.java │ └── resources │ └── plugin │ └── WSDLScanning │ ├── lessonPlans │ ├── en │ │ └── WSDLScanning.html │ └── ru │ │ └── WSDLScanning.html │ └── lessonSolutions │ └── en │ ├── WSDLScanning.html │ └── WSDLScanning_files │ ├── colorschememapping.xml │ ├── filelist.xml │ ├── image001.png │ ├── image003.png │ ├── image005.png │ ├── image007.png │ ├── image009.jpg │ ├── image010.jpg │ ├── image011.jpg │ ├── image012.jpg │ └── themedata.thmx ├── xml-injection ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── XMLInjection.java │ └── resources │ └── plugin │ └── XMLInjection │ ├── js │ └── xmlInjection.js │ ├── lessonPlans │ ├── en │ │ └── XMLInjection.html │ └── ru │ │ └── XMLInjection.html │ └── lessonSolutions │ └── en │ ├── XMLInjection.html │ └── XMLInjection_files │ ├── colorschememapping.xml │ ├── filelist.xml │ ├── image001.png │ ├── image003.png │ ├── image005.png │ ├── image007.png │ ├── image009.png │ ├── image011.png │ ├── image013.png │ ├── image015.png │ ├── image017.jpg │ ├── image018.jpg │ ├── image019.jpg │ ├── image020.jpg │ ├── image021.jpg │ ├── image022.jpg │ ├── image023.jpg │ ├── image024.jpg │ └── themedata.thmx ├── xpath-injection ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ └── XPATHInjection.java │ └── resources │ └── plugin │ └── XPATHInjection │ ├── lessonPlans │ ├── en │ │ └── XPATHInjection.html │ └── ru │ │ └── XPATHInjection.html │ ├── lessonSolutions │ └── en │ │ ├── XPATHInjection.html │ │ └── XPATHInjection_files │ │ ├── colorschememapping.xml │ │ ├── filelist.xml │ │ ├── image001.png │ │ ├── image003.png │ │ ├── image005.png │ │ ├── image007.jpg │ │ ├── image008.jpg │ │ ├── image009.jpg │ │ └── themedata.thmx │ └── xml │ └── EmployeesData.xml ├── xxe ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── owasp │ │ └── webgoat │ │ └── plugin │ │ ├── Flight.java │ │ ├── FlightsRepo.java │ │ ├── SearchForm.java │ │ └── XXE.java │ └── resources │ └── plugin │ └── XXE │ ├── csv │ └── flights.txt │ ├── js │ └── xxe.js │ ├── lessonPlans │ └── en │ │ └── XXE.html │ └── lessonSolutions │ └── en │ ├── XXE.html │ └── XXE_files │ ├── colorschememapping.xml │ ├── filelist.xml │ └── themedata.thmx └── zip-bomb ├── pom.xml └── src └── main └── java └── org └── owasp └── webgoat └── plugin └── ZipBomb.java /access-control-matrix/src/main/resources/plugin/AccessControlMatrix/images/aspect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/access-control-matrix/src/main/resources/plugin/AccessControlMatrix/images/aspect.jpg -------------------------------------------------------------------------------- /access-control-matrix/src/main/resources/plugin/AccessControlMatrix/lessonSolutions/en/AccessControlMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/access-control-matrix/src/main/resources/plugin/AccessControlMatrix/lessonSolutions/en/AccessControlMatrix.html -------------------------------------------------------------------------------- /access-control-matrix/src/main/resources/plugin/AccessControlMatrix/lessonSolutions/en/AccessControlMatrix_files/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/access-control-matrix/src/main/resources/plugin/AccessControlMatrix/lessonSolutions/en/AccessControlMatrix_files/Thumbs.db -------------------------------------------------------------------------------- /access-control-matrix/src/main/resources/plugin/AccessControlMatrix/lessonSolutions/en/AccessControlMatrix_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/access-control-matrix/src/main/resources/plugin/AccessControlMatrix/lessonSolutions/en/AccessControlMatrix_files/image001.png -------------------------------------------------------------------------------- /access-control-matrix/src/main/resources/plugin/AccessControlMatrix/lessonSolutions/en/AccessControlMatrix_files/image002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/access-control-matrix/src/main/resources/plugin/AccessControlMatrix/lessonSolutions/en/AccessControlMatrix_files/image002.jpg -------------------------------------------------------------------------------- /access-control-matrix/src/main/resources/plugin/AccessControlMatrix/lessonSolutions/en/AccessControlMatrix_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/access-control-matrix/src/main/resources/plugin/AccessControlMatrix/lessonSolutions/en/AccessControlMatrix_files/image003.png -------------------------------------------------------------------------------- /access-control-matrix/src/main/resources/plugin/AccessControlMatrix/lessonSolutions/en/AccessControlMatrix_files/image004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/access-control-matrix/src/main/resources/plugin/AccessControlMatrix/lessonSolutions/en/AccessControlMatrix_files/image004.jpg -------------------------------------------------------------------------------- /access-control-matrix/src/main/resources/plugin/AccessControlMatrix/lessonSolutions/en/AccessControlMatrix_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/access-control-matrix/src/main/resources/plugin/AccessControlMatrix/lessonSolutions/en/AccessControlMatrix_files/themedata.thmx -------------------------------------------------------------------------------- /back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors.html -------------------------------------------------------------------------------- /back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors_files/image001.png -------------------------------------------------------------------------------- /back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors_files/image003.png -------------------------------------------------------------------------------- /back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors_files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors_files/image005.png -------------------------------------------------------------------------------- /back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors_files/image007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors_files/image007.png -------------------------------------------------------------------------------- /back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors_files/image009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors_files/image009.png -------------------------------------------------------------------------------- /back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors_files/image011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors_files/image011.png -------------------------------------------------------------------------------- /back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors_files/image013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors_files/image013.jpg -------------------------------------------------------------------------------- /back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors_files/image014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors_files/image014.jpg -------------------------------------------------------------------------------- /back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors_files/image015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors_files/image015.jpg -------------------------------------------------------------------------------- /back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors_files/image016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors_files/image016.jpg -------------------------------------------------------------------------------- /back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors_files/image017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors_files/image017.jpg -------------------------------------------------------------------------------- /back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors_files/image018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors_files/image018.jpg -------------------------------------------------------------------------------- /back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/back-doors/src/main/resources/plugin/BackDoors/lessonSolutions/en/BackDoors_files/themedata.thmx -------------------------------------------------------------------------------- /basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonPlans/de/BasicAuthentication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonPlans/de/BasicAuthentication.html -------------------------------------------------------------------------------- /basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication.html -------------------------------------------------------------------------------- /basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image001.png -------------------------------------------------------------------------------- /basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image003.png -------------------------------------------------------------------------------- /basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image005.png -------------------------------------------------------------------------------- /basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image007.png -------------------------------------------------------------------------------- /basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image009.png -------------------------------------------------------------------------------- /basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image011.png -------------------------------------------------------------------------------- /basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image013.png -------------------------------------------------------------------------------- /basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image015.png -------------------------------------------------------------------------------- /basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image017.png -------------------------------------------------------------------------------- /basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image019.png -------------------------------------------------------------------------------- /basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image021.png -------------------------------------------------------------------------------- /basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image023.png -------------------------------------------------------------------------------- /basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image025.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image025.jpg -------------------------------------------------------------------------------- /basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image026.jpg -------------------------------------------------------------------------------- /basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image027.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image027.jpg -------------------------------------------------------------------------------- /basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image028.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image028.jpg -------------------------------------------------------------------------------- /basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image029.jpg -------------------------------------------------------------------------------- /basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image030.jpg -------------------------------------------------------------------------------- /basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image031.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image031.jpg -------------------------------------------------------------------------------- /basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image032.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image032.jpg -------------------------------------------------------------------------------- /basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image033.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image033.jpg -------------------------------------------------------------------------------- /basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image034.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image034.jpg -------------------------------------------------------------------------------- /basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image035.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image035.jpg -------------------------------------------------------------------------------- /basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image036.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/image036.jpg -------------------------------------------------------------------------------- /basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/basic-authentication/src/main/resources/plugin/BasicAuthentication/lessonSolutions/en/BasicAuthentication_files/themedata.thmx -------------------------------------------------------------------------------- /bypass-html-field-restrictions/src/main/resources/plugin/i18n/WebGoatLabels_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/bypass-html-field-restrictions/src/main/resources/plugin/i18n/WebGoatLabels_de.properties -------------------------------------------------------------------------------- /challenge/src/main/resources/plugin/challenge/lessonPlans/de/ChallengeScreen.html: -------------------------------------------------------------------------------- 1 |
2 |

Lesson Plan Title: Putting it all together

3 |

4 |

Concept / Topic To Teach:

5 | This lesson creates a challenge that will help the student apply all that they have learned.
6 | General Goal(s):
7 | Display the secret message. -------------------------------------------------------------------------------- /client-side-filtering/src/main/resources/plugin/ClientSideFiltering/images/lesson1_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/client-side-filtering/src/main/resources/plugin/ClientSideFiltering/images/lesson1_header.jpg -------------------------------------------------------------------------------- /client-side-filtering/src/main/resources/plugin/ClientSideFiltering/images/lesson1_workspace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/client-side-filtering/src/main/resources/plugin/ClientSideFiltering/images/lesson1_workspace.jpg -------------------------------------------------------------------------------- /client-side-filtering/src/main/resources/plugin/ClientSideFiltering/js/formate.css: -------------------------------------------------------------------------------- 1 | * { font-family:"Arial","sans-serif"; } 2 | code { font-family:"Courier New"; font-size:10pt; } -------------------------------------------------------------------------------- /client-side-filtering/src/main/resources/plugin/ClientSideFiltering/lessonSolutions/en/ClientSideFiltering_files/clientside_firebug.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/client-side-filtering/src/main/resources/plugin/ClientSideFiltering/lessonSolutions/en/ClientSideFiltering_files/clientside_firebug.jpg -------------------------------------------------------------------------------- /command-injection/src/main/resources/plugin/CommandInjection/lessonSolutions/en/CommandInjection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/command-injection/src/main/resources/plugin/CommandInjection/lessonSolutions/en/CommandInjection.html -------------------------------------------------------------------------------- /command-injection/src/main/resources/plugin/CommandInjection/lessonSolutions/en/CommandInjection_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/command-injection/src/main/resources/plugin/CommandInjection/lessonSolutions/en/CommandInjection_files/image001.png -------------------------------------------------------------------------------- /command-injection/src/main/resources/plugin/CommandInjection/lessonSolutions/en/CommandInjection_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/command-injection/src/main/resources/plugin/CommandInjection/lessonSolutions/en/CommandInjection_files/image003.png -------------------------------------------------------------------------------- /command-injection/src/main/resources/plugin/CommandInjection/lessonSolutions/en/CommandInjection_files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/command-injection/src/main/resources/plugin/CommandInjection/lessonSolutions/en/CommandInjection_files/image005.png -------------------------------------------------------------------------------- /command-injection/src/main/resources/plugin/CommandInjection/lessonSolutions/en/CommandInjection_files/image007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/command-injection/src/main/resources/plugin/CommandInjection/lessonSolutions/en/CommandInjection_files/image007.jpg -------------------------------------------------------------------------------- /command-injection/src/main/resources/plugin/CommandInjection/lessonSolutions/en/CommandInjection_files/image008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/command-injection/src/main/resources/plugin/CommandInjection/lessonSolutions/en/CommandInjection_files/image008.jpg -------------------------------------------------------------------------------- /command-injection/src/main/resources/plugin/CommandInjection/lessonSolutions/en/CommandInjection_files/image009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/command-injection/src/main/resources/plugin/CommandInjection/lessonSolutions/en/CommandInjection_files/image009.jpg -------------------------------------------------------------------------------- /command-injection/src/main/resources/plugin/CommandInjection/lessonSolutions/en/CommandInjection_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/command-injection/src/main/resources/plugin/CommandInjection/lessonSolutions/en/CommandInjection_files/themedata.thmx -------------------------------------------------------------------------------- /concurrency-cart/src/main/resources/plugin/ConcurrencyCart/lessonSolutions/en/ConcurrencyCart_files/image001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/concurrency-cart/src/main/resources/plugin/ConcurrencyCart/lessonSolutions/en/ConcurrencyCart_files/image001.jpg -------------------------------------------------------------------------------- /concurrency-cart/src/main/resources/plugin/ConcurrencyCart/lessonSolutions/en/ConcurrencyCart_files/image002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/concurrency-cart/src/main/resources/plugin/ConcurrencyCart/lessonSolutions/en/ConcurrencyCart_files/image002.jpg -------------------------------------------------------------------------------- /concurrency-cart/src/main/resources/plugin/ConcurrencyCart/lessonSolutions/en/ConcurrencyCart_files/image003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/concurrency-cart/src/main/resources/plugin/ConcurrencyCart/lessonSolutions/en/ConcurrencyCart_files/image003.jpg -------------------------------------------------------------------------------- /cross-site-scripting/src/main/resources/plugin/CrossSiteScripting/images/lesson1_SearchWindow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/cross-site-scripting/src/main/resources/plugin/CrossSiteScripting/images/lesson1_SearchWindow.jpg -------------------------------------------------------------------------------- /cross-site-scripting/src/main/resources/plugin/CrossSiteScripting/images/lesson1_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/cross-site-scripting/src/main/resources/plugin/CrossSiteScripting/images/lesson1_header.jpg -------------------------------------------------------------------------------- /cross-site-scripting/src/main/resources/plugin/CrossSiteScripting/images/lesson1_loginWindow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/cross-site-scripting/src/main/resources/plugin/CrossSiteScripting/images/lesson1_loginWindow.jpg -------------------------------------------------------------------------------- /cross-site-scripting/src/main/resources/plugin/CrossSiteScripting/images/lesson1_menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/cross-site-scripting/src/main/resources/plugin/CrossSiteScripting/images/lesson1_menu.jpg -------------------------------------------------------------------------------- /cross-site-scripting/src/main/resources/plugin/CrossSiteScripting/images/lesson1_workspace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/cross-site-scripting/src/main/resources/plugin/CrossSiteScripting/images/lesson1_workspace.jpg -------------------------------------------------------------------------------- /cross-site-scripting/src/main/resources/plugin/CrossSiteScripting/jsp/error.jsp: -------------------------------------------------------------------------------- 1 | <%@ page contentType="text/html; charset=ISO-8859-1" language="java" 2 | errorPage="" %> 3 |


An error has occurred. 4 | -------------------------------------------------------------------------------- /csrf-prompt-by-pass/src/main/resources/plugin/CsrfPromptByPass/lessonSolutions/en/CsrfPromptByPass_files/iframePromptHack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/csrf-prompt-by-pass/src/main/resources/plugin/CsrfPromptByPass/lessonSolutions/en/CsrfPromptByPass_files/iframePromptHack.png -------------------------------------------------------------------------------- /csrf-prompt-by-pass/src/main/resources/plugin/CsrfPromptByPass/lessonSolutions/en/CsrfPromptByPass_files/iframePromptHacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/csrf-prompt-by-pass/src/main/resources/plugin/CsrfPromptByPass/lessonSolutions/en/CsrfPromptByPass_files/iframePromptHacked.png -------------------------------------------------------------------------------- /csrf-prompt-by-pass/src/main/resources/plugin/CsrfPromptByPass/lessonSolutions/en/CsrfPromptByPass_files/imgPromptHack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/csrf-prompt-by-pass/src/main/resources/plugin/CsrfPromptByPass/lessonSolutions/en/CsrfPromptByPass_files/imgPromptHack.png -------------------------------------------------------------------------------- /csrf-prompt-by-pass/src/main/resources/plugin/CsrfPromptByPass/lessonSolutions/en/CsrfPromptByPass_files/transferFundsComplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/csrf-prompt-by-pass/src/main/resources/plugin/CsrfPromptByPass/lessonSolutions/en/CsrfPromptByPass_files/transferFundsComplete.png -------------------------------------------------------------------------------- /csrf-prompt-by-pass/src/main/resources/plugin/CsrfPromptByPass/lessonSolutions/en/CsrfPromptByPass_files/transferFundsHack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/csrf-prompt-by-pass/src/main/resources/plugin/CsrfPromptByPass/lessonSolutions/en/CsrfPromptByPass_files/transferFundsHack.png -------------------------------------------------------------------------------- /csrf-prompt-by-pass/src/main/resources/plugin/CsrfPromptByPass/lessonSolutions/en/CsrfPromptByPass_files/transferFundsPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/csrf-prompt-by-pass/src/main/resources/plugin/CsrfPromptByPass/lessonSolutions/en/CsrfPromptByPass_files/transferFundsPage.png -------------------------------------------------------------------------------- /csrf-prompt-by-pass/src/main/resources/plugin/CsrfPromptByPass/lessonSolutions/en/CsrfPromptByPass_files/transferFundsPrompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/csrf-prompt-by-pass/src/main/resources/plugin/CsrfPromptByPass/lessonSolutions/en/CsrfPromptByPass_files/transferFundsPrompt.png -------------------------------------------------------------------------------- /csrf-token-by-pass/src/main/resources/plugin/CsrfTokenByPass/lessonSolutions/en/CsrfTokenByPass_files/tokenHack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/csrf-token-by-pass/src/main/resources/plugin/CsrfTokenByPass/lessonSolutions/en/CsrfTokenByPass_files/tokenHack.png -------------------------------------------------------------------------------- /csrf-token-by-pass/src/main/resources/plugin/CsrfTokenByPass/lessonSolutions/en/CsrfTokenByPass_files/tokenHacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/csrf-token-by-pass/src/main/resources/plugin/CsrfTokenByPass/lessonSolutions/en/CsrfTokenByPass_files/tokenHacked.png -------------------------------------------------------------------------------- /csrf-token-by-pass/src/main/resources/plugin/CsrfTokenByPass/lessonSolutions/en/CsrfTokenByPass_files/tokenPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/csrf-token-by-pass/src/main/resources/plugin/CsrfTokenByPass/lessonSolutions/en/CsrfTokenByPass_files/tokenPage.png -------------------------------------------------------------------------------- /csrf/src/main/resources/plugin/CSRF/lessonSolutions/en/CSRF_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/csrf/src/main/resources/plugin/CSRF/lessonSolutions/en/CSRF_files/image001.png -------------------------------------------------------------------------------- /csrf/src/main/resources/plugin/CSRF/lessonSolutions/en/CSRF_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/csrf/src/main/resources/plugin/CSRF/lessonSolutions/en/CSRF_files/image003.png -------------------------------------------------------------------------------- /csrf/src/main/resources/plugin/CSRF/lessonSolutions/en/CSRF_files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/csrf/src/main/resources/plugin/CSRF/lessonSolutions/en/CSRF_files/image005.png -------------------------------------------------------------------------------- /csrf/src/main/resources/plugin/CSRF/lessonSolutions/en/CSRF_files/image007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/csrf/src/main/resources/plugin/CSRF/lessonSolutions/en/CSRF_files/image007.png -------------------------------------------------------------------------------- /csrf/src/main/resources/plugin/CSRF/lessonSolutions/en/CSRF_files/image009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/csrf/src/main/resources/plugin/CSRF/lessonSolutions/en/CSRF_files/image009.png -------------------------------------------------------------------------------- /csrf/src/main/resources/plugin/CSRF/lessonSolutions/en/CSRF_files/image011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/csrf/src/main/resources/plugin/CSRF/lessonSolutions/en/CSRF_files/image011.jpg -------------------------------------------------------------------------------- /csrf/src/main/resources/plugin/CSRF/lessonSolutions/en/CSRF_files/image012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/csrf/src/main/resources/plugin/CSRF/lessonSolutions/en/CSRF_files/image012.jpg -------------------------------------------------------------------------------- /csrf/src/main/resources/plugin/CSRF/lessonSolutions/en/CSRF_files/image013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/csrf/src/main/resources/plugin/CSRF/lessonSolutions/en/CSRF_files/image013.jpg -------------------------------------------------------------------------------- /csrf/src/main/resources/plugin/CSRF/lessonSolutions/en/CSRF_files/image014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/csrf/src/main/resources/plugin/CSRF/lessonSolutions/en/CSRF_files/image014.jpg -------------------------------------------------------------------------------- /csrf/src/main/resources/plugin/CSRF/lessonSolutions/en/CSRF_files/image015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/csrf/src/main/resources/plugin/CSRF/lessonSolutions/en/CSRF_files/image015.jpg -------------------------------------------------------------------------------- /csrf/src/main/resources/plugin/CSRF/lessonSolutions/en/CSRF_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/csrf/src/main/resources/plugin/CSRF/lessonSolutions/en/CSRF_files/themedata.thmx -------------------------------------------------------------------------------- /db-cross-site-scripting/src/main/resources/plugin/DBCrossSiteScripting/images/lesson1_SearchWindow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/db-cross-site-scripting/src/main/resources/plugin/DBCrossSiteScripting/images/lesson1_SearchWindow.jpg -------------------------------------------------------------------------------- /db-cross-site-scripting/src/main/resources/plugin/DBCrossSiteScripting/images/lesson1_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/db-cross-site-scripting/src/main/resources/plugin/DBCrossSiteScripting/images/lesson1_header.jpg -------------------------------------------------------------------------------- /db-cross-site-scripting/src/main/resources/plugin/DBCrossSiteScripting/images/lesson1_loginWindow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/db-cross-site-scripting/src/main/resources/plugin/DBCrossSiteScripting/images/lesson1_loginWindow.jpg -------------------------------------------------------------------------------- /db-cross-site-scripting/src/main/resources/plugin/DBCrossSiteScripting/images/lesson1_menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/db-cross-site-scripting/src/main/resources/plugin/DBCrossSiteScripting/images/lesson1_menu.jpg -------------------------------------------------------------------------------- /db-cross-site-scripting/src/main/resources/plugin/DBCrossSiteScripting/images/lesson1_workspace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/db-cross-site-scripting/src/main/resources/plugin/DBCrossSiteScripting/images/lesson1_workspace.jpg -------------------------------------------------------------------------------- /db-cross-site-scripting/src/main/resources/plugin/DBCrossSiteScripting/jsp/error.jsp: -------------------------------------------------------------------------------- 1 | <%@ page contentType="text/html; charset=ISO-8859-1" language="java" 2 | errorPage="" %> 3 |


An error has occurred. 4 | -------------------------------------------------------------------------------- /db-sql-injection/src/main/resources/plugin/DBSQLInjection/images/lesson1_SearchWindow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/db-sql-injection/src/main/resources/plugin/DBSQLInjection/images/lesson1_SearchWindow.jpg -------------------------------------------------------------------------------- /db-sql-injection/src/main/resources/plugin/DBSQLInjection/images/lesson1_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/db-sql-injection/src/main/resources/plugin/DBSQLInjection/images/lesson1_header.jpg -------------------------------------------------------------------------------- /db-sql-injection/src/main/resources/plugin/DBSQLInjection/images/lesson1_loginWindow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/db-sql-injection/src/main/resources/plugin/DBSQLInjection/images/lesson1_loginWindow.jpg -------------------------------------------------------------------------------- /db-sql-injection/src/main/resources/plugin/DBSQLInjection/images/lesson1_menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/db-sql-injection/src/main/resources/plugin/DBSQLInjection/images/lesson1_menu.jpg -------------------------------------------------------------------------------- /db-sql-injection/src/main/resources/plugin/DBSQLInjection/images/lesson1_workspace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/db-sql-injection/src/main/resources/plugin/DBSQLInjection/images/lesson1_workspace.jpg -------------------------------------------------------------------------------- /db-sql-injection/src/main/resources/plugin/DBSQLInjection/jsp/error.jsp: -------------------------------------------------------------------------------- 1 | <%@ page contentType="text/html; charset=ISO-8859-1" language="java" 2 | errorPage="" %> 3 |


An error has occurred. 4 | -------------------------------------------------------------------------------- /dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection.html -------------------------------------------------------------------------------- /dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/image001.png -------------------------------------------------------------------------------- /dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/image002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/image002.jpg -------------------------------------------------------------------------------- /dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/image003.png -------------------------------------------------------------------------------- /dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/image004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/image004.jpg -------------------------------------------------------------------------------- /dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/image005.png -------------------------------------------------------------------------------- /dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/image006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/image006.jpg -------------------------------------------------------------------------------- /dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/image007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/image007.png -------------------------------------------------------------------------------- /dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/image008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/image008.jpg -------------------------------------------------------------------------------- /dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/image008fix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/image008fix.jpg -------------------------------------------------------------------------------- /dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/image009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/image009.png -------------------------------------------------------------------------------- /dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/image010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/image010.jpg -------------------------------------------------------------------------------- /dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/image011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/image011.png -------------------------------------------------------------------------------- /dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/image012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/image012.jpg -------------------------------------------------------------------------------- /dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/dom-injection/src/main/resources/plugin/DOMInjection/lessonSolutions/en/DOMInjection_files/themedata.thmx -------------------------------------------------------------------------------- /dom-xss/src/main/resources/plugin/DOMXSS/images/owasp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/dom-xss/src/main/resources/plugin/DOMXSS/images/owasp.jpg -------------------------------------------------------------------------------- /dom-xss/src/main/resources/plugin/DOMXSS/js/DOMXSS.js: -------------------------------------------------------------------------------- 1 | function displayGreeting(name) { 2 | if (name != ''){ 3 | document.getElementById("greeting").innerHTML="Hello, " + name+ "!"; 4 | } 5 | } -------------------------------------------------------------------------------- /dom-xss/src/main/resources/plugin/DOMXSS/js/escape.js: -------------------------------------------------------------------------------- 1 | function escapeHTML (str) { 2 | var div = document.createElement('div'); 3 | var text = document.createTextNode(str); 4 | div.appendChild(text); 5 | return div.innerHTML; 6 | } 7 | -------------------------------------------------------------------------------- /dom-xss/src/main/resources/plugin/DOMXSS/lessonSolutions/en/DOMXSS_files/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/dom-xss/src/main/resources/plugin/DOMXSS/lessonSolutions/en/DOMXSS_files/Thumbs.db -------------------------------------------------------------------------------- /dom-xss/src/main/resources/plugin/DOMXSS/lessonSolutions/en/DOMXSS_files/image001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/dom-xss/src/main/resources/plugin/DOMXSS/lessonSolutions/en/DOMXSS_files/image001.jpg -------------------------------------------------------------------------------- /dom-xss/src/main/resources/plugin/DOMXSS/lessonSolutions/en/DOMXSS_files/image002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/dom-xss/src/main/resources/plugin/DOMXSS/lessonSolutions/en/DOMXSS_files/image002.jpg -------------------------------------------------------------------------------- /dom-xss/src/main/resources/plugin/DOMXSS/lessonSolutions/en/DOMXSS_files/image003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/dom-xss/src/main/resources/plugin/DOMXSS/lessonSolutions/en/DOMXSS_files/image003.jpg -------------------------------------------------------------------------------- /dom-xss/src/main/resources/plugin/DOMXSS/lessonSolutions/en/DOMXSS_files/image004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/dom-xss/src/main/resources/plugin/DOMXSS/lessonSolutions/en/DOMXSS_files/image004.jpg -------------------------------------------------------------------------------- /dos-login/src/main/resources/plugin/DOS_Login/lessonSolutions/en/DOS_Login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/dos-login/src/main/resources/plugin/DOS_Login/lessonSolutions/en/DOS_Login.html -------------------------------------------------------------------------------- /dos-login/src/main/resources/plugin/DOS_Login/lessonSolutions/en/DOS_Login_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/dos-login/src/main/resources/plugin/DOS_Login/lessonSolutions/en/DOS_Login_files/image001.png -------------------------------------------------------------------------------- /dos-login/src/main/resources/plugin/DOS_Login/lessonSolutions/en/DOS_Login_files/image002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/dos-login/src/main/resources/plugin/DOS_Login/lessonSolutions/en/DOS_Login_files/image002.jpg -------------------------------------------------------------------------------- /dos-login/src/main/resources/plugin/DOS_Login/lessonSolutions/en/DOS_Login_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/dos-login/src/main/resources/plugin/DOS_Login/lessonSolutions/en/DOS_Login_files/image003.png -------------------------------------------------------------------------------- /dos-login/src/main/resources/plugin/DOS_Login/lessonSolutions/en/DOS_Login_files/image004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/dos-login/src/main/resources/plugin/DOS_Login/lessonSolutions/en/DOS_Login_files/image004.jpg -------------------------------------------------------------------------------- /dos-login/src/main/resources/plugin/DOS_Login/lessonSolutions/en/DOS_Login_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/dos-login/src/main/resources/plugin/DOS_Login/lessonSolutions/en/DOS_Login_files/themedata.thmx -------------------------------------------------------------------------------- /fail-open-authentication/src/main/resources/plugin/FailOpenAuthentication/lessonSolutions/en/FailOpenAuthentication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/fail-open-authentication/src/main/resources/plugin/FailOpenAuthentication/lessonSolutions/en/FailOpenAuthentication.html -------------------------------------------------------------------------------- /fail-open-authentication/src/main/resources/plugin/FailOpenAuthentication/lessonSolutions/en/FailOpenAuthentication_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/fail-open-authentication/src/main/resources/plugin/FailOpenAuthentication/lessonSolutions/en/FailOpenAuthentication_files/image001.png -------------------------------------------------------------------------------- /fail-open-authentication/src/main/resources/plugin/FailOpenAuthentication/lessonSolutions/en/FailOpenAuthentication_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/fail-open-authentication/src/main/resources/plugin/FailOpenAuthentication/lessonSolutions/en/FailOpenAuthentication_files/image003.png -------------------------------------------------------------------------------- /fail-open-authentication/src/main/resources/plugin/FailOpenAuthentication/lessonSolutions/en/FailOpenAuthentication_files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/fail-open-authentication/src/main/resources/plugin/FailOpenAuthentication/lessonSolutions/en/FailOpenAuthentication_files/image005.png -------------------------------------------------------------------------------- /fail-open-authentication/src/main/resources/plugin/FailOpenAuthentication/lessonSolutions/en/FailOpenAuthentication_files/image007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/fail-open-authentication/src/main/resources/plugin/FailOpenAuthentication/lessonSolutions/en/FailOpenAuthentication_files/image007.png -------------------------------------------------------------------------------- /fail-open-authentication/src/main/resources/plugin/FailOpenAuthentication/lessonSolutions/en/FailOpenAuthentication_files/image009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/fail-open-authentication/src/main/resources/plugin/FailOpenAuthentication/lessonSolutions/en/FailOpenAuthentication_files/image009.jpg -------------------------------------------------------------------------------- /fail-open-authentication/src/main/resources/plugin/FailOpenAuthentication/lessonSolutions/en/FailOpenAuthentication_files/image010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/fail-open-authentication/src/main/resources/plugin/FailOpenAuthentication/lessonSolutions/en/FailOpenAuthentication_files/image010.jpg -------------------------------------------------------------------------------- /fail-open-authentication/src/main/resources/plugin/FailOpenAuthentication/lessonSolutions/en/FailOpenAuthentication_files/image011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/fail-open-authentication/src/main/resources/plugin/FailOpenAuthentication/lessonSolutions/en/FailOpenAuthentication_files/image011.jpg -------------------------------------------------------------------------------- /fail-open-authentication/src/main/resources/plugin/FailOpenAuthentication/lessonSolutions/en/FailOpenAuthentication_files/image012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/fail-open-authentication/src/main/resources/plugin/FailOpenAuthentication/lessonSolutions/en/FailOpenAuthentication_files/image012.jpg -------------------------------------------------------------------------------- /fail-open-authentication/src/main/resources/plugin/FailOpenAuthentication/lessonSolutions/en/FailOpenAuthentication_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/fail-open-authentication/src/main/resources/plugin/FailOpenAuthentication/lessonSolutions/en/FailOpenAuthentication_files/themedata.thmx -------------------------------------------------------------------------------- /forced-browsing/src/main/resources/plugin/ForcedBrowsing/lessonSolutions/en/ForcedBrowsing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/forced-browsing/src/main/resources/plugin/ForcedBrowsing/lessonSolutions/en/ForcedBrowsing.html -------------------------------------------------------------------------------- /forced-browsing/src/main/resources/plugin/ForcedBrowsing/lessonSolutions/en/ForcedBrowsing_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/forced-browsing/src/main/resources/plugin/ForcedBrowsing/lessonSolutions/en/ForcedBrowsing_files/image001.png -------------------------------------------------------------------------------- /forced-browsing/src/main/resources/plugin/ForcedBrowsing/lessonSolutions/en/ForcedBrowsing_files/image002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/forced-browsing/src/main/resources/plugin/ForcedBrowsing/lessonSolutions/en/ForcedBrowsing_files/image002.jpg -------------------------------------------------------------------------------- /forced-browsing/src/main/resources/plugin/ForcedBrowsing/lessonSolutions/en/ForcedBrowsing_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/forced-browsing/src/main/resources/plugin/ForcedBrowsing/lessonSolutions/en/ForcedBrowsing_files/image003.png -------------------------------------------------------------------------------- /forced-browsing/src/main/resources/plugin/ForcedBrowsing/lessonSolutions/en/ForcedBrowsing_files/image004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/forced-browsing/src/main/resources/plugin/ForcedBrowsing/lessonSolutions/en/ForcedBrowsing_files/image004.jpg -------------------------------------------------------------------------------- /forced-browsing/src/main/resources/plugin/ForcedBrowsing/lessonSolutions/en/ForcedBrowsing_files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/forced-browsing/src/main/resources/plugin/ForcedBrowsing/lessonSolutions/en/ForcedBrowsing_files/image005.png -------------------------------------------------------------------------------- /forced-browsing/src/main/resources/plugin/ForcedBrowsing/lessonSolutions/en/ForcedBrowsing_files/image006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/forced-browsing/src/main/resources/plugin/ForcedBrowsing/lessonSolutions/en/ForcedBrowsing_files/image006.jpg -------------------------------------------------------------------------------- /forced-browsing/src/main/resources/plugin/ForcedBrowsing/lessonSolutions/en/ForcedBrowsing_files/image007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/forced-browsing/src/main/resources/plugin/ForcedBrowsing/lessonSolutions/en/ForcedBrowsing_files/image007.png -------------------------------------------------------------------------------- /forced-browsing/src/main/resources/plugin/ForcedBrowsing/lessonSolutions/en/ForcedBrowsing_files/image008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/forced-browsing/src/main/resources/plugin/ForcedBrowsing/lessonSolutions/en/ForcedBrowsing_files/image008.jpg -------------------------------------------------------------------------------- /forced-browsing/src/main/resources/plugin/ForcedBrowsing/lessonSolutions/en/ForcedBrowsing_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/forced-browsing/src/main/resources/plugin/ForcedBrowsing/lessonSolutions/en/ForcedBrowsing_files/themedata.thmx -------------------------------------------------------------------------------- /forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword.html -------------------------------------------------------------------------------- /forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image001.png -------------------------------------------------------------------------------- /forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image003.png -------------------------------------------------------------------------------- /forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image005.png -------------------------------------------------------------------------------- /forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image007.png -------------------------------------------------------------------------------- /forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image009.png -------------------------------------------------------------------------------- /forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image011.png -------------------------------------------------------------------------------- /forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image013.png -------------------------------------------------------------------------------- /forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image015.jpg -------------------------------------------------------------------------------- /forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image016.jpg -------------------------------------------------------------------------------- /forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image017.jpg -------------------------------------------------------------------------------- /forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image018.jpg -------------------------------------------------------------------------------- /forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image019.jpg -------------------------------------------------------------------------------- /forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image020.jpg -------------------------------------------------------------------------------- /forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/image021.jpg -------------------------------------------------------------------------------- /forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/forgot-password/src/main/resources/plugin/ForgotPassword/lessonSolutions/en/ForgotPassword_files/themedata.thmx -------------------------------------------------------------------------------- /hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonPlans/de/HiddenFieldTampering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonPlans/de/HiddenFieldTampering.html -------------------------------------------------------------------------------- /hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonSolutions/en/HiddenFieldTampering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonSolutions/en/HiddenFieldTampering.html -------------------------------------------------------------------------------- /hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonSolutions/en/HiddenFieldTampering_files/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonSolutions/en/HiddenFieldTampering_files/Thumbs.db -------------------------------------------------------------------------------- /hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonSolutions/en/HiddenFieldTampering_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonSolutions/en/HiddenFieldTampering_files/image001.png -------------------------------------------------------------------------------- /hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonSolutions/en/HiddenFieldTampering_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonSolutions/en/HiddenFieldTampering_files/image003.png -------------------------------------------------------------------------------- /hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonSolutions/en/HiddenFieldTampering_files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonSolutions/en/HiddenFieldTampering_files/image005.png -------------------------------------------------------------------------------- /hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonSolutions/en/HiddenFieldTampering_files/image007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonSolutions/en/HiddenFieldTampering_files/image007.png -------------------------------------------------------------------------------- /hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonSolutions/en/HiddenFieldTampering_files/image009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonSolutions/en/HiddenFieldTampering_files/image009.png -------------------------------------------------------------------------------- /hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonSolutions/en/HiddenFieldTampering_files/image011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonSolutions/en/HiddenFieldTampering_files/image011.jpg -------------------------------------------------------------------------------- /hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonSolutions/en/HiddenFieldTampering_files/image012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonSolutions/en/HiddenFieldTampering_files/image012.jpg -------------------------------------------------------------------------------- /hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonSolutions/en/HiddenFieldTampering_files/image013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonSolutions/en/HiddenFieldTampering_files/image013.jpg -------------------------------------------------------------------------------- /hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonSolutions/en/HiddenFieldTampering_files/image014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonSolutions/en/HiddenFieldTampering_files/image014.jpg -------------------------------------------------------------------------------- /hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonSolutions/en/HiddenFieldTampering_files/image015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonSolutions/en/HiddenFieldTampering_files/image015.jpg -------------------------------------------------------------------------------- /hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonSolutions/en/HiddenFieldTampering_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/hidden-field-tampering/src/main/resources/plugin/HiddenFieldTampering/lessonSolutions/en/HiddenFieldTampering_files/themedata.thmx -------------------------------------------------------------------------------- /how-to-work/src/main/resources/plugin/HowToWork/lessonPlans/en/HowToWork_files/HowToUse_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/how-to-work/src/main/resources/plugin/HowToWork/lessonPlans/en/HowToWork_files/HowToUse_2.jpg -------------------------------------------------------------------------------- /how-to-work/src/main/resources/plugin/HowToWork/lessonPlans/en/HowToWork_files/HowToUse_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/how-to-work/src/main/resources/plugin/HowToWork/lessonPlans/en/HowToWork_files/HowToUse_3.jpg -------------------------------------------------------------------------------- /how-to-work/src/main/resources/plugin/HowToWork/lessonPlans/en/HowToWork_files/UsefulTools-ZAP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/how-to-work/src/main/resources/plugin/HowToWork/lessonPlans/en/HowToWork_files/UsefulTools-ZAP.png -------------------------------------------------------------------------------- /how-to-work/src/main/resources/plugin/HowToWork/lessonPlans/en/HowToWork_files/UsefulTools-ZAP_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/how-to-work/src/main/resources/plugin/HowToWork/lessonPlans/en/HowToWork_files/UsefulTools-ZAP_1.png -------------------------------------------------------------------------------- /how-to-work/src/main/resources/plugin/HowToWork/lessonPlans/en/HowToWork_files/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/how-to-work/src/main/resources/plugin/HowToWork/lessonPlans/en/HowToWork_files/interface.png -------------------------------------------------------------------------------- /how-to-work/src/main/resources/plugin/HowToWork/lessonPlans/en/HowToWork_files/wireshark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/how-to-work/src/main/resources/plugin/HowToWork/lessonPlans/en/HowToWork_files/wireshark.png -------------------------------------------------------------------------------- /how-to-work/src/main/resources/plugin/HowToWork/lessonSolutions/en/HowToWork_files/HowToUse_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/how-to-work/src/main/resources/plugin/HowToWork/lessonSolutions/en/HowToWork_files/HowToUse_2.jpg -------------------------------------------------------------------------------- /how-to-work/src/main/resources/plugin/HowToWork/lessonSolutions/en/HowToWork_files/HowToUse_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/how-to-work/src/main/resources/plugin/HowToWork/lessonSolutions/en/HowToWork_files/HowToUse_3.jpg -------------------------------------------------------------------------------- /how-to-work/src/main/resources/plugin/HowToWork/lessonSolutions/en/HowToWork_files/UsefulTools-ZAP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/how-to-work/src/main/resources/plugin/HowToWork/lessonSolutions/en/HowToWork_files/UsefulTools-ZAP.png -------------------------------------------------------------------------------- /how-to-work/src/main/resources/plugin/HowToWork/lessonSolutions/en/HowToWork_files/UsefulTools-ZAP_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/how-to-work/src/main/resources/plugin/HowToWork/lessonSolutions/en/HowToWork_files/UsefulTools-ZAP_1.png -------------------------------------------------------------------------------- /how-to-work/src/main/resources/plugin/HowToWork/lessonSolutions/en/HowToWork_files/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/how-to-work/src/main/resources/plugin/HowToWork/lessonSolutions/en/HowToWork_files/interface.png -------------------------------------------------------------------------------- /how-to-work/src/main/resources/plugin/HowToWork/lessonSolutions/en/HowToWork_files/wireshark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/how-to-work/src/main/resources/plugin/HowToWork/lessonSolutions/en/HowToWork_files/wireshark.png -------------------------------------------------------------------------------- /html-clues/src/main/resources/plugin/HtmlClues/lessonPlans/de/HtmlClues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/html-clues/src/main/resources/plugin/HtmlClues/lessonPlans/de/HtmlClues.html -------------------------------------------------------------------------------- /html-clues/src/main/resources/plugin/HtmlClues/lessonSolutions/en/HtmlClues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/html-clues/src/main/resources/plugin/HtmlClues/lessonSolutions/en/HtmlClues.html -------------------------------------------------------------------------------- /html-clues/src/main/resources/plugin/HtmlClues/lessonSolutions/en/HtmlClues_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/html-clues/src/main/resources/plugin/HtmlClues/lessonSolutions/en/HtmlClues_files/image001.png -------------------------------------------------------------------------------- /html-clues/src/main/resources/plugin/HtmlClues/lessonSolutions/en/HtmlClues_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/html-clues/src/main/resources/plugin/HtmlClues/lessonSolutions/en/HtmlClues_files/image003.png -------------------------------------------------------------------------------- /html-clues/src/main/resources/plugin/HtmlClues/lessonSolutions/en/HtmlClues_files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/html-clues/src/main/resources/plugin/HtmlClues/lessonSolutions/en/HtmlClues_files/image005.png -------------------------------------------------------------------------------- /html-clues/src/main/resources/plugin/HtmlClues/lessonSolutions/en/HtmlClues_files/image007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/html-clues/src/main/resources/plugin/HtmlClues/lessonSolutions/en/HtmlClues_files/image007.png -------------------------------------------------------------------------------- /html-clues/src/main/resources/plugin/HtmlClues/lessonSolutions/en/HtmlClues_files/image009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/html-clues/src/main/resources/plugin/HtmlClues/lessonSolutions/en/HtmlClues_files/image009.png -------------------------------------------------------------------------------- /html-clues/src/main/resources/plugin/HtmlClues/lessonSolutions/en/HtmlClues_files/image011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/html-clues/src/main/resources/plugin/HtmlClues/lessonSolutions/en/HtmlClues_files/image011.jpg -------------------------------------------------------------------------------- /html-clues/src/main/resources/plugin/HtmlClues/lessonSolutions/en/HtmlClues_files/image012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/html-clues/src/main/resources/plugin/HtmlClues/lessonSolutions/en/HtmlClues_files/image012.jpg -------------------------------------------------------------------------------- /html-clues/src/main/resources/plugin/HtmlClues/lessonSolutions/en/HtmlClues_files/image013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/html-clues/src/main/resources/plugin/HtmlClues/lessonSolutions/en/HtmlClues_files/image013.jpg -------------------------------------------------------------------------------- /html-clues/src/main/resources/plugin/HtmlClues/lessonSolutions/en/HtmlClues_files/image014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/html-clues/src/main/resources/plugin/HtmlClues/lessonSolutions/en/HtmlClues_files/image014.jpg -------------------------------------------------------------------------------- /html-clues/src/main/resources/plugin/HtmlClues/lessonSolutions/en/HtmlClues_files/image015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/html-clues/src/main/resources/plugin/HtmlClues/lessonSolutions/en/HtmlClues_files/image015.jpg -------------------------------------------------------------------------------- /html-clues/src/main/resources/plugin/HtmlClues/lessonSolutions/en/HtmlClues_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/html-clues/src/main/resources/plugin/HtmlClues/lessonSolutions/en/HtmlClues_files/themedata.thmx -------------------------------------------------------------------------------- /html-clues/src/main/resources/plugin/i18n/WebGoatLabels_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/html-clues/src/main/resources/plugin/i18n/WebGoatLabels_de.properties -------------------------------------------------------------------------------- /http-basics/src/main/resources/plugin/HttpBasics/lessonPlans/de/HttpBasics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/http-basics/src/main/resources/plugin/HttpBasics/lessonPlans/de/HttpBasics.html -------------------------------------------------------------------------------- /http-basics/src/main/resources/plugin/HttpBasics/lessonSolutions/en/HttpBasics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/http-basics/src/main/resources/plugin/HttpBasics/lessonSolutions/en/HttpBasics.html -------------------------------------------------------------------------------- /http-basics/src/main/resources/plugin/HttpBasics/lessonSolutions/en/HttpBasics_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/http-basics/src/main/resources/plugin/HttpBasics/lessonSolutions/en/HttpBasics_files/image001.png -------------------------------------------------------------------------------- /http-basics/src/main/resources/plugin/HttpBasics/lessonSolutions/en/HttpBasics_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/http-basics/src/main/resources/plugin/HttpBasics/lessonSolutions/en/HttpBasics_files/image003.png -------------------------------------------------------------------------------- /http-basics/src/main/resources/plugin/HttpBasics/lessonSolutions/en/HttpBasics_files/image005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/http-basics/src/main/resources/plugin/HttpBasics/lessonSolutions/en/HttpBasics_files/image005.jpg -------------------------------------------------------------------------------- /http-basics/src/main/resources/plugin/HttpBasics/lessonSolutions/en/HttpBasics_files/image006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/http-basics/src/main/resources/plugin/HttpBasics/lessonSolutions/en/HttpBasics_files/image006.jpg -------------------------------------------------------------------------------- /http-basics/src/main/resources/plugin/HttpBasics/lessonSolutions/en/HttpBasics_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/http-basics/src/main/resources/plugin/HttpBasics/lessonSolutions/en/HttpBasics_files/themedata.thmx -------------------------------------------------------------------------------- /http-basics/src/main/resources/plugin/HttpBasics/lessonSolutions/en/HttpBasics_files/webscarab1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/http-basics/src/main/resources/plugin/HttpBasics/lessonSolutions/en/HttpBasics_files/webscarab1.jpg -------------------------------------------------------------------------------- /http-basics/src/main/resources/plugin/HttpBasics/lessonSolutions/en/HttpBasics_files/webscarab2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/http-basics/src/main/resources/plugin/HttpBasics/lessonSolutions/en/HttpBasics_files/webscarab2.jpg -------------------------------------------------------------------------------- /http-basics/src/main/resources/plugin/i18n/WebGoatLabels.properties: -------------------------------------------------------------------------------- 1 | EnterYourName=Enter your Name 2 | Go!=Go! 3 | -------------------------------------------------------------------------------- /http-basics/src/main/resources/plugin/i18n/WebGoatLabels_de.properties: -------------------------------------------------------------------------------- 1 | EnterYourName=Geben Sie Ihren Namen ein 2 | Go!=Los gehts! 3 | -------------------------------------------------------------------------------- /http-basics/src/main/resources/plugin/i18n/WebGoatLabels_fr.properties: -------------------------------------------------------------------------------- 1 | EnterYourName=Entrez votre nom 2 | Go!=Go! 3 | -------------------------------------------------------------------------------- /http-basics/src/main/resources/plugin/i18n/WebGoatLabels_ru.properties: -------------------------------------------------------------------------------- 1 | EnterYourName=\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0432\u0430\u0448\u0435 \u0438\u043c\u044f 2 | Go!=\u0412\u043f\u0435\u0440\u0451\u0434! 3 | -------------------------------------------------------------------------------- /http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly.html -------------------------------------------------------------------------------- /http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image001.png -------------------------------------------------------------------------------- /http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image003.png -------------------------------------------------------------------------------- /http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image005.png -------------------------------------------------------------------------------- /http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image007.png -------------------------------------------------------------------------------- /http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image009.png -------------------------------------------------------------------------------- /http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image011.png -------------------------------------------------------------------------------- /http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image013.png -------------------------------------------------------------------------------- /http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image015.jpg -------------------------------------------------------------------------------- /http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image016.jpg -------------------------------------------------------------------------------- /http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image017.jpg -------------------------------------------------------------------------------- /http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image018.jpg -------------------------------------------------------------------------------- /http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image019.jpg -------------------------------------------------------------------------------- /http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image020.jpg -------------------------------------------------------------------------------- /http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/image021.jpg -------------------------------------------------------------------------------- /http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/http-only/src/main/resources/plugin/HttpOnly/lessonSolutions/en/HttpOnly_files/themedata.thmx -------------------------------------------------------------------------------- /insecure-login/src/main/resources/plugin/InsecureLogin/images/lesson1_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/insecure-login/src/main/resources/plugin/InsecureLogin/images/lesson1_header.jpg -------------------------------------------------------------------------------- /insecure-login/src/main/resources/plugin/InsecureLogin/images/lesson1_workspace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/insecure-login/src/main/resources/plugin/InsecureLogin/images/lesson1_workspace.jpg -------------------------------------------------------------------------------- /insecure-login/src/main/resources/plugin/InsecureLogin/lessonSolutions/en/InsecureLogin_files/wireshark1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/insecure-login/src/main/resources/plugin/InsecureLogin/lessonSolutions/en/InsecureLogin_files/wireshark1.png -------------------------------------------------------------------------------- /java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonPlans/de/JavaScriptValidation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonPlans/de/JavaScriptValidation.html -------------------------------------------------------------------------------- /java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation.html -------------------------------------------------------------------------------- /java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image001.png -------------------------------------------------------------------------------- /java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image002.jpg -------------------------------------------------------------------------------- /java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image003.png -------------------------------------------------------------------------------- /java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image004.jpg -------------------------------------------------------------------------------- /java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image005.png -------------------------------------------------------------------------------- /java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image006.jpg -------------------------------------------------------------------------------- /java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image007.png -------------------------------------------------------------------------------- /java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image008.jpg -------------------------------------------------------------------------------- /java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image009.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image009.gif -------------------------------------------------------------------------------- /java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image010.png -------------------------------------------------------------------------------- /java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image011.jpg -------------------------------------------------------------------------------- /java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image012.png -------------------------------------------------------------------------------- /java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image013.jpg -------------------------------------------------------------------------------- /java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image014.png -------------------------------------------------------------------------------- /java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image015.jpg -------------------------------------------------------------------------------- /java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image016.png -------------------------------------------------------------------------------- /java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image017.jpg -------------------------------------------------------------------------------- /java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image018.png -------------------------------------------------------------------------------- /java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image019.jpg -------------------------------------------------------------------------------- /java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image020.png -------------------------------------------------------------------------------- /java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image021.jpg -------------------------------------------------------------------------------- /java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image022.png -------------------------------------------------------------------------------- /java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/image023.jpg -------------------------------------------------------------------------------- /java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/java-script-validation/src/main/resources/plugin/JavaScriptValidation/lessonSolutions/en/JavaScriptValidation_files/themedata.thmx -------------------------------------------------------------------------------- /json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection.html -------------------------------------------------------------------------------- /json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection_files/image001.png -------------------------------------------------------------------------------- /json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection_files/image003.png -------------------------------------------------------------------------------- /json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection_files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection_files/image005.png -------------------------------------------------------------------------------- /json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection_files/image007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection_files/image007.png -------------------------------------------------------------------------------- /json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection_files/image009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection_files/image009.png -------------------------------------------------------------------------------- /json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection_files/image011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection_files/image011.png -------------------------------------------------------------------------------- /json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection_files/image013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection_files/image013.jpg -------------------------------------------------------------------------------- /json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection_files/image014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection_files/image014.jpg -------------------------------------------------------------------------------- /json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection_files/image015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection_files/image015.jpg -------------------------------------------------------------------------------- /json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection_files/image016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection_files/image016.jpg -------------------------------------------------------------------------------- /json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection_files/image017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection_files/image017.jpg -------------------------------------------------------------------------------- /json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection_files/image018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection_files/image018.jpg -------------------------------------------------------------------------------- /json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/json-injection/src/main/resources/plugin/JSONInjection/lessonSolutions/en/JSONInjection_files/themedata.thmx -------------------------------------------------------------------------------- /lesson-converter/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/lesson-converter/readme.md -------------------------------------------------------------------------------- /lesson-template-legacy/src/main/resources/plugin/NewLegacyLesson/lessonPlans/de/NewLegacyLesson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/lesson-template-legacy/src/main/resources/plugin/NewLegacyLesson/lessonPlans/de/NewLegacyLesson.html -------------------------------------------------------------------------------- /lesson-template-legacy/src/main/resources/plugin/NewLegacyLesson/lessonSolutions/en/NewLegacyLesson_files/image002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/lesson-template-legacy/src/main/resources/plugin/NewLegacyLesson/lessonSolutions/en/NewLegacyLesson_files/image002.png -------------------------------------------------------------------------------- /lesson-template-legacy/src/main/resources/plugin/NewLegacyLesson/lessonSolutions/en/NewLegacyLesson_files/image004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/lesson-template-legacy/src/main/resources/plugin/NewLegacyLesson/lessonSolutions/en/NewLegacyLesson_files/image004.png -------------------------------------------------------------------------------- /lesson-template-legacy/src/main/resources/plugin/NewLegacyLesson/lessonSolutions/en/NewLegacyLesson_files/themedata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/lesson-template-legacy/src/main/resources/plugin/NewLegacyLesson/lessonSolutions/en/NewLegacyLesson_files/themedata.xml -------------------------------------------------------------------------------- /lesson-template-legacy/src/main/resources/plugin/i18n/WebGoatLabels.properties: -------------------------------------------------------------------------------- 1 | #NewLegacyLesson.java 2 | NewLegacyLessonHint1=The first hint gives a minor clue on what to do. 3 | NewLegacyLessonHint2=The next hints provide additional guidance to help solve a lesson 4 | NewLegacyLessonHint3=The last hint should provide the cut/paste solution or steps to solve the lesson. 5 | -------------------------------------------------------------------------------- /log-spoofing/src/main/resources/plugin/LogSpoofing/lessonPlans/de/LogSpoofing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/log-spoofing/src/main/resources/plugin/LogSpoofing/lessonPlans/de/LogSpoofing.html -------------------------------------------------------------------------------- /log-spoofing/src/main/resources/plugin/LogSpoofing/lessonSolutions/en/LogSpoofing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/log-spoofing/src/main/resources/plugin/LogSpoofing/lessonSolutions/en/LogSpoofing.html -------------------------------------------------------------------------------- /log-spoofing/src/main/resources/plugin/LogSpoofing/lessonSolutions/en/LogSpoofing_files/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/log-spoofing/src/main/resources/plugin/LogSpoofing/lessonSolutions/en/LogSpoofing_files/Thumbs.db -------------------------------------------------------------------------------- /log-spoofing/src/main/resources/plugin/LogSpoofing/lessonSolutions/en/LogSpoofing_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/log-spoofing/src/main/resources/plugin/LogSpoofing/lessonSolutions/en/LogSpoofing_files/image001.png -------------------------------------------------------------------------------- /log-spoofing/src/main/resources/plugin/LogSpoofing/lessonSolutions/en/LogSpoofing_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/log-spoofing/src/main/resources/plugin/LogSpoofing/lessonSolutions/en/LogSpoofing_files/image003.png -------------------------------------------------------------------------------- /log-spoofing/src/main/resources/plugin/LogSpoofing/lessonSolutions/en/LogSpoofing_files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/log-spoofing/src/main/resources/plugin/LogSpoofing/lessonSolutions/en/LogSpoofing_files/image005.png -------------------------------------------------------------------------------- /log-spoofing/src/main/resources/plugin/LogSpoofing/lessonSolutions/en/LogSpoofing_files/image007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/log-spoofing/src/main/resources/plugin/LogSpoofing/lessonSolutions/en/LogSpoofing_files/image007.jpg -------------------------------------------------------------------------------- /log-spoofing/src/main/resources/plugin/LogSpoofing/lessonSolutions/en/LogSpoofing_files/image008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/log-spoofing/src/main/resources/plugin/LogSpoofing/lessonSolutions/en/LogSpoofing_files/image008.jpg -------------------------------------------------------------------------------- /log-spoofing/src/main/resources/plugin/LogSpoofing/lessonSolutions/en/LogSpoofing_files/image009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/log-spoofing/src/main/resources/plugin/LogSpoofing/lessonSolutions/en/LogSpoofing_files/image009.jpg -------------------------------------------------------------------------------- /log-spoofing/src/main/resources/plugin/LogSpoofing/lessonSolutions/en/LogSpoofing_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/log-spoofing/src/main/resources/plugin/LogSpoofing/lessonSolutions/en/LogSpoofing_files/themedata.thmx -------------------------------------------------------------------------------- /log-spoofing/src/main/resources/plugin/i18n/WebGoatLabels_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/log-spoofing/src/main/resources/plugin/i18n/WebGoatLabels_fr.properties -------------------------------------------------------------------------------- /malicious-file-execution/src/main/resources/plugin/MaliciousFileExecution/lessonSolutions/en/MaliciousFileExecution_files/image001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/malicious-file-execution/src/main/resources/plugin/MaliciousFileExecution/lessonSolutions/en/MaliciousFileExecution_files/image001.jpg -------------------------------------------------------------------------------- /malicious-file-execution/src/main/resources/plugin/MaliciousFileExecution/lessonSolutions/en/MaliciousFileExecution_files/image002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/malicious-file-execution/src/main/resources/plugin/MaliciousFileExecution/lessonSolutions/en/MaliciousFileExecution_files/image002.jpg -------------------------------------------------------------------------------- /multi-level-login1/src/main/resources/plugin/MultiLevelLogin1/images/lesson1_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/multi-level-login1/src/main/resources/plugin/MultiLevelLogin1/images/lesson1_header.jpg -------------------------------------------------------------------------------- /multi-level-login1/src/main/resources/plugin/MultiLevelLogin1/images/lesson1_workspace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/multi-level-login1/src/main/resources/plugin/MultiLevelLogin1/images/lesson1_workspace.jpg -------------------------------------------------------------------------------- /multi-level-login1/src/main/resources/plugin/MultiLevelLogin1/lessonSolutions/en/MultiLevelLogin1_files/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/multi-level-login1/src/main/resources/plugin/MultiLevelLogin1/lessonSolutions/en/MultiLevelLogin1_files/login.png -------------------------------------------------------------------------------- /multi-level-login1/src/main/resources/plugin/MultiLevelLogin1/lessonSolutions/en/MultiLevelLogin1_files/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/multi-level-login1/src/main/resources/plugin/MultiLevelLogin1/lessonSolutions/en/MultiLevelLogin1_files/success.png -------------------------------------------------------------------------------- /multi-level-login1/src/main/resources/plugin/MultiLevelLogin1/lessonSolutions/en/MultiLevelLogin1_files/tan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/multi-level-login1/src/main/resources/plugin/MultiLevelLogin1/lessonSolutions/en/MultiLevelLogin1_files/tan.png -------------------------------------------------------------------------------- /multi-level-login1/src/main/resources/plugin/MultiLevelLogin1/lessonSolutions/en/MultiLevelLogin1_files/webscarab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/multi-level-login1/src/main/resources/plugin/MultiLevelLogin1/lessonSolutions/en/MultiLevelLogin1_files/webscarab.png -------------------------------------------------------------------------------- /multi-level-login2/src/main/resources/plugin/MultiLevelLogin2/lessonSolutions/en/MultiLevelLogin2_files/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/multi-level-login2/src/main/resources/plugin/MultiLevelLogin2/lessonSolutions/en/MultiLevelLogin2_files/success.png -------------------------------------------------------------------------------- /password-strength/src/main/resources/plugin/PasswordStrength/lessonSolutions/en/PasswordStrength_files/image001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/password-strength/src/main/resources/plugin/PasswordStrength/lessonSolutions/en/PasswordStrength_files/image001.jpg -------------------------------------------------------------------------------- /password-strength/src/main/resources/plugin/PasswordStrength/lessonSolutions/en/PasswordStrength_files/image002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/password-strength/src/main/resources/plugin/PasswordStrength/lessonSolutions/en/PasswordStrength_files/image002.jpg -------------------------------------------------------------------------------- /path-based-access-control/src/main/resources/plugin/PathBasedAccessControl/lessonPlans/de/PathBasedAccessControl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/path-based-access-control/src/main/resources/plugin/PathBasedAccessControl/lessonPlans/de/PathBasedAccessControl.html -------------------------------------------------------------------------------- /path-based-access-control/src/main/resources/plugin/PathBasedAccessControl/lessonSolutions/en/PathBasedAccessControl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/path-based-access-control/src/main/resources/plugin/PathBasedAccessControl/lessonSolutions/en/PathBasedAccessControl.html -------------------------------------------------------------------------------- /path-based-access-control/src/main/resources/plugin/PathBasedAccessControl/lessonSolutions/en/PathBasedAccessControl_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/path-based-access-control/src/main/resources/plugin/PathBasedAccessControl/lessonSolutions/en/PathBasedAccessControl_files/image001.png -------------------------------------------------------------------------------- /path-based-access-control/src/main/resources/plugin/PathBasedAccessControl/lessonSolutions/en/PathBasedAccessControl_files/image002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/path-based-access-control/src/main/resources/plugin/PathBasedAccessControl/lessonSolutions/en/PathBasedAccessControl_files/image002.jpg -------------------------------------------------------------------------------- /path-based-access-control/src/main/resources/plugin/PathBasedAccessControl/lessonSolutions/en/PathBasedAccessControl_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/path-based-access-control/src/main/resources/plugin/PathBasedAccessControl/lessonSolutions/en/PathBasedAccessControl_files/image003.png -------------------------------------------------------------------------------- /path-based-access-control/src/main/resources/plugin/PathBasedAccessControl/lessonSolutions/en/PathBasedAccessControl_files/image004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/path-based-access-control/src/main/resources/plugin/PathBasedAccessControl/lessonSolutions/en/PathBasedAccessControl_files/image004.jpg -------------------------------------------------------------------------------- /path-based-access-control/src/main/resources/plugin/PathBasedAccessControl/lessonSolutions/en/PathBasedAccessControl_files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/path-based-access-control/src/main/resources/plugin/PathBasedAccessControl/lessonSolutions/en/PathBasedAccessControl_files/image005.png -------------------------------------------------------------------------------- /path-based-access-control/src/main/resources/plugin/PathBasedAccessControl/lessonSolutions/en/PathBasedAccessControl_files/image006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/path-based-access-control/src/main/resources/plugin/PathBasedAccessControl/lessonSolutions/en/PathBasedAccessControl_files/image006.jpg -------------------------------------------------------------------------------- /path-based-access-control/src/main/resources/plugin/PathBasedAccessControl/lessonSolutions/en/PathBasedAccessControl_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/path-based-access-control/src/main/resources/plugin/PathBasedAccessControl/lessonSolutions/en/PathBasedAccessControl_files/themedata.thmx -------------------------------------------------------------------------------- /phishing/src/main/resources/plugin/Phishing/lessonSolutions/en/Phishing_files/image001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/phishing/src/main/resources/plugin/Phishing/lessonSolutions/en/Phishing_files/image001.jpg -------------------------------------------------------------------------------- /reflected-xss/src/main/resources/plugin/ReflectedXSS/lessonPlans/de/ReflectedXSS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/reflected-xss/src/main/resources/plugin/ReflectedXSS/lessonPlans/de/ReflectedXSS.html -------------------------------------------------------------------------------- /reflected-xss/src/main/resources/plugin/ReflectedXSS/lessonSolutions/en/ReflectedXSS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/reflected-xss/src/main/resources/plugin/ReflectedXSS/lessonSolutions/en/ReflectedXSS.html -------------------------------------------------------------------------------- /reflected-xss/src/main/resources/plugin/ReflectedXSS/lessonSolutions/en/ReflectedXSS_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/reflected-xss/src/main/resources/plugin/ReflectedXSS/lessonSolutions/en/ReflectedXSS_files/image001.png -------------------------------------------------------------------------------- /reflected-xss/src/main/resources/plugin/ReflectedXSS/lessonSolutions/en/ReflectedXSS_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/reflected-xss/src/main/resources/plugin/ReflectedXSS/lessonSolutions/en/ReflectedXSS_files/image003.png -------------------------------------------------------------------------------- /reflected-xss/src/main/resources/plugin/ReflectedXSS/lessonSolutions/en/ReflectedXSS_files/image005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/reflected-xss/src/main/resources/plugin/ReflectedXSS/lessonSolutions/en/ReflectedXSS_files/image005.jpg -------------------------------------------------------------------------------- /reflected-xss/src/main/resources/plugin/ReflectedXSS/lessonSolutions/en/ReflectedXSS_files/image006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/reflected-xss/src/main/resources/plugin/ReflectedXSS/lessonSolutions/en/ReflectedXSS_files/image006.jpg -------------------------------------------------------------------------------- /reflected-xss/src/main/resources/plugin/ReflectedXSS/lessonSolutions/en/ReflectedXSS_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/reflected-xss/src/main/resources/plugin/ReflectedXSS/lessonSolutions/en/ReflectedXSS_files/themedata.thmx -------------------------------------------------------------------------------- /remote-admin-flaw/src/main/resources/plugin/RemoteAdminFlaw/lessonPlans/de/RemoteAdminFlaw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/remote-admin-flaw/src/main/resources/plugin/RemoteAdminFlaw/lessonPlans/de/RemoteAdminFlaw.html -------------------------------------------------------------------------------- /remote-admin-flaw/src/main/resources/plugin/RemoteAdminFlaw/lessonSolutions/en/RemoteAdminFlaw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/remote-admin-flaw/src/main/resources/plugin/RemoteAdminFlaw/lessonSolutions/en/RemoteAdminFlaw.html -------------------------------------------------------------------------------- /remote-admin-flaw/src/main/resources/plugin/RemoteAdminFlaw/lessonSolutions/en/RemoteAdminFlaw_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/remote-admin-flaw/src/main/resources/plugin/RemoteAdminFlaw/lessonSolutions/en/RemoteAdminFlaw_files/image001.png -------------------------------------------------------------------------------- /remote-admin-flaw/src/main/resources/plugin/RemoteAdminFlaw/lessonSolutions/en/RemoteAdminFlaw_files/image002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/remote-admin-flaw/src/main/resources/plugin/RemoteAdminFlaw/lessonSolutions/en/RemoteAdminFlaw_files/image002.jpg -------------------------------------------------------------------------------- /remote-admin-flaw/src/main/resources/plugin/RemoteAdminFlaw/lessonSolutions/en/RemoteAdminFlaw_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/remote-admin-flaw/src/main/resources/plugin/RemoteAdminFlaw/lessonSolutions/en/RemoteAdminFlaw_files/image003.png -------------------------------------------------------------------------------- /remote-admin-flaw/src/main/resources/plugin/RemoteAdminFlaw/lessonSolutions/en/RemoteAdminFlaw_files/image004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/remote-admin-flaw/src/main/resources/plugin/RemoteAdminFlaw/lessonSolutions/en/RemoteAdminFlaw_files/image004.jpg -------------------------------------------------------------------------------- /remote-admin-flaw/src/main/resources/plugin/RemoteAdminFlaw/lessonSolutions/en/RemoteAdminFlaw_files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/remote-admin-flaw/src/main/resources/plugin/RemoteAdminFlaw/lessonSolutions/en/RemoteAdminFlaw_files/image005.png -------------------------------------------------------------------------------- /remote-admin-flaw/src/main/resources/plugin/RemoteAdminFlaw/lessonSolutions/en/RemoteAdminFlaw_files/image006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/remote-admin-flaw/src/main/resources/plugin/RemoteAdminFlaw/lessonSolutions/en/RemoteAdminFlaw_files/image006.jpg -------------------------------------------------------------------------------- /remote-admin-flaw/src/main/resources/plugin/RemoteAdminFlaw/lessonSolutions/en/RemoteAdminFlaw_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/remote-admin-flaw/src/main/resources/plugin/RemoteAdminFlaw/lessonSolutions/en/RemoteAdminFlaw_files/themedata.thmx -------------------------------------------------------------------------------- /role-based-access-control/src/main/resources/plugin/RoleBasedAccessControl/images/accessControl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/role-based-access-control/src/main/resources/plugin/RoleBasedAccessControl/images/accessControl.jpg -------------------------------------------------------------------------------- /role-based-access-control/src/main/resources/plugin/RoleBasedAccessControl/images/dbSchema.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/role-based-access-control/src/main/resources/plugin/RoleBasedAccessControl/images/dbSchema.jpg -------------------------------------------------------------------------------- /role-based-access-control/src/main/resources/plugin/RoleBasedAccessControl/images/lesson1_SearchWindow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/role-based-access-control/src/main/resources/plugin/RoleBasedAccessControl/images/lesson1_SearchWindow.jpg -------------------------------------------------------------------------------- /role-based-access-control/src/main/resources/plugin/RoleBasedAccessControl/images/lesson1_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/role-based-access-control/src/main/resources/plugin/RoleBasedAccessControl/images/lesson1_header.jpg -------------------------------------------------------------------------------- /role-based-access-control/src/main/resources/plugin/RoleBasedAccessControl/images/lesson1_loginWindow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/role-based-access-control/src/main/resources/plugin/RoleBasedAccessControl/images/lesson1_loginWindow.jpg -------------------------------------------------------------------------------- /role-based-access-control/src/main/resources/plugin/RoleBasedAccessControl/images/lesson1_menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/role-based-access-control/src/main/resources/plugin/RoleBasedAccessControl/images/lesson1_menu.jpg -------------------------------------------------------------------------------- /role-based-access-control/src/main/resources/plugin/RoleBasedAccessControl/images/lesson1_workspace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/role-based-access-control/src/main/resources/plugin/RoleBasedAccessControl/images/lesson1_workspace.jpg -------------------------------------------------------------------------------- /role-based-access-control/src/main/resources/plugin/RoleBasedAccessControl/images/orgChart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/role-based-access-control/src/main/resources/plugin/RoleBasedAccessControl/images/orgChart.jpg -------------------------------------------------------------------------------- /same-origin-policy-protection/src/main/resources/plugin/SameOriginPolicyProtection/jsp/sameOrigin.jsp: -------------------------------------------------------------------------------- 1 | Good Response -------------------------------------------------------------------------------- /session-fixation/src/main/resources/plugin/SessionFixation/lessonSolutions/en/SessionFixation_files/sf_stage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/session-fixation/src/main/resources/plugin/SessionFixation/lessonSolutions/en/SessionFixation_files/sf_stage1.png -------------------------------------------------------------------------------- /session-fixation/src/main/resources/plugin/SessionFixation/lessonSolutions/en/SessionFixation_files/sf_stage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/session-fixation/src/main/resources/plugin/SessionFixation/lessonSolutions/en/SessionFixation_files/sf_stage2.png -------------------------------------------------------------------------------- /session-fixation/src/main/resources/plugin/SessionFixation/lessonSolutions/en/SessionFixation_files/sf_stage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/session-fixation/src/main/resources/plugin/SessionFixation/lessonSolutions/en/SessionFixation_files/sf_stage3.png -------------------------------------------------------------------------------- /session-fixation/src/main/resources/plugin/SessionFixation/lessonSolutions/en/SessionFixation_files/sf_stage4_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/session-fixation/src/main/resources/plugin/SessionFixation/lessonSolutions/en/SessionFixation_files/sf_stage4_1.png -------------------------------------------------------------------------------- /session-fixation/src/main/resources/plugin/SessionFixation/lessonSolutions/en/SessionFixation_files/sf_stage4_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/session-fixation/src/main/resources/plugin/SessionFixation/lessonSolutions/en/SessionFixation_files/sf_stage4_2.png -------------------------------------------------------------------------------- /session-fixation/src/main/resources/plugin/SessionFixation/lessonSolutions/en/SessionFixation_files/sf_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/session-fixation/src/main/resources/plugin/SessionFixation/lessonSolutions/en/SessionFixation_files/sf_success.png -------------------------------------------------------------------------------- /session-fixation/src/main/resources/plugin/images/lesson1_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/session-fixation/src/main/resources/plugin/images/lesson1_header.jpg -------------------------------------------------------------------------------- /session-fixation/src/main/resources/plugin/images/lesson1_workspace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/session-fixation/src/main/resources/plugin/images/lesson1_workspace.jpg -------------------------------------------------------------------------------- /silent-transactions/src/main/resources/plugin/SilentTransactions/lessonPlans/en/SilentTransactions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/silent-transactions/src/main/resources/plugin/SilentTransactions/lessonPlans/en/SilentTransactions.html -------------------------------------------------------------------------------- /silent-transactions/src/main/resources/plugin/SilentTransactions/lessonSolutions/en/SilentTransactions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/silent-transactions/src/main/resources/plugin/SilentTransactions/lessonSolutions/en/SilentTransactions.html -------------------------------------------------------------------------------- /silent-transactions/src/main/resources/plugin/SilentTransactions/lessonSolutions/en/SilentTransactions_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/silent-transactions/src/main/resources/plugin/SilentTransactions/lessonSolutions/en/SilentTransactions_files/image001.png -------------------------------------------------------------------------------- /silent-transactions/src/main/resources/plugin/SilentTransactions/lessonSolutions/en/SilentTransactions_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/silent-transactions/src/main/resources/plugin/SilentTransactions/lessonSolutions/en/SilentTransactions_files/image003.png -------------------------------------------------------------------------------- /silent-transactions/src/main/resources/plugin/SilentTransactions/lessonSolutions/en/SilentTransactions_files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/silent-transactions/src/main/resources/plugin/SilentTransactions/lessonSolutions/en/SilentTransactions_files/image005.png -------------------------------------------------------------------------------- /silent-transactions/src/main/resources/plugin/SilentTransactions/lessonSolutions/en/SilentTransactions_files/image007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/silent-transactions/src/main/resources/plugin/SilentTransactions/lessonSolutions/en/SilentTransactions_files/image007.png -------------------------------------------------------------------------------- /silent-transactions/src/main/resources/plugin/SilentTransactions/lessonSolutions/en/SilentTransactions_files/image009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/silent-transactions/src/main/resources/plugin/SilentTransactions/lessonSolutions/en/SilentTransactions_files/image009.jpg -------------------------------------------------------------------------------- /silent-transactions/src/main/resources/plugin/SilentTransactions/lessonSolutions/en/SilentTransactions_files/image010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/silent-transactions/src/main/resources/plugin/SilentTransactions/lessonSolutions/en/SilentTransactions_files/image010.jpg -------------------------------------------------------------------------------- /silent-transactions/src/main/resources/plugin/SilentTransactions/lessonSolutions/en/SilentTransactions_files/image011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/silent-transactions/src/main/resources/plugin/SilentTransactions/lessonSolutions/en/SilentTransactions_files/image011.jpg -------------------------------------------------------------------------------- /silent-transactions/src/main/resources/plugin/SilentTransactions/lessonSolutions/en/SilentTransactions_files/image012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/silent-transactions/src/main/resources/plugin/SilentTransactions/lessonSolutions/en/SilentTransactions_files/image012.jpg -------------------------------------------------------------------------------- /silent-transactions/src/main/resources/plugin/SilentTransactions/lessonSolutions/en/SilentTransactions_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/silent-transactions/src/main/resources/plugin/SilentTransactions/lessonSolutions/en/SilentTransactions_files/themedata.thmx -------------------------------------------------------------------------------- /soap-request/src/main/resources/plugin/SoapRequest/lessonSolutions/en/SoapRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/soap-request/src/main/resources/plugin/SoapRequest/lessonSolutions/en/SoapRequest.html -------------------------------------------------------------------------------- /soap-request/src/main/resources/plugin/SoapRequest/lessonSolutions/en/SoapRequest_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/soap-request/src/main/resources/plugin/SoapRequest/lessonSolutions/en/SoapRequest_files/image001.png -------------------------------------------------------------------------------- /soap-request/src/main/resources/plugin/SoapRequest/lessonSolutions/en/SoapRequest_files/image002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/soap-request/src/main/resources/plugin/SoapRequest/lessonSolutions/en/SoapRequest_files/image002.jpg -------------------------------------------------------------------------------- /soap-request/src/main/resources/plugin/SoapRequest/lessonSolutions/en/SoapRequest_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/soap-request/src/main/resources/plugin/SoapRequest/lessonSolutions/en/SoapRequest_files/image003.png -------------------------------------------------------------------------------- /soap-request/src/main/resources/plugin/SoapRequest/lessonSolutions/en/SoapRequest_files/image004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/soap-request/src/main/resources/plugin/SoapRequest/lessonSolutions/en/SoapRequest_files/image004.jpg -------------------------------------------------------------------------------- /soap-request/src/main/resources/plugin/SoapRequest/lessonSolutions/en/SoapRequest_files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/soap-request/src/main/resources/plugin/SoapRequest/lessonSolutions/en/SoapRequest_files/image005.png -------------------------------------------------------------------------------- /soap-request/src/main/resources/plugin/SoapRequest/lessonSolutions/en/SoapRequest_files/image006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/soap-request/src/main/resources/plugin/SoapRequest/lessonSolutions/en/SoapRequest_files/image006.jpg -------------------------------------------------------------------------------- /soap-request/src/main/resources/plugin/SoapRequest/lessonSolutions/en/SoapRequest_files/image007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/soap-request/src/main/resources/plugin/SoapRequest/lessonSolutions/en/SoapRequest_files/image007.png -------------------------------------------------------------------------------- /soap-request/src/main/resources/plugin/SoapRequest/lessonSolutions/en/SoapRequest_files/image008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/soap-request/src/main/resources/plugin/SoapRequest/lessonSolutions/en/SoapRequest_files/image008.jpg -------------------------------------------------------------------------------- /soap-request/src/main/resources/plugin/SoapRequest/lessonSolutions/en/SoapRequest_files/image009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/soap-request/src/main/resources/plugin/SoapRequest/lessonSolutions/en/SoapRequest_files/image009.png -------------------------------------------------------------------------------- /soap-request/src/main/resources/plugin/SoapRequest/lessonSolutions/en/SoapRequest_files/image010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/soap-request/src/main/resources/plugin/SoapRequest/lessonSolutions/en/SoapRequest_files/image010.jpg -------------------------------------------------------------------------------- /soap-request/src/main/resources/plugin/SoapRequest/lessonSolutions/en/SoapRequest_files/image011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/soap-request/src/main/resources/plugin/SoapRequest/lessonSolutions/en/SoapRequest_files/image011.jpg -------------------------------------------------------------------------------- /soap-request/src/main/resources/plugin/SoapRequest/lessonSolutions/en/SoapRequest_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/soap-request/src/main/resources/plugin/SoapRequest/lessonSolutions/en/SoapRequest_files/themedata.thmx -------------------------------------------------------------------------------- /sql-injection/src/main/resources/plugin/SQLInjection/images/lesson1_SearchWindow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/sql-injection/src/main/resources/plugin/SQLInjection/images/lesson1_SearchWindow.jpg -------------------------------------------------------------------------------- /sql-injection/src/main/resources/plugin/SQLInjection/images/lesson1_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/sql-injection/src/main/resources/plugin/SQLInjection/images/lesson1_header.jpg -------------------------------------------------------------------------------- /sql-injection/src/main/resources/plugin/SQLInjection/images/lesson1_loginWindow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/sql-injection/src/main/resources/plugin/SQLInjection/images/lesson1_loginWindow.jpg -------------------------------------------------------------------------------- /sql-injection/src/main/resources/plugin/SQLInjection/images/lesson1_menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/sql-injection/src/main/resources/plugin/SQLInjection/images/lesson1_menu.jpg -------------------------------------------------------------------------------- /sql-injection/src/main/resources/plugin/SQLInjection/images/lesson1_workspace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/sql-injection/src/main/resources/plugin/SQLInjection/images/lesson1_workspace.jpg -------------------------------------------------------------------------------- /sql-injection/src/main/resources/plugin/SQLInjection/jsp/error.jsp: -------------------------------------------------------------------------------- 1 | <%@ page contentType="text/html; charset=ISO-8859-1" language="java" 2 | errorPage="" %> 3 |


An error has occurred. 4 | -------------------------------------------------------------------------------- /sql-numeric-injection/src/main/resources/plugin/SqlNumericInjection/lessonPlans/de/SqlNumericInjection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/sql-numeric-injection/src/main/resources/plugin/SqlNumericInjection/lessonPlans/de/SqlNumericInjection.html -------------------------------------------------------------------------------- /sql-numeric-injection/src/main/resources/plugin/SqlNumericInjection/lessonSolutions/en/SqlNumericInjection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/sql-numeric-injection/src/main/resources/plugin/SqlNumericInjection/lessonSolutions/en/SqlNumericInjection.html -------------------------------------------------------------------------------- /sql-numeric-injection/src/main/resources/plugin/SqlNumericInjection/lessonSolutions/en/SqlNumericInjection_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/sql-numeric-injection/src/main/resources/plugin/SqlNumericInjection/lessonSolutions/en/SqlNumericInjection_files/image001.png -------------------------------------------------------------------------------- /sql-numeric-injection/src/main/resources/plugin/SqlNumericInjection/lessonSolutions/en/SqlNumericInjection_files/image002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/sql-numeric-injection/src/main/resources/plugin/SqlNumericInjection/lessonSolutions/en/SqlNumericInjection_files/image002.jpg -------------------------------------------------------------------------------- /sql-numeric-injection/src/main/resources/plugin/SqlNumericInjection/lessonSolutions/en/SqlNumericInjection_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/sql-numeric-injection/src/main/resources/plugin/SqlNumericInjection/lessonSolutions/en/SqlNumericInjection_files/image003.png -------------------------------------------------------------------------------- /sql-numeric-injection/src/main/resources/plugin/SqlNumericInjection/lessonSolutions/en/SqlNumericInjection_files/image004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/sql-numeric-injection/src/main/resources/plugin/SqlNumericInjection/lessonSolutions/en/SqlNumericInjection_files/image004.jpg -------------------------------------------------------------------------------- /sql-numeric-injection/src/main/resources/plugin/SqlNumericInjection/lessonSolutions/en/SqlNumericInjection_files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/sql-numeric-injection/src/main/resources/plugin/SqlNumericInjection/lessonSolutions/en/SqlNumericInjection_files/image005.png -------------------------------------------------------------------------------- /sql-numeric-injection/src/main/resources/plugin/SqlNumericInjection/lessonSolutions/en/SqlNumericInjection_files/image006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/sql-numeric-injection/src/main/resources/plugin/SqlNumericInjection/lessonSolutions/en/SqlNumericInjection_files/image006.jpg -------------------------------------------------------------------------------- /sql-numeric-injection/src/main/resources/plugin/SqlNumericInjection/lessonSolutions/en/SqlNumericInjection_files/numericinjection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/sql-numeric-injection/src/main/resources/plugin/SqlNumericInjection/lessonSolutions/en/SqlNumericInjection_files/numericinjection.png -------------------------------------------------------------------------------- /sql-numeric-injection/src/main/resources/plugin/SqlNumericInjection/lessonSolutions/en/SqlNumericInjection_files/numericinjection_solved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/sql-numeric-injection/src/main/resources/plugin/SqlNumericInjection/lessonSolutions/en/SqlNumericInjection_files/numericinjection_solved.png -------------------------------------------------------------------------------- /sql-numeric-injection/src/main/resources/plugin/SqlNumericInjection/lessonSolutions/en/SqlNumericInjection_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/sql-numeric-injection/src/main/resources/plugin/SqlNumericInjection/lessonSolutions/en/SqlNumericInjection_files/themedata.thmx -------------------------------------------------------------------------------- /sql-string-injection/src/main/resources/plugin/SqlStringInjection/lessonPlans/de/SqlStringInjection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/sql-string-injection/src/main/resources/plugin/SqlStringInjection/lessonPlans/de/SqlStringInjection.html -------------------------------------------------------------------------------- /sql-string-injection/src/main/resources/plugin/SqlStringInjection/lessonSolutions/en/SqlStringInjection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/sql-string-injection/src/main/resources/plugin/SqlStringInjection/lessonSolutions/en/SqlStringInjection.html -------------------------------------------------------------------------------- /sql-string-injection/src/main/resources/plugin/SqlStringInjection/lessonSolutions/en/SqlStringInjection_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/sql-string-injection/src/main/resources/plugin/SqlStringInjection/lessonSolutions/en/SqlStringInjection_files/image001.png -------------------------------------------------------------------------------- /sql-string-injection/src/main/resources/plugin/SqlStringInjection/lessonSolutions/en/SqlStringInjection_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/sql-string-injection/src/main/resources/plugin/SqlStringInjection/lessonSolutions/en/SqlStringInjection_files/image003.png -------------------------------------------------------------------------------- /sql-string-injection/src/main/resources/plugin/SqlStringInjection/lessonSolutions/en/SqlStringInjection_files/image005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/sql-string-injection/src/main/resources/plugin/SqlStringInjection/lessonSolutions/en/SqlStringInjection_files/image005.jpg -------------------------------------------------------------------------------- /sql-string-injection/src/main/resources/plugin/SqlStringInjection/lessonSolutions/en/SqlStringInjection_files/image006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/sql-string-injection/src/main/resources/plugin/SqlStringInjection/lessonSolutions/en/SqlStringInjection_files/image006.jpg -------------------------------------------------------------------------------- /sql-string-injection/src/main/resources/plugin/SqlStringInjection/lessonSolutions/en/SqlStringInjection_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/sql-string-injection/src/main/resources/plugin/SqlStringInjection/lessonSolutions/en/SqlStringInjection_files/themedata.thmx -------------------------------------------------------------------------------- /stored-xss/src/main/resources/plugin/StoredXss/lessonPlans/de/StoredXss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/stored-xss/src/main/resources/plugin/StoredXss/lessonPlans/de/StoredXss.html -------------------------------------------------------------------------------- /stored-xss/src/main/resources/plugin/StoredXss/lessonSolutions/en/StoredXss_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/stored-xss/src/main/resources/plugin/StoredXss/lessonSolutions/en/StoredXss_files/image001.png -------------------------------------------------------------------------------- /stored-xss/src/main/resources/plugin/StoredXss/lessonSolutions/en/StoredXss_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/stored-xss/src/main/resources/plugin/StoredXss/lessonSolutions/en/StoredXss_files/image003.png -------------------------------------------------------------------------------- /stored-xss/src/main/resources/plugin/StoredXss/lessonSolutions/en/StoredXss_files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/stored-xss/src/main/resources/plugin/StoredXss/lessonSolutions/en/StoredXss_files/image005.png -------------------------------------------------------------------------------- /stored-xss/src/main/resources/plugin/StoredXss/lessonSolutions/en/StoredXss_files/image007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/stored-xss/src/main/resources/plugin/StoredXss/lessonSolutions/en/StoredXss_files/image007.jpg -------------------------------------------------------------------------------- /stored-xss/src/main/resources/plugin/StoredXss/lessonSolutions/en/StoredXss_files/image008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/stored-xss/src/main/resources/plugin/StoredXss/lessonSolutions/en/StoredXss_files/image008.jpg -------------------------------------------------------------------------------- /stored-xss/src/main/resources/plugin/StoredXss/lessonSolutions/en/StoredXss_files/image009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/stored-xss/src/main/resources/plugin/StoredXss/lessonSolutions/en/StoredXss_files/image009.jpg -------------------------------------------------------------------------------- /stored-xss/src/main/resources/plugin/StoredXss/lessonSolutions/en/StoredXss_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/stored-xss/src/main/resources/plugin/StoredXss/lessonSolutions/en/StoredXss_files/themedata.thmx -------------------------------------------------------------------------------- /thread-safety-problem/src/main/resources/plugin/ThreadSafetyProblem/lessonSolutions/en/ThreadSafetyProblem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/thread-safety-problem/src/main/resources/plugin/ThreadSafetyProblem/lessonSolutions/en/ThreadSafetyProblem.html -------------------------------------------------------------------------------- /thread-safety-problem/src/main/resources/plugin/ThreadSafetyProblem/lessonSolutions/en/ThreadSafetyProblem_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/thread-safety-problem/src/main/resources/plugin/ThreadSafetyProblem/lessonSolutions/en/ThreadSafetyProblem_files/image001.png -------------------------------------------------------------------------------- /thread-safety-problem/src/main/resources/plugin/ThreadSafetyProblem/lessonSolutions/en/ThreadSafetyProblem_files/image002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/thread-safety-problem/src/main/resources/plugin/ThreadSafetyProblem/lessonSolutions/en/ThreadSafetyProblem_files/image002.jpg -------------------------------------------------------------------------------- /thread-safety-problem/src/main/resources/plugin/ThreadSafetyProblem/lessonSolutions/en/ThreadSafetyProblem_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/thread-safety-problem/src/main/resources/plugin/ThreadSafetyProblem/lessonSolutions/en/ThreadSafetyProblem_files/image003.png -------------------------------------------------------------------------------- /thread-safety-problem/src/main/resources/plugin/ThreadSafetyProblem/lessonSolutions/en/ThreadSafetyProblem_files/image004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/thread-safety-problem/src/main/resources/plugin/ThreadSafetyProblem/lessonSolutions/en/ThreadSafetyProblem_files/image004.jpg -------------------------------------------------------------------------------- /thread-safety-problem/src/main/resources/plugin/ThreadSafetyProblem/lessonSolutions/en/ThreadSafetyProblem_files/image007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/thread-safety-problem/src/main/resources/plugin/ThreadSafetyProblem/lessonSolutions/en/ThreadSafetyProblem_files/image007.png -------------------------------------------------------------------------------- /thread-safety-problem/src/main/resources/plugin/ThreadSafetyProblem/lessonSolutions/en/ThreadSafetyProblem_files/image009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/thread-safety-problem/src/main/resources/plugin/ThreadSafetyProblem/lessonSolutions/en/ThreadSafetyProblem_files/image009.jpg -------------------------------------------------------------------------------- /thread-safety-problem/src/main/resources/plugin/ThreadSafetyProblem/lessonSolutions/en/ThreadSafetyProblem_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/thread-safety-problem/src/main/resources/plugin/ThreadSafetyProblem/lessonSolutions/en/ThreadSafetyProblem_files/themedata.thmx -------------------------------------------------------------------------------- /trace-xss/src/main/resources/plugin/TraceXSS/lessonSolutions/en/TraceXSS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/trace-xss/src/main/resources/plugin/TraceXSS/lessonSolutions/en/TraceXSS.html -------------------------------------------------------------------------------- /trace-xss/src/main/resources/plugin/TraceXSS/lessonSolutions/en/TraceXSS_files/filelist.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /trace-xss/src/main/resources/plugin/TraceXSS/lessonSolutions/en/TraceXSS_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/trace-xss/src/main/resources/plugin/TraceXSS/lessonSolutions/en/TraceXSS_files/image001.png -------------------------------------------------------------------------------- /trace-xss/src/main/resources/plugin/TraceXSS/lessonSolutions/en/TraceXSS_files/image002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/trace-xss/src/main/resources/plugin/TraceXSS/lessonSolutions/en/TraceXSS_files/image002.jpg -------------------------------------------------------------------------------- /trace-xss/src/main/resources/plugin/TraceXSS/lessonSolutions/en/TraceXSS_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/trace-xss/src/main/resources/plugin/TraceXSS/lessonSolutions/en/TraceXSS_files/themedata.thmx -------------------------------------------------------------------------------- /unchecked-email/src/main/resources/plugin/UncheckedEmail/lessonSolutions/en/UncheckedEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/unchecked-email/src/main/resources/plugin/UncheckedEmail/lessonSolutions/en/UncheckedEmail.html -------------------------------------------------------------------------------- /unchecked-email/src/main/resources/plugin/UncheckedEmail/lessonSolutions/en/UncheckedEmail_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/unchecked-email/src/main/resources/plugin/UncheckedEmail/lessonSolutions/en/UncheckedEmail_files/image001.png -------------------------------------------------------------------------------- /unchecked-email/src/main/resources/plugin/UncheckedEmail/lessonSolutions/en/UncheckedEmail_files/image002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/unchecked-email/src/main/resources/plugin/UncheckedEmail/lessonSolutions/en/UncheckedEmail_files/image002.jpg -------------------------------------------------------------------------------- /unchecked-email/src/main/resources/plugin/UncheckedEmail/lessonSolutions/en/UncheckedEmail_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/unchecked-email/src/main/resources/plugin/UncheckedEmail/lessonSolutions/en/UncheckedEmail_files/image003.png -------------------------------------------------------------------------------- /unchecked-email/src/main/resources/plugin/UncheckedEmail/lessonSolutions/en/UncheckedEmail_files/image004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/unchecked-email/src/main/resources/plugin/UncheckedEmail/lessonSolutions/en/UncheckedEmail_files/image004.jpg -------------------------------------------------------------------------------- /unchecked-email/src/main/resources/plugin/UncheckedEmail/lessonSolutions/en/UncheckedEmail_files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/unchecked-email/src/main/resources/plugin/UncheckedEmail/lessonSolutions/en/UncheckedEmail_files/image005.png -------------------------------------------------------------------------------- /unchecked-email/src/main/resources/plugin/UncheckedEmail/lessonSolutions/en/UncheckedEmail_files/image006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/unchecked-email/src/main/resources/plugin/UncheckedEmail/lessonSolutions/en/UncheckedEmail_files/image006.jpg -------------------------------------------------------------------------------- /unchecked-email/src/main/resources/plugin/UncheckedEmail/lessonSolutions/en/UncheckedEmail_files/image007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/unchecked-email/src/main/resources/plugin/UncheckedEmail/lessonSolutions/en/UncheckedEmail_files/image007.png -------------------------------------------------------------------------------- /unchecked-email/src/main/resources/plugin/UncheckedEmail/lessonSolutions/en/UncheckedEmail_files/image008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/unchecked-email/src/main/resources/plugin/UncheckedEmail/lessonSolutions/en/UncheckedEmail_files/image008.jpg -------------------------------------------------------------------------------- /unchecked-email/src/main/resources/plugin/UncheckedEmail/lessonSolutions/en/UncheckedEmail_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/unchecked-email/src/main/resources/plugin/UncheckedEmail/lessonSolutions/en/UncheckedEmail_files/themedata.thmx -------------------------------------------------------------------------------- /weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonPlans/de/WeakAuthenticationCookie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonPlans/de/WeakAuthenticationCookie.html -------------------------------------------------------------------------------- /weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie.html -------------------------------------------------------------------------------- /weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image001.png -------------------------------------------------------------------------------- /weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image003.png -------------------------------------------------------------------------------- /weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image005.png -------------------------------------------------------------------------------- /weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image007.png -------------------------------------------------------------------------------- /weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image009.png -------------------------------------------------------------------------------- /weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image011.png -------------------------------------------------------------------------------- /weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image013.png -------------------------------------------------------------------------------- /weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image015.png -------------------------------------------------------------------------------- /weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image017.png -------------------------------------------------------------------------------- /weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image019.jpg -------------------------------------------------------------------------------- /weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image020.jpg -------------------------------------------------------------------------------- /weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image021.jpg -------------------------------------------------------------------------------- /weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image022.jpg -------------------------------------------------------------------------------- /weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image023.jpg -------------------------------------------------------------------------------- /weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image024.jpg -------------------------------------------------------------------------------- /weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image025.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image025.jpg -------------------------------------------------------------------------------- /weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image026.jpg -------------------------------------------------------------------------------- /weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image027.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/image027.jpg -------------------------------------------------------------------------------- /weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/weak-authentication-cookie/src/main/resources/plugin/WeakAuthenticationCookie/lessonSolutions/en/WeakAuthenticationCookie_files/themedata.thmx -------------------------------------------------------------------------------- /weak-session-id/src/main/resources/plugin/WeakSessionID/lessonSolutions/en/WeakSessionID_files/image001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/weak-session-id/src/main/resources/plugin/WeakSessionID/lessonSolutions/en/WeakSessionID_files/image001.jpg -------------------------------------------------------------------------------- /weak-session-id/src/main/resources/plugin/WeakSessionID/lessonSolutions/en/WeakSessionID_files/image002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/weak-session-id/src/main/resources/plugin/WeakSessionID/lessonSolutions/en/WeakSessionID_files/image002.jpg -------------------------------------------------------------------------------- /weak-session-id/src/main/resources/plugin/WeakSessionID/lessonSolutions/en/WeakSessionID_files/image003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/weak-session-id/src/main/resources/plugin/WeakSessionID/lessonSolutions/en/WeakSessionID_files/image003.jpg -------------------------------------------------------------------------------- /weak-session-id/src/main/resources/plugin/WeakSessionID/lessonSolutions/en/WeakSessionID_files/image004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/weak-session-id/src/main/resources/plugin/WeakSessionID/lessonSolutions/en/WeakSessionID_files/image004.jpg -------------------------------------------------------------------------------- /weak-session-id/src/main/resources/plugin/WeakSessionID/lessonSolutions/en/WeakSessionID_files/image005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/weak-session-id/src/main/resources/plugin/WeakSessionID/lessonSolutions/en/WeakSessionID_files/image005.jpg -------------------------------------------------------------------------------- /weak-session-id/src/main/resources/plugin/WeakSessionID/lessonSolutions/en/WeakSessionID_files/image006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/weak-session-id/src/main/resources/plugin/WeakSessionID/lessonSolutions/en/WeakSessionID_files/image006.jpg -------------------------------------------------------------------------------- /ws-sax-injection/src/main/resources/plugin/WsSAXInjection/lessonSolutions/en/WsSAXInjection_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/ws-sax-injection/src/main/resources/plugin/WsSAXInjection/lessonSolutions/en/WsSAXInjection_files/image001.png -------------------------------------------------------------------------------- /ws-sax-injection/src/main/resources/plugin/WsSAXInjection/lessonSolutions/en/WsSAXInjection_files/image002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/ws-sax-injection/src/main/resources/plugin/WsSAXInjection/lessonSolutions/en/WsSAXInjection_files/image002.jpg -------------------------------------------------------------------------------- /ws-sax-injection/src/main/resources/plugin/WsSAXInjection/lessonSolutions/en/WsSAXInjection_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/ws-sax-injection/src/main/resources/plugin/WsSAXInjection/lessonSolutions/en/WsSAXInjection_files/image003.png -------------------------------------------------------------------------------- /ws-sax-injection/src/main/resources/plugin/WsSAXInjection/lessonSolutions/en/WsSAXInjection_files/image004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/ws-sax-injection/src/main/resources/plugin/WsSAXInjection/lessonSolutions/en/WsSAXInjection_files/image004.jpg -------------------------------------------------------------------------------- /ws-sax-injection/src/main/resources/plugin/WsSAXInjection/lessonSolutions/en/WsSAXInjection_files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/ws-sax-injection/src/main/resources/plugin/WsSAXInjection/lessonSolutions/en/WsSAXInjection_files/image005.png -------------------------------------------------------------------------------- /ws-sax-injection/src/main/resources/plugin/WsSAXInjection/lessonSolutions/en/WsSAXInjection_files/image006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/ws-sax-injection/src/main/resources/plugin/WsSAXInjection/lessonSolutions/en/WsSAXInjection_files/image006.jpg -------------------------------------------------------------------------------- /ws-sax-injection/src/main/resources/plugin/WsSAXInjection/lessonSolutions/en/WsSAXInjection_files/image007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/ws-sax-injection/src/main/resources/plugin/WsSAXInjection/lessonSolutions/en/WsSAXInjection_files/image007.png -------------------------------------------------------------------------------- /ws-sax-injection/src/main/resources/plugin/WsSAXInjection/lessonSolutions/en/WsSAXInjection_files/image008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/ws-sax-injection/src/main/resources/plugin/WsSAXInjection/lessonSolutions/en/WsSAXInjection_files/image008.jpg -------------------------------------------------------------------------------- /ws-sax-injection/src/main/resources/plugin/WsSAXInjection/lessonSolutions/en/WsSAXInjection_files/image009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/ws-sax-injection/src/main/resources/plugin/WsSAXInjection/lessonSolutions/en/WsSAXInjection_files/image009.png -------------------------------------------------------------------------------- /ws-sax-injection/src/main/resources/plugin/WsSAXInjection/lessonSolutions/en/WsSAXInjection_files/image010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/ws-sax-injection/src/main/resources/plugin/WsSAXInjection/lessonSolutions/en/WsSAXInjection_files/image010.jpg -------------------------------------------------------------------------------- /ws-sax-injection/src/main/resources/plugin/WsSAXInjection/lessonSolutions/en/WsSAXInjection_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/ws-sax-injection/src/main/resources/plugin/WsSAXInjection/lessonSolutions/en/WsSAXInjection_files/themedata.thmx -------------------------------------------------------------------------------- /ws-sql-injection/src/main/resources/plugin/WsSqlInjection/lessonSolutions/en/WsSqlInjection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/ws-sql-injection/src/main/resources/plugin/WsSqlInjection/lessonSolutions/en/WsSqlInjection.html -------------------------------------------------------------------------------- /ws-sql-injection/src/main/resources/plugin/WsSqlInjection/lessonSolutions/en/WsSqlInjection_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/ws-sql-injection/src/main/resources/plugin/WsSqlInjection/lessonSolutions/en/WsSqlInjection_files/image001.png -------------------------------------------------------------------------------- /ws-sql-injection/src/main/resources/plugin/WsSqlInjection/lessonSolutions/en/WsSqlInjection_files/image002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/ws-sql-injection/src/main/resources/plugin/WsSqlInjection/lessonSolutions/en/WsSqlInjection_files/image002.jpg -------------------------------------------------------------------------------- /ws-sql-injection/src/main/resources/plugin/WsSqlInjection/lessonSolutions/en/WsSqlInjection_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/ws-sql-injection/src/main/resources/plugin/WsSqlInjection/lessonSolutions/en/WsSqlInjection_files/image003.png -------------------------------------------------------------------------------- /ws-sql-injection/src/main/resources/plugin/WsSqlInjection/lessonSolutions/en/WsSqlInjection_files/image004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/ws-sql-injection/src/main/resources/plugin/WsSqlInjection/lessonSolutions/en/WsSqlInjection_files/image004.jpg -------------------------------------------------------------------------------- /ws-sql-injection/src/main/resources/plugin/WsSqlInjection/lessonSolutions/en/WsSqlInjection_files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/ws-sql-injection/src/main/resources/plugin/WsSqlInjection/lessonSolutions/en/WsSqlInjection_files/image005.png -------------------------------------------------------------------------------- /ws-sql-injection/src/main/resources/plugin/WsSqlInjection/lessonSolutions/en/WsSqlInjection_files/image006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/ws-sql-injection/src/main/resources/plugin/WsSqlInjection/lessonSolutions/en/WsSqlInjection_files/image006.jpg -------------------------------------------------------------------------------- /ws-sql-injection/src/main/resources/plugin/WsSqlInjection/lessonSolutions/en/WsSqlInjection_files/image007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/ws-sql-injection/src/main/resources/plugin/WsSqlInjection/lessonSolutions/en/WsSqlInjection_files/image007.png -------------------------------------------------------------------------------- /ws-sql-injection/src/main/resources/plugin/WsSqlInjection/lessonSolutions/en/WsSqlInjection_files/image008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/ws-sql-injection/src/main/resources/plugin/WsSqlInjection/lessonSolutions/en/WsSqlInjection_files/image008.jpg -------------------------------------------------------------------------------- /ws-sql-injection/src/main/resources/plugin/WsSqlInjection/lessonSolutions/en/WsSqlInjection_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/ws-sql-injection/src/main/resources/plugin/WsSqlInjection/lessonSolutions/en/WsSqlInjection_files/themedata.thmx -------------------------------------------------------------------------------- /wsdl-scanning/src/main/resources/plugin/WSDLScanning/lessonSolutions/en/WSDLScanning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/wsdl-scanning/src/main/resources/plugin/WSDLScanning/lessonSolutions/en/WSDLScanning.html -------------------------------------------------------------------------------- /wsdl-scanning/src/main/resources/plugin/WSDLScanning/lessonSolutions/en/WSDLScanning_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/wsdl-scanning/src/main/resources/plugin/WSDLScanning/lessonSolutions/en/WSDLScanning_files/image001.png -------------------------------------------------------------------------------- /wsdl-scanning/src/main/resources/plugin/WSDLScanning/lessonSolutions/en/WSDLScanning_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/wsdl-scanning/src/main/resources/plugin/WSDLScanning/lessonSolutions/en/WSDLScanning_files/image003.png -------------------------------------------------------------------------------- /wsdl-scanning/src/main/resources/plugin/WSDLScanning/lessonSolutions/en/WSDLScanning_files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/wsdl-scanning/src/main/resources/plugin/WSDLScanning/lessonSolutions/en/WSDLScanning_files/image005.png -------------------------------------------------------------------------------- /wsdl-scanning/src/main/resources/plugin/WSDLScanning/lessonSolutions/en/WSDLScanning_files/image007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/wsdl-scanning/src/main/resources/plugin/WSDLScanning/lessonSolutions/en/WSDLScanning_files/image007.png -------------------------------------------------------------------------------- /wsdl-scanning/src/main/resources/plugin/WSDLScanning/lessonSolutions/en/WSDLScanning_files/image009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/wsdl-scanning/src/main/resources/plugin/WSDLScanning/lessonSolutions/en/WSDLScanning_files/image009.jpg -------------------------------------------------------------------------------- /wsdl-scanning/src/main/resources/plugin/WSDLScanning/lessonSolutions/en/WSDLScanning_files/image010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/wsdl-scanning/src/main/resources/plugin/WSDLScanning/lessonSolutions/en/WSDLScanning_files/image010.jpg -------------------------------------------------------------------------------- /wsdl-scanning/src/main/resources/plugin/WSDLScanning/lessonSolutions/en/WSDLScanning_files/image011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/wsdl-scanning/src/main/resources/plugin/WSDLScanning/lessonSolutions/en/WSDLScanning_files/image011.jpg -------------------------------------------------------------------------------- /wsdl-scanning/src/main/resources/plugin/WSDLScanning/lessonSolutions/en/WSDLScanning_files/image012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/wsdl-scanning/src/main/resources/plugin/WSDLScanning/lessonSolutions/en/WSDLScanning_files/image012.jpg -------------------------------------------------------------------------------- /wsdl-scanning/src/main/resources/plugin/WSDLScanning/lessonSolutions/en/WSDLScanning_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/wsdl-scanning/src/main/resources/plugin/WSDLScanning/lessonSolutions/en/WSDLScanning_files/themedata.thmx -------------------------------------------------------------------------------- /xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection.html -------------------------------------------------------------------------------- /xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image001.png -------------------------------------------------------------------------------- /xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image003.png -------------------------------------------------------------------------------- /xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image005.png -------------------------------------------------------------------------------- /xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image007.png -------------------------------------------------------------------------------- /xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image009.png -------------------------------------------------------------------------------- /xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image011.png -------------------------------------------------------------------------------- /xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image013.png -------------------------------------------------------------------------------- /xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image015.png -------------------------------------------------------------------------------- /xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image017.jpg -------------------------------------------------------------------------------- /xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image018.jpg -------------------------------------------------------------------------------- /xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image019.jpg -------------------------------------------------------------------------------- /xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image020.jpg -------------------------------------------------------------------------------- /xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image021.jpg -------------------------------------------------------------------------------- /xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image022.jpg -------------------------------------------------------------------------------- /xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image023.jpg -------------------------------------------------------------------------------- /xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/image024.jpg -------------------------------------------------------------------------------- /xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/xml-injection/src/main/resources/plugin/XMLInjection/lessonSolutions/en/XMLInjection_files/themedata.thmx -------------------------------------------------------------------------------- /xpath-injection/src/main/resources/plugin/XPATHInjection/lessonSolutions/en/XPATHInjection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/xpath-injection/src/main/resources/plugin/XPATHInjection/lessonSolutions/en/XPATHInjection.html -------------------------------------------------------------------------------- /xpath-injection/src/main/resources/plugin/XPATHInjection/lessonSolutions/en/XPATHInjection_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/xpath-injection/src/main/resources/plugin/XPATHInjection/lessonSolutions/en/XPATHInjection_files/image001.png -------------------------------------------------------------------------------- /xpath-injection/src/main/resources/plugin/XPATHInjection/lessonSolutions/en/XPATHInjection_files/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/xpath-injection/src/main/resources/plugin/XPATHInjection/lessonSolutions/en/XPATHInjection_files/image003.png -------------------------------------------------------------------------------- /xpath-injection/src/main/resources/plugin/XPATHInjection/lessonSolutions/en/XPATHInjection_files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/xpath-injection/src/main/resources/plugin/XPATHInjection/lessonSolutions/en/XPATHInjection_files/image005.png -------------------------------------------------------------------------------- /xpath-injection/src/main/resources/plugin/XPATHInjection/lessonSolutions/en/XPATHInjection_files/image007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/xpath-injection/src/main/resources/plugin/XPATHInjection/lessonSolutions/en/XPATHInjection_files/image007.jpg -------------------------------------------------------------------------------- /xpath-injection/src/main/resources/plugin/XPATHInjection/lessonSolutions/en/XPATHInjection_files/image008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/xpath-injection/src/main/resources/plugin/XPATHInjection/lessonSolutions/en/XPATHInjection_files/image008.jpg -------------------------------------------------------------------------------- /xpath-injection/src/main/resources/plugin/XPATHInjection/lessonSolutions/en/XPATHInjection_files/image009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/xpath-injection/src/main/resources/plugin/XPATHInjection/lessonSolutions/en/XPATHInjection_files/image009.jpg -------------------------------------------------------------------------------- /xpath-injection/src/main/resources/plugin/XPATHInjection/lessonSolutions/en/XPATHInjection_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/xpath-injection/src/main/resources/plugin/XPATHInjection/lessonSolutions/en/XPATHInjection_files/themedata.thmx -------------------------------------------------------------------------------- /xxe/src/main/resources/plugin/XXE/lessonSolutions/en/XXE_files/filelist.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /xxe/src/main/resources/plugin/XXE/lessonSolutions/en/XXE_files/themedata.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebGoat/WebGoat-Lessons/add9558e00e66360fc6838c6a719ec6c609c36ec/xxe/src/main/resources/plugin/XXE/lessonSolutions/en/XXE_files/themedata.thmx --------------------------------------------------------------------------------