Import a Docker image layers to Clair for security analysis
Project description
# Clair
Clair is an open source project for the static analysis of vulnerabilities in appc and docker containers (https://github.com/coreos/clair).
This Python package provides methods to analyse a local Docker image and injects image layers to a Clair server.
# Example
cfg = {
'clair.host': 'http://127.0.0.1:6060',
'docker.connect': 'tcp://127.0.0.1:2375'
}
log = logging.getLogger(__name__)
test = Clair(cfg)
layers = test.analyse('docker-registry.genouest.org/osallou/testgit')
layer_ids = []
for layer in layers:
layer_ids.append(layer['id'])
vulnerabilities = test.get_layers_vulnerabilities(layer_ids)
log.warn(str(vulnerabilities))
0.1: First release
Clair is an open source project for the static analysis of vulnerabilities in appc and docker containers (https://github.com/coreos/clair).
This Python package provides methods to analyse a local Docker image and injects image layers to a Clair server.
# Example
cfg = {
'clair.host': 'http://127.0.0.1:6060',
'docker.connect': 'tcp://127.0.0.1:2375'
}
log = logging.getLogger(__name__)
test = Clair(cfg)
layers = test.analyse('docker-registry.genouest.org/osallou/testgit')
layer_ids = []
for layer in layers:
layer_ids.append(layer['id'])
vulnerabilities = test.get_layers_vulnerabilities(layer_ids)
log.warn(str(vulnerabilities))
0.1: First release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
clair-0.1.tar.gz
(2.6 kB
view details)
File details
Details for the file clair-0.1.tar.gz
.
File metadata
- Download URL: clair-0.1.tar.gz
- Upload date:
- Size: 2.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 24d335c3e9b34df36145279c51ab50873b1a6170084c53a13e163c01619d86d8 |
|
MD5 | 65a3f4495316db63aad5655614bbc4fa |
|
BLAKE2b-256 | 7a37dcc64a7d714a8c81b8e4110d156b887be079c8fd4a008a108086a7b8f3ca |