-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vulnz.yaml.example
More file actions
73 lines (62 loc) · 1.89 KB
/
.vulnz.yaml.example
File metadata and controls
73 lines (62 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# vulnz-go configuration file
# Place this file at ~/.vulnz.yaml or use --config flag
# Logging configuration
log:
level: info # Log level: debug, info, warn, error
slim: false # Slim logging (minimal output)
show_timestamp: true # Show timestamps in logs
show_level: true # Show log level in output
# Workspace root directory (where all provider data is stored)
root: ./data
# Executor configuration
executor:
max_concurrent: 4 # Maximum number of providers to run in parallel
timeout: 30m # Timeout for provider execution
# Provider configurations
providers:
# Common settings shared by all providers
common:
user_agent: "vulnz-go/1.0"
import_results:
enabled: false
host: ""
path: "providers/{provider_name}/listing.json"
# Alpine Linux
alpine:
runtime:
result_store: sqlite # Storage backend: flat-file or sqlite
existing_results: delete-before-write # keep, delete, or delete-before-write
request_timeout: 125s
# Debian
debian:
runtime:
result_store: flat-file
existing_results: keep
# Ubuntu
ubuntu:
runtime:
result_store: sqlite
existing_results: delete-before-write
# Red Hat
rhel:
runtime:
result_store: sqlite
existing_results: delete-before-write
# National Vulnerability Database
nvd:
runtime:
result_store: sqlite
existing_results: delete-before-write
api_key: "${NVD_API_KEY}" # Environment variable substitution
request_timeout: 60s
# GitHub Security Advisories
github:
runtime:
result_store: sqlite
existing_results: delete-before-write
api_token: "${GITHUB_TOKEN}" # Optional GitHub API token for higher rate limits
# Open Source Vulnerabilities
osv:
runtime:
result_store: sqlite
existing_results: delete-before-write