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
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 pretty-prints the information.
181
+
1.`--format csv` - prints in csv (comma separated) format.
182
+
```
183
+
libgcrypt,1.6.0,CVE-2017-9526,MEDIUM
184
+
libgcrypt,1.6.0,CVE-2018-0495,MEDIUM
185
+
libgcrypt,1.6.0,CVE-2018-6829,HIGH
186
+
```
187
+
2.`--format json` - prints in json (javascript object notation) format.
188
+
```json
189
+
[
190
+
{
191
+
"package": "libgcrypt",
192
+
"version": "1.6.0",
193
+
"cve_number": "CVE-2017-9526",
194
+
"severity": "MEDIUM"
195
+
},
196
+
{
197
+
"package": "libgcrypt",
198
+
"version": "1.6.0",
199
+
"cve_number": "CVE-2018-0495",
200
+
"severity": "MEDIUM"
201
+
},
202
+
{
203
+
"package": "libgcrypt",
204
+
"version": "1.6.0",
205
+
"cve_number": "CVE-2018-6829",
206
+
"severity": "HIGH"
207
+
}
208
+
]
209
+
```
210
+
3.`--format console` - prints in nice tabular format.
0 commit comments