-
Notifications
You must be signed in to change notification settings - Fork 186
Open
Description
Defect Jetty 11.x and 10.x End of Life checks
The Jetty EoL check does not work correctly. It only checks for the major version and thus generates a scan issue for Jetty 11.X.X and 10.X.X
Tested on Burp Pro version:
-Tested J2EEScan-1.2.6-jar-with-dependencies.jar version
-Tested public J2EEScan-2.0.1-dev-jar-with-dependencies.jar version
Defect 9.4.48,v202206.22 <= 9.4.x is now EoL References
https://github.com/eclipse/jetty.project/releases
https://www.eclipse.org/jetty/download.php
J2EEScan/src/main/java/burp/SoftwareVersions.java
Lines 70 to 94 in 1936af8
| /** | |
| * Jetty | |
| */ | |
| if (software.equalsIgnoreCase("Jetty")) { | |
| /** | |
| * End of Life - Jetty | |
| */ | |
| if ( Integer.parseInt(release.substring(0, 1)) < 9 ) { | |
| callbacks.addScanIssue(new CustomScanIssue( | |
| baseRequestResponse.getHttpService(), | |
| requestInfo.getUrl(), | |
| baseRequestResponse, | |
| "End of Life Software - Jetty " + release, | |
| "J2EEScan identified an unsupported release of Jetty <b>" + release + "</b>.<br />" | |
| + "No more security updates for this version will be released by the vendor <br /><br />" | |
| + "<b>References</b><br />" | |
| + "https://wiki.eclipse.org/Jetty/Starting/Jetty_Version_Comparison_Table<br />", | |
| "Update the Jetty Container with the last stable release", | |
| Risk.High, | |
| Confidence.Certain | |
| )); | |
| } | |
| } |
Metadata
Metadata
Assignees
Labels
No labels