Vulnerability Scanning
mise-server fetches and indexes the OSV advisory database, cross-referencing cached packages against known vulnerabilities.
Configuration
toml
[settings]
osv_fetch = true # enabled by default
osv_refresh_interval = 21600 # 6 hours (in seconds)bash
export MISE_SERVER_OSV_FETCH=true
export MISE_SERVER_OSV_REFRESH_INTERVAL=21600Supported Ecosystems
- crates.io (Cargo)
- Go
- Maven
- npm
- NuGet
- PyPI
- RubyGems
How It Works
- On startup (and periodically), mise-server fetches the OSV advisory database
- Advisories are stored in the
osv_advisoriesPostgreSQL table - Cached packages are cross-referenced against advisories
- Results are available via the web dashboard and API
Disabling
Set osv_fetch = false to disable vulnerability scanning entirely.