A production-grade security scanner for Bun that integrates with OSV.dev (Open Source Vulnerabilities) to detect known vulnerabilities in npm packages during installation.
OSV.dev is Google's open source vulnerability database that aggregates and distributes vulnerability information for open source projects. It provides:
- Comprehensive Coverage: Vulnerabilities from multiple sources (npm, PyPI, Go, Rust, etc.)
- Structured Data: Machine-readable vulnerability information with precise version ranges
- Real-time Updates: Continuously updated with the latest security advisories
- Authoritative Source: Maintained by Google and the open source community
- Real-time Scanning: Checks packages against OSV.dev during installation
- High Performance: Efficient batch queries with smart deduplication
- Fail-safe: Never blocks installations due to scanner errors
- Structured Logging: Configurable logging levels with contextual information
- Precise Matching: Accurate vulnerability-to-package version matching
- Configurable: Environment variable configuration for all settings
- Well Tested: Comprehensive test suite with edge case coverage
No API keys or registration required - completely free to use with zero setup beyond installation.
# Install as a dev dependency
bun add -d @bun-security-scanner/osvAdd to your bunfig.toml:
[install.security]
scanner = "@bun-security-scanner/osv"The scanner can be configured via environment variables:
# Logging level (debug, info, warn, error)
export OSV_LOG_LEVEL=info
# Custom OSV API base URL (optional)
export OSV_API_BASE_URL=https://api.osv.dev/v1
# Request timeout in milliseconds (default: 30000)
export OSV_TIMEOUT_MS=30000
# Disable batch queries (default: false)
export OSV_DISABLE_BATCH=false- Package Detection: Bun provides package information during installation
- Smart Deduplication: Eliminates duplicate package@version queries
- Batch Querying: Uses OSV.dev's efficient
/querybatchendpoint - Vulnerability Matching: Precisely matches vulnerabilities to installed versions
- Severity Assessment: Analyzes CVSS scores and database-specific severity
- Advisory Generation: Creates actionable security advisories
The scanner generates two types of security advisories:
- CVSS Score: ≥ 7.0 (High/Critical)
- Database Severity: CRITICAL or HIGH
- Action: Installation is immediately blocked
- Examples: Remote code execution, privilege escalation, data exposure
- CVSS Score: < 7.0 (Medium/Low)
- Database Severity: MEDIUM, LOW, or unspecified
- Action: User is prompted to continue or cancel
- TTY: Interactive choice presented
- Non-TTY: Installation automatically cancelled
- Examples: Denial of service, information disclosure, deprecation warnings
The scanner follows a fail-safe approach:
- Network errors don't block installations
- Malformed responses are logged but don't halt the process
- Scanner crashes return empty advisory arrays (allows installation)
- Only genuine security threats should prevent package installation
# Scanner runs automatically during installation
bun install express
# -> Checks express and all dependencies for vulnerabilities
bun add [email protected]
# -> May warn about known lodash vulnerabilities in older versions# Enable debug logging to see detailed scanning information
OSV_LOG_LEVEL=debug bun install
# Test with a known vulnerable package
bun add [email protected]
# -> Should trigger security advisory# Increase timeout for slow networks
OSV_TIMEOUT_MS=60000 bun install
# Use custom OSV instance (advanced)
OSV_API_BASE_URL=https://api.custom-osv.dev/v1 bun installThe scanner is built with a modular, production-ready architecture:
src/
├── index.ts # Main scanner implementation
├── client.ts # OSV.dev API client with batch support
├── processor.ts # Vulnerability processing and advisory generation
├── cli.ts # CLI interface for testing
├── schema.ts # Zod schemas for OSV API responses
├── constants.ts # Centralized configuration management
├── logger.ts # Structured logging with configurable levels
├── retry.ts # Robust retry logic with exponential backoff
├── semver.ts # OSV semver range matching
├── severity.ts # CVSS and severity assessment
└── types.ts # TypeScript type definitions
- Separation of Concerns: Each module has a single, well-defined responsibility
- Error Isolation: Failures in one component don't cascade to others
- Performance Optimization: Batch processing, deduplication, and concurrent requests
- Observability: Comprehensive logging for debugging and monitoring
- Type Safety: Full TypeScript coverage with runtime validation
# Run the test suite
bun test
# Run with coverage
bun test --coverage
# Type checking
bun run typecheck
# Linting
bun run lint- Known vulnerable packages detection
- Safe package verification
- Multiple package scenarios
- Version-specific vulnerability matching
- Network failure handling
- Edge cases and error conditions
git clone https://github.com/bun-security-scanner/osv.git
cd osv
bun install
bun run buildWe do not accept pull requests as this package is actively maintained. However, we appreciate if developers report bugs or suggest features by opening an issue.
See CONTRIBUTING.md for more details.
This scanner integrates with the following OSV.dev endpoints:
- POST /v1/querybatch: Batch vulnerability queries for multiple packages
- POST /v1/query: Individual package queries with pagination support
For complete OSV.dev API documentation, visit: https://google.github.io/osv.dev/api/
| Environment Variable | Default | Description |
|---|---|---|
OSV_LOG_LEVEL |
info |
Logging level: debug, info, warn, error |
OSV_API_BASE_URL |
https://api.osv.dev/v1 |
OSV API base URL |
OSV_TIMEOUT_MS |
30000 |
Request timeout in milliseconds |
OSV_DISABLE_BATCH |
false |
Disable batch queries (use individual queries) |
Scanner not running during installation?
- Verify
bunfig.tomlconfiguration - Check that the package is installed as a dev dependency
- Enable debug logging:
OSV_LOG_LEVEL=debug bun install
Network timeouts?
- Increase timeout:
OSV_TIMEOUT_MS=60000 - Check internet connectivity to osv.dev
- Consider corporate firewall restrictions
Too many false positives?
- OSV.dev data is authoritative - verify vulnerabilities manually
- Check if you're using an outdated package version
- Report false positives to the OSV.dev project
Enable comprehensive debug output:
OSV_LOG_LEVEL=debug bun install your-packageThis shows:
- Package deduplication statistics
- API request/response details
- Vulnerability matching decisions
- Performance timing information
MIT License - see the LICENSE file for details.
- OSV.dev Team: For maintaining the comprehensive vulnerability database
- Bun Team: For the innovative Security Scanner API
- Bun Security Scanner API
- OSV.dev - Open Source Vulnerabilities database
Last Updated: November 6, 2025 Version: 1.0.0
This documentation is a living document and will be updated as the project evolves and new features are added.