From 3e29a16544c6366b7f895d8fd97ef9c36c74ae8c Mon Sep 17 00:00:00 2001 From: alan morais Date: Fri, 17 Apr 2026 08:00:25 -0300 Subject: [PATCH] fixing minor typos in source code --- Controllers/HomeController.cs | 2 +- Controllers/LLMController.cs | 2 +- Views/Home/BrokenAuthentication.cshtml | 2 +- Views/Home/CSRF.cshtml | 2 +- Views/Home/CachePoisoning.cshtml | 2 +- Views/Home/CommandInjection.cshtml | 2 +- Views/Home/DomXSS.cshtml | 2 +- Views/Home/FileUpload.cshtml | 2 +- Views/Home/InformationDisclosure.cshtml | 2 +- Views/Home/InsecureDeserialization.cshtml | 2 +- Views/Home/InsecureDirectObjectReference.cshtml | 2 +- Views/Home/OpenRedirect.cshtml | 2 +- Views/Home/PrototypePollution.cshtml | 2 +- Views/Home/ReflectedXSS.cshtml | 2 +- Views/Home/SSRF.cshtml | 2 +- Views/Home/SSTI.cshtml | 2 +- Views/Home/SqlInjection.cshtml | 4 ++-- Views/Home/StoredXSS.cshtml | 2 +- Views/Home/XXE.cshtml | 2 +- 19 files changed, 20 insertions(+), 20 deletions(-) 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: