Cloud Native Security Hub is a platform for discovering and sharing rules and configurations for cloud native security tools.
This repository contains the HTTP API and backend code that runs the https://securityhub.dev site
This code requires a recent golang version (1.13) and it uses modules to handle the dependencies.
This project requires a PostgreSQL 11 server running. And you configure the app
to attack the database using the DATABASE_URL
environment variable, which contains
the connection string for your server.
For example: DATABASE_URL="postgres://username:[email protected]/db_name?sslmode=disable"
This is the HTTP API server and it will listen to requests on the 8080
port.
$ go run cmd/server/main.go
You need to setup a couple of environment variables previously to import any data in the database:
RESOURCES_PATH
: Path to securityhub/resources directoryVENDOR_PATH
: Path to securityhub/vendors directory
These directories can be found in the Cloud Native Security Hub Resources repository.
Then with the DATABASE_URL
set, execute:
$ go run cmd/dbimport/main.go
And voila!
Contributors are welcome! You will need a quick package overview to understand some design decisions:
pkg/usecases
: You will find the entry points in thepkg/usecases
directory. One action per file, modeled like a command.pkg/resource
andpkg/vendor
: This is the domain code for security resources and vendors. You will find the repositories, entities and value objects.test
: All our code is test driven, in this directory we have some fixtures to avoid repeating test data in the test code.web
: The web is just a delivery mechanism, it is separated from the backend code and can be used as a library if you need to. Is responsible to JSON marshalling and HTTP communications.db
: Contains the migration files for the database. For every change in the schema, you will need to create the corresponding migration file.