You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As the name implies, this tool is intended for use with binaries. If you have
@@ -191,6 +197,18 @@ This option controls the frequency of updates for the CVE data from the National
191
197
192
198
This option allows one the skip a comma-separated lists of paths. This can be useful for excluding certain files and directories from the scan which will also decrease the scanning time.
193
199
200
+
### -h, --help
201
+
202
+
This option shows a help message and exits.
203
+
204
+
### -V, --version
205
+
206
+
This option shows program's version number and exits.
207
+
208
+
### --disable-version-check
209
+
210
+
This option skips checking for a new version of the program.
211
+
194
212
## Checkers Arguments:
195
213
196
214
### -s SKIPS, --skips SKIPS
@@ -205,7 +223,7 @@ This option allows one to enable a comma-separated list of checkers.
205
223
206
224
### directory (positional argument)
207
225
208
-
Specify path to directory you want to scan.
226
+
Specify path to directory you want to scan.
209
227
210
228
### -i INPUT_FILE, --input-file INPUT_FILE
211
229
@@ -224,7 +242,7 @@ You can provide either CSV or JSON file as input_file with vendor, product and v
224
242
- All the characters denoted in parenthesis are aliases for that specific value. Output will be displayed in the same order as priority given to the remarks.
225
243
226
244
3.**comments** - You can write any comments you want to write in this field. This will be ignored in the console output but will be propagated as it is in CSV, JSON or HTML formats.
227
-
4.**severity** - This field allows you to adjust severity score of specific product or CVE. This can be useful in the case where CVE affects a portion of the library that you aren't using currently but you don't want to ignore it completely. In that case, you can reduce severity for this CVE.
245
+
4.**severity** - This field allows you to adjust severity score of specific product or CVE. This can be useful in the case where CVE affects a portion of the library that you aren't using currently but you don't want to ignore it completely. In that case, you can reduce severity for this CVE.
228
246
5.**cve_number** - This field give you fine grained control over output of specific CVE. You can change remarks, comments and severity for specific CVE instead of whole product.
229
247
230
248
You can use `-i` or `--input-file` option to produce list of CVEs found in given vendor, product and version fields (Usage: `cve-bin-tool -i=test.csv`) or supplement extra triage data like remarks, comments etc. while scanning directory so that output will reflect this triage data and you can save time of re-triaging (Usage: `cve-bin-tool -i=test.csv /path/to/scan`).
@@ -315,7 +333,11 @@ Although the examples in this section show results for a single library to make
315
333
316
334
This option allows you to specify the filename for the report, rather than having CVE Binary Tool generate it by itself.
This option allows the CVE Binary Tool to produce a report in an alternate format. This is useful if you have other tools which only take a specific format. The default is `console` which prints category wise beautiful tables of CVEs on terminal.
4.`--format html` - creates a report in html format according to the specified HTML theme.
395
+
396
+
### -c CVSS, --cvss CVSS
397
+
398
+
This option specifies the minimum CVSS score (as integer in range 0 to 10) of the CVE to report. The default value is 0 which results in all CVEs being reported.
0 commit comments