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
Copy file name to clipboardExpand all lines: README.md
+43-6Lines changed: 43 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -7,13 +7,11 @@ This repo is a vulnerability database and package search for sources such as App
7
7
A good vulnerability database must have the following properties:
8
8
9
9
- Accuracy
10
-
- Easy to download, [integrate](./INTEGRATION.md), and use
10
+
- Easy to [download](#download-pre-built-database-recommended), [integrate](./INTEGRATION.md), and use
11
11
- Performance
12
12
13
13
Multiple upstream sources are used by vdb to improve accuracy and reduce false negatives. SQLite database containing data in CVE 5.0 schema format is precompiled and distributed as files via ghcr to simplify download. With automatic purl prefix generation even for git repos, searches on the database can be performed with purl, cpe, or even http git url string. Every row in the database uses an open specification such as CVE 5.0 or Package URL (purl and vers) thus preventing the possibility of vendor lock-in.
14
14
15
-
Freeloaders are welcome!
16
-
17
15
## Vulnerability Data sources
18
16
19
17
- Linux [vuln-list](https://github.com/appthreat/vuln-list) (Forked from AquaSecurity)
@@ -40,8 +38,14 @@ Freeloaders are welcome!
40
38
41
39
## Installation
42
40
43
-
```bash
44
-
pip install appthreat-vulnerability-db
41
+
```shell
42
+
pip install appthreat-vulnerability-db>=6.0.0
43
+
```
44
+
45
+
VDB v6 is a major rewrite to use sqlite database. Current users of depscan v5 must continue using version 5.6.x
46
+
47
+
```shell
48
+
pip install appthreat-vulnerability-db==5.6.4
45
49
```
46
50
47
51
## Usage
@@ -98,7 +102,27 @@ It is possible to customize the cache behavior by increasing the historic data p
98
102
- NVD_START_YEAR - Default: 2018. Supports up to 2002
99
103
- GITHUB_PAGE_COUNT - Default: 2. Supports up to 20
0 commit comments