From c75c0b20b388d3100b7105b5505f541315c0ad7f Mon Sep 17 00:00:00 2001 From: Ken Johnson Date: Thu, 25 Apr 2013 01:06:42 -0400 Subject: [PATCH] made pages for all of the tutorials --- app/controllers/tutorials_controller.rb | 27 +++++++++ app/views/layouts/tutorial/_sidebar.html.erb | 62 ++++++++++---------- app/views/tutorials/broken_auth.html.erb | 7 +++ app/views/tutorials/crypto.html.erb | 7 +++ app/views/tutorials/csrf.html.erb | 7 +++ app/views/tutorials/injection.html.erb | 7 +++ app/views/tutorials/insecure_doa.html.erb | 7 +++ app/views/tutorials/misconfig.html.erb | 7 +++ app/views/tutorials/redirects.html.erb | 7 +++ app/views/tutorials/ssl_tls.html.erb | 7 +++ app/views/tutorials/url_access.html.erb | 7 +++ app/views/tutorials/xss.html.erb | 7 +++ config/routes.rb | 6 +- 13 files changed, 133 insertions(+), 32 deletions(-) create mode 100644 app/views/tutorials/broken_auth.html.erb create mode 100644 app/views/tutorials/crypto.html.erb create mode 100644 app/views/tutorials/csrf.html.erb create mode 100644 app/views/tutorials/insecure_doa.html.erb create mode 100644 app/views/tutorials/misconfig.html.erb create mode 100644 app/views/tutorials/redirects.html.erb create mode 100644 app/views/tutorials/ssl_tls.html.erb create mode 100644 app/views/tutorials/url_access.html.erb create mode 100644 app/views/tutorials/xss.html.erb diff --git a/app/controllers/tutorials_controller.rb b/app/controllers/tutorials_controller.rb index a635d25..10e5583 100755 --- a/app/controllers/tutorials_controller.rb +++ b/app/controllers/tutorials_controller.rb @@ -5,4 +5,31 @@ class TutorialsController < ApplicationController def injection end + def xss + end + + def broken_auth + end + + def insecure_doa + end + + def csrf + end + + def misconfig + end + + def crypto + end + + def url_access + end + + def ssl_tls + end + + def redirects + end + end diff --git a/app/views/layouts/tutorial/_sidebar.html.erb b/app/views/layouts/tutorial/_sidebar.html.erb index 04bb2fc..586862c 100755 --- a/app/views/layouts/tutorial/_sidebar.html.erb +++ b/app/views/layouts/tutorial/_sidebar.html.erb @@ -1,84 +1,84 @@