public async Task <bool> Exploits(WebServer server, HttpListenerContext context, string firmware)
 {
     try
     {
         firmware = firmware.TrimEnd('/');
         return(await context.HtmlResponseAsync(_generator.GetFirmwareExploits(firmware)));
     }
     catch (Exception ex)
     {
         return(await context.InternalServerError(ex));
     }
 }