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
cve show
Since the cve show command does not require a username it should not fail or prompt for an API key if none are supplied.
expected
$ cve show CVE-2024-27120 CVE-2024-27120 ├─ State: PUBLISHED ├─ Owning CNA: DIVD └─ Updated on: Wed Aug 14 19:56:50 2024 +0000
reality
$ cve show CVE-2024-27120 Usage: cve [OPTIONS] COMMAND [ARGS]... Try 'cve -h' for help. Error: Missing option '-u' / '--username'. $ cve -u unknown show CVE-2024-27120 Usage: cve [OPTIONS] COMMAND [ARGS]... Try 'cve -h' for help. Error: Missing option '-o' / '--org' $ cve -u unknown -o unknonw show CVE-2024-27120 API key: ^C Aborted! $ cve -u unknown -o unknonw -a unknonw show CVE-2024-27120 CVE-2024-27120 ├─ State: PUBLISHED ├─ Owning CNA: DIVD └─ Updated on: Wed Aug 14 19:56:50 2024 +0000
The text was updated successfully, but these errors were encountered:
Fixed! ping and show don't require auth credentials any more. Please test if you can; I'll release a new version to PyPI next week.
ping
show
Sorry, something went wrong.
cve validate
I got snowed under, but managed to test it just now. Works as desired. Thanks
Successfully merging a pull request may close this issue.
Since the
cve show
command does not require a username it should not fail or prompt for an API key if none are supplied.expected
reality
The text was updated successfully, but these errors were encountered: