From b9db8b4780883b7a833e9b750c182210b69a4e5a Mon Sep 17 00:00:00 2001 From: Tsuyoshi Ushio Date: Wed, 18 Sep 2019 12:45:51 -0400 Subject: [PATCH 1/2] Adding very strong password. --- VulnerableApplication/Global.asax.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/VulnerableApplication/Global.asax.cs b/VulnerableApplication/Global.asax.cs index b3fa05a..642a904 100644 --- a/VulnerableApplication/Global.asax.cs +++ b/VulnerableApplication/Global.asax.cs @@ -18,4 +18,6 @@ protected void Application_Start() BundleConfig.RegisterBundles(BundleTable.Bundles); } } + + public const string Password = "abc"; } From 8de72d1aa2c2e9ab7dc4f8968fd36a6a0fc6af04 Mon Sep 17 00:00:00 2001 From: Tsuyoshi Ushio Date: Wed, 18 Sep 2019 12:50:30 -0400 Subject: [PATCH 2/2] Update the strong password --- VulnerableApplication/Global.asax.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/VulnerableApplication/Global.asax.cs b/VulnerableApplication/Global.asax.cs index 642a904..e7c0231 100644 --- a/VulnerableApplication/Global.asax.cs +++ b/VulnerableApplication/Global.asax.cs @@ -17,7 +17,6 @@ protected void Application_Start() RouteConfig.RegisterRoutes(RouteTable.Routes); BundleConfig.RegisterBundles(BundleTable.Bundles); } + public const string Password = "abc"; } - - public const string Password = "abc"; }