1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
.TH "CVE" "1" "2024-12-06" "1.7.1" "cve Manual"
.SH NAME
cve \- A CLI interface for the CVE Services API.
.SH SYNOPSIS
.B cve
[OPTIONS] COMMAND [ARGS]...
.SH DESCRIPTION
A CLI interface for the CVE Services API.
.SH OPTIONS
.TP
\fB\-u,\fP \-\-username TEXT
Your username (env var: CVE_USER) [required]
.TP
\fB\-o,\fP \-\-org TEXT
Your CNA organization short name (env var: CVE_ORG) [required]
.TP
\fB\-a,\fP \-\-api\-key TEXT
Your API key (env var: CVE_API_KEY) [required]
.TP
\fB\-e,\fP \-\-env [prod|dev|test]
Select deployment environment to query (env var: CVE_ENVIRONMENT)
.TP
\fB\-\-api\-url\fP TEXT
Provide arbitrary URL for the CVE API (env var: CVE_API_URL)
.TP
\fB\-i,\fP \-\-interactive
Confirm create/update actions before execution (env var: CVE_INTERACTIVE)
.TP
\fB\-V,\fP \-\-version
Show the version and exit.
.SH COMMANDS
.PP
\fBpublish\fP
Publish a CNA container of a CVE record...
See \fBcve-publish(1)\fP for full documentation on the \fBpublish\fP command.
.PP
\fBpublish-adp\fP
Add or update an ADP container in a CVE...
See \fBcve-publish-adp(1)\fP for full documentation on the \fBpublish-adp\fP command.
.PP
\fBreject\fP
Reject a CVE record for a reserved or...
See \fBcve-reject(1)\fP for full documentation on the \fBreject\fP command.
.PP
\fBundo-reject\fP
Move a rejected CVE ID without a record...
See \fBcve-undo-reject(1)\fP for full documentation on the \fBundo-reject\fP command.
.PP
\fBreserve\fP
Reserve one or more CVE IDs.
See \fBcve-reserve(1)\fP for full documentation on the \fBreserve\fP command.
.PP
\fBshow\fP
Display a specific CVE ID (and optionally...
See \fBcve-show(1)\fP for full documentation on the \fBshow\fP command.
.PP
\fBlist\fP
Filter and list reserved CVE IDs owned by...
See \fBcve-list(1)\fP for full documentation on the \fBlist\fP command.
.PP
\fBquota\fP
Display the available CVE ID quota for...
See \fBcve-quota(1)\fP for full documentation on the \fBquota\fP command.
.PP
\fBuser\fP
Show information about a user.
See \fBcve-user(1)\fP for full documentation on the \fBuser\fP command.
.PP
\fBorg\fP
Show information about your organization.
See \fBcve-org(1)\fP for full documentation on the \fBorg\fP command.
.PP
\fBvalidate\fP
Validate a CVE record against the 5.1.1...
See \fBcve-validate(1)\fP for full documentation on the \fBvalidate\fP command.
.PP
\fBping\fP
Ping the CVE Services API to see if it is up.
See \fBcve-ping(1)\fP for full documentation on the \fBping\fP command.
|