-
Notifications
You must be signed in to change notification settings - Fork 120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CVE-2017-9248 #151
CVE-2017-9248 #151
Conversation
Add bcheck for CVE-2017-9248, It looks for telerik version code numbers e.g. 2015.2.623 in responses, and if it finds one, creates an issue. Passive bcheck.
Thanks for your submission. Looks like an interesting idea. Is there something unique to Telerik UI that we can also look for within the response in order to minimize the chance of this raising false positives? |
Excellent. So one options would be to generalize your checking to include either of these, but as you said, you may miss some scenarios. Perhaps a better option would be to look for something unrelated to the version that is specific to Telerik. So the logic would be something like:
|
added check for the presence of "Telerik.Web.UI.WebResource.axd" which will reduce the risk of raising false positives, as it the enpoint that Telerik UI uses to load javascript files
parenthesis usage correction
Thanks for the input, i added a check for the presence of "Telerik.Web.UI.WebResource.axd", which should eliminate the risk of raising false positives, it now looks like this
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Many thanks for tightening up the logic and your patience! 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. Thanks for the updates :)
@2009panda As a contributor to our GitHub repository, we would like to invite you to our closed Discord community. It is a place where passionate Burp users, including people who directly work on building and developing Burp here at PortSwigger, can talk about the tooling and web security in general. If you would like to join, please email us at support@portswigger.net and we will send over an invite link. Thank you! |
Add bcheck for CVE-2017-9248, It looks for telerik version code numbers e.g. 2015.2.623 in responses, and if it finds one, creates an issue.