diff --git a/Controllers/HomeController.cs b/Controllers/HomeController.cs index fcdb526..400711e 100644 --- a/Controllers/HomeController.cs +++ b/Controllers/HomeController.cs @@ -228,7 +228,7 @@ public IActionResult LFI() [HttpGet] public IActionResult Download(string file) { - // Vulnerable file concatination + // Vulnerable file concatenation var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot", file); if (!System.IO.File.Exists(path)) diff --git a/Controllers/LLMController.cs b/Controllers/LLMController.cs index 2f25f03..b04d4dd 100644 --- a/Controllers/LLMController.cs +++ b/Controllers/LLMController.cs @@ -71,7 +71,7 @@ public async Task ExcessiveAgency([FromBody] JsonElement body) } else { - finalPrompt = $"Tell the user very breifly (within one sentence) that you have access to the database and can query Users and Comments table {user}"; + finalPrompt = $"Tell the user very briefly (within one sentence) that you have access to the database and can query Users and Comments table {user}"; // Ollama returns plain string tokens await foreach (var t in _ollama.GenerateAsync(finalPrompt)) diff --git a/Views/Home/BrokenAuthentication.cshtml b/Views/Home/BrokenAuthentication.cshtml index 2d75dad..116f3a5 100644 --- a/Views/Home/BrokenAuthentication.cshtml +++ b/Views/Home/BrokenAuthentication.cshtml @@ -43,7 +43,7 @@ OWASP - Account Enumeration
  • - Portswigger - Username Enumeration + PortSwigger - Username Enumeration
  • diff --git a/Views/Home/CSRF.cshtml b/Views/Home/CSRF.cshtml index 1b65cfd..893b70b 100644 --- a/Views/Home/CSRF.cshtml +++ b/Views/Home/CSRF.cshtml @@ -54,7 +54,7 @@ OWASP - CSRF
  • - Portswigger - CSRF + PortSwigger - CSRF
  • Microsoft - CSRF in Asp.NET Core diff --git a/Views/Home/CachePoisoning.cshtml b/Views/Home/CachePoisoning.cshtml index 0265ed3..15ec414 100644 --- a/Views/Home/CachePoisoning.cshtml +++ b/Views/Home/CachePoisoning.cshtml @@ -43,7 +43,7 @@ OWASP - Cache Poisoning
  • - Portswigger - Cache Poisoning + PortSwigger - Cache Poisoning
  • Invicti - Cache Poisoning diff --git a/Views/Home/CommandInjection.cshtml b/Views/Home/CommandInjection.cshtml index 20a7e91..17aa17e 100644 --- a/Views/Home/CommandInjection.cshtml +++ b/Views/Home/CommandInjection.cshtml @@ -42,7 +42,7 @@
    More Information: