mirror of
https://github.com/alb-uss/SECMON.git
synced 2026-04-26 01:35:48 +03:00
[GH-ISSUE #30] Product by Keyword not case sensitive #29
Labels
No labels
bug
corrected
corrected
feature-request
feature-request
pull-request
question
reliability-improvement
to be checked up
to be checked up
vuln
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/SECMON#29
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @frostnite on GitHub (Dec 20, 2021).
Original GitHub issue: https://github.com/alb-uss/SECMON/issues/30
Originally assigned to: @alb-uss on GitHub.
Product by Keyword not case sensitive.
As seen on below screenshot, I need to add the product keyword "NumPy" to get the other remaining 2 CVE for numpy.
Whereas the product with keyword "numpy" only managed to identify 2 CVE which actually possible to be 4 CVE.
@alb-uss commented on GitHub (Dec 20, 2021):
Hello @frostnite,
Indeed, the keywords are case-sensitive for the moment and this is part of my road map. However, in general, the product names are almost always in the same form, here we see that we always find the form "NumPy" in the screenshot. It is therefore necessary to choose the real form of the product name (a little heavy I concieve).
I take this opportunity to update the road map, thanks to you! :)
@frostnite commented on GitHub (Dec 21, 2021):
You mean its not case sensitive right? Anyways I have added .lower() to both key and summary variables in cvepoller.py which actually resolve the issue for me.