We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Ids such as CVE-2011-4461-JETTY are appearing as vulnerability id which are clearly not valid CVEs. It can be mitigated by either
CVE-2011-4461-JETTY
is_cve
.group(0)
$
r"CVE-\d+-\d+$"
The text was updated successfully, but these errors were encountered:
@Hritik14 that's a good find.
Sorry, something went wrong.
5d29b6f
Merge pull request #428 from Pushpit07/rectify_invalid_id_in_msr2019
942e1ae
Resolves #399: Rectify invalid id in msr2019
No branches or pull requests
Ids such as
CVE-2011-4461-JETTY
are appearing as vulnerability id which are clearly not valid CVEs.It can be mitigated by either
is_cve
helper and the.group(0)
to get the matching cve$
in is_cve helper making itr"CVE-\d+-\d+$"
in order to avoid any invalid matches.The text was updated successfully, but these errors were encountered: