openclarity / exploit-db-server

Combined server and periodic updater based on https://github.com/vulsio/go-exploitdb

Home Page:openclarity.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

exploit-db-server

exploit-db-server combines go-exploitdb running in server mode with a mechanism for periodically updating the known exploits into a single container which can be deployed standalone or on kubernetes.

It will update the database (from all supported sources) once when the container starts and then every 3 hours until the container stops.

Table of Contents

Building

# Registry defaults to ghcr.io/openclarity and tag defaults to the latest commit ID
DOCKER_REGISTRY=<registry> DOCKER_TAG=<tag> make docker

Running

docker run -d -p 1326:1326 --name exploit-db-server <registry>/exploit-db-server:<tag>

To persist the database between container runs:

mkdir /opt/exploit-db
docker run -d -p 1326:1326 -v /opt/exploit-db:/var/lib/go-exploitdb -name exploit-db-server <registry>/exploit-db-server:<tag>

Querying

Example for how to query the server are given on the go-exploitdb README:

Contributing

If you are ready to jump in and test, add code, or help with documentation, please follow the instructions on our contributing guide for details on how to open issues, setup VMClarity for development and test.

Code of Conduct

You can view our code of conduct here.

License

Apache License, Version 2.0

About

Combined server and periodic updater based on https://github.com/vulsio/go-exploitdb

openclarity.io

License:Apache License 2.0


Languages

Language:Dockerfile 67.4%Language:Makefile 20.8%Language:Shell 11.7%