public async Task <bool> Firmwares(WebServer server, HttpListenerContext context)
 {
     try
     {
         return(await context.HtmlResponseAsync(_generator.GetExploitHome()));
     }
     catch (Exception ex)
     {
         return(await context.InternalServerError(ex));
     }
 }