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
from cpe import CPE a = CPE("cpe:2.3:a:microsoft_windows:internet_explorer:8.0.6001:beta:*:*:*:*:*:*") print(a.get_vendor()) print(a.get_product())
currently result:
['microsoft_windows'] ['internet_explorer']
need result:
['microsoft windows'] ['internet explorer']
Which one meets the standard requirements? Common Platform Enumeration: Naming Specification:https://nvlpubs.nist.gov/nistpubs/Legacy/IR/nistir7695.pdf
The text was updated successfully, but these errors were encountered:
No branches or pull requests
currently result:
need result:
Which one meets the standard requirements?
Common Platform Enumeration: Naming Specification:https://nvlpubs.nist.gov/nistpubs/Legacy/IR/nistir7695.pdf
The text was updated successfully, but these errors were encountered: