This package implements the synchronous and the asynchronous APIs publicly exposed by Vulcan, the corresponding specifications are here:
If you are a macOS user you will need to have the realpath
command installed before executing the following instructions.
You can install the command as part of the coreutils
homebrew formula or using MacPorts.
go install github.com/filewalkwithme/impl@latest
go generate ./...
cd cmd/vulcan-api
go install
vulcan-api -c ../../_resources/config/local.toml
The Vulcan API needs a Postgres database and an Authentication service (SAML provider). Run the commands bellow to launch the Docker containers we need:
- Keycloak
- Postgres
- PgAdmin
# navigate to the contrib/dev folder
cd contrib/dev
# launch dependencies
./setup-dependencies.sh
After having the dependencies ready, start the Vulcan API using the
local-dev.toml
file, which is already configured to point to
dependencies we set in the previous step. Remember to re-run this
step every time you modify the Vulcan API.
# run the API using the local dev config file
./run.sh local-dev.toml
If you want to clean up your environment, run the following command to
destroy the Docker containers launched by setup-dependencies.sh
# destroy all containers created by setup-dependencies.sh
./teardown.sh
Those are the variables you have to setup:
Variable | Description | Sample |
---|---|---|
PORT | 8080 | |
SECRET_KEY | SUPERSECRETSIGNKEY | |
COOKIE_DOMAIN | localhost | |
PG_HOST | localhost | |
PG_NAME | vulcanito | |
PG_USER | vulcanito | |
PG_PASSWORD | vulcanito | |
PG_PORT | 5432 | |
PG_SSLMODE | One of these (disable,allow,prefer,require,verify-ca,verify-full) | disable |
PG_CA_B64 | A base64 encoded ca certificate | |
LOG_LEVEL | ERROR, WARN, INFO or DEBUG (default INFO) | |
SAML_MEATADATA | ||
SAML_ISSUER | ||
SAML_CALLBACK | http://localhost:8080/api/v1/login/callback | |
SAML_TRUSTED_DOMAINS | ["localhost"] | |
SCANENGINE_URL | http://localhost:8081/v1/ | |
SCHEDULER_URL | http://localhost:8082/ | |
REPORTS_SNS_ARN | arn:aws:sns:xxx:123456789012:yyy | |
AWS_SNS_ENDPOINT | Optional | |
PERSISTENCE_HOST | persistence.vulcan.example.com | |
VULNERABILITYDB_URL | http://localhost:8083 | |
VULCANTRACKER_URL | Leave the url empty if you don't want to configure the vulcan-tracker component | http://localhost:8085 |
VULCANTRACKER_TEAMS | comma separated list of team ids that has tracker integration,* for all |
ba2f2a9b-1ea8-4a28-9519-eab4ed290866 |
VULCAN_UI_URL | Vulcan UI base URL for Digest report link | http://localhost:1234 |
GPC_${i}_NAME | Specify the name of the global policy that the ${i} ALLOW/BLOCK list will apply. Rquired if any ALLOW/BLOCK list is specified. | web-scanning-global |
GPC_${i}_ALLOWED_ASSETTYPES | Specify an array of allowed assettypes for the specified global policy. Optional. | [] |
GPC_${i}_BLOCKED_ASSETTYPES | Specify an array of blocked assettypes for the specified global policy. Optional. | [] |
GPC_${i}_ALLOWED_CHECKS | Specify an array of allowed checks for the specified global policy. Optional. | ["vulcan-zap","vulcan-burp"] |
GPC_${i}_BLOCKED_CHECKS | Specify an array of blocked checks for the specified global policy. Optional. | ["vulcan-masscan"] |
GPC_${i}_EXCLUDING_SUFFIXES | Specify an array of suffixes for checks to be excluded. Optional. | ["experimental"] |
DNS_HOSTNAME_VALIDATION | Indicates if api should validate DNS existence of a host asset | true |
KAFKA_USER | user | |
KAFKA_PASS | supersecret | |
KAFKA_BROKER | if set to empty the Async API will be disabled | kafka.example.com:9094 |
KAFKA_TOPICS | Contains a map, using toml format, mapping entities in the Vulcan async API to the kafka topics they wil be pushed to, by now the only available entity is assets |
[assets = "assets-topic"] |
First we have to build the vulcan-api because the build only copies the file. |
We need to provide linux
compiled binary to the docker build command. This won't be necessary when this component has been open sourced.
For now, we need to do some extra steps:
./build.sh
docker build . -t va
# Use the default config.toml customized with env variables.
docker run --env-file ./local.env va
# Or set the env variables one by one....
docker run --env PORT=8888 ......... ./local.env va
# Use custom config.toml
docker run -v `pwd`/custom.toml:/app/config.toml va
The structures representing the data models of the async API in go are automatically generated. To update the models run this command from the root of the repository:
go generate pkg/asyncapi/vulcan.go