Skip to content

Commit

Permalink
Update community/detectors/joomla_cve_2023_23752/src/main/java/com/go…
Browse files Browse the repository at this point in the history
…ogle/tsunami/plugins/detectors/cves/cve202323752/Cve202323752VulnDetector.java

Co-authored-by: Savio Sisco <[email protected]>
  • Loading branch information
am0o0 and lokiuox authored Nov 22, 2024
1 parent 64701ef commit c2bad80
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,9 @@ private boolean isServiceVulnerable(NetworkService networkService) {
}
}
}
} catch (IllegalStateException | JsonSyntaxException | IOException | AssertionError e) {
} catch (NoSuchElementException | IllegalStateException | JsonSyntaxException e) {
return false;
} catch (IOException e) {
logger.atWarning().withCause(e).log("Request to target %s failed", networkService);
return false;
}
Expand Down

0 comments on commit c2bad80

Please sign in to comment.