File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ See CISA KEV Catalog at [https://www.cisa.gov/known-exploited-vulnerabilities](h
26
26
### Usage via npx
27
27
28
28
``` bash
29
- # # Run the tool in the project directory
30
- npx cve-risk-scores@latest
29
+ # # Run the tool with a CVE ID
30
+ npx cve-risk-scores@latest CVE-YYYY-XXXXX
31
31
```
32
32
33
33
### Usage via global install option
@@ -36,7 +36,7 @@ npx cve-risk-scores@latest
36
36
# # Install the tool globally
37
37
npm install -g cve-risk-scores@latest
38
38
39
- # # Run the tool in the project directory
39
+ # # Run the tool with a CVE ID
40
40
cve-risk-scores CVE-YYYY-XXXXX
41
41
```
42
42
Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ async function audit(
181
181
( async ( ) => {
182
182
try {
183
183
const options = yargs
184
- . scriptName ( "npm-epss-audit " )
184
+ . scriptName ( "cve-risk-scores " )
185
185
. usage (
186
186
"Usage: $0 <CVE-NUMBER> [-v|--verbose] [-r|--refresh] [-f|--fail-on-past-duedate] [-t|--threshold]"
187
187
)
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " cve-risk-scores" ,
3
- "version" : " 0.0.1 " ,
3
+ "version" : " 0.0.2 " ,
4
4
"description" : " Check risk scores for CVEs" ,
5
5
"main" : " bin/index.js" ,
6
6
"bin" : {
You can’t perform that action at this time.
0 commit comments