The following versions are currently supported with security updates:
| Version | Supported |
|---|---|
| 2.x.x | ✅ |
| 1.x.x | ✅ |
| < 1.0 | ❌ |
We take security seriously.
If you discover a security vulnerability, please report it privately using GitHub's Private Vulnerability Reporting feature:
- Go to the repository.
- Click on the Security tab.
- Select Advisories.
- Click Report a vulnerability.
Please do not open a public issue for security vulnerabilities.
- Description of the vulnerability
- Steps to reproduce
- Impact assessment
- Suggested fix (if any)
- Your contact information
- Initial Response: Within 48 hours
- Status Updates: Every 72 hours
- Fix Timeline: Critical issues within 7 days, high priority within 14 days
- Public Disclosure: After fix is deployed (coordinated disclosure)
Each package maintains its own SECURITY.md with specific detections:
| Package | Risk | Dependencies | SECURITY.md |
|---|---|---|---|
| @wabisabi/terminal | High | ws, zod, chalk, commander | packages/terminal/SECURITY.md |
| @wabisabi/auth | High | openid-client, jsonwebtoken, bcryptjs | packages/auth/SECURITY.md |
| @wabisabi/plugins | Medium | None (risk in third-party plugins) | packages/plugins/SECURITY.md |
| @wabisabi/admin | Low | None | packages/admin/SECURITY.md |
GitHub Dependabot must be enabled for this repository:
- Settings > Code security and analysis > Dependabot alerts: Enable
- Dependabot security updates: Enable
- Dependabot version updates: Configure in
.github/dependabot.yml
Dependabot alerts are documented in each affected package's SECURITY.md.
The WabiSabi security agent will automatically run a weekly review that includes:
- Review Dependabot alerts in GitHub Security tab
- Run
bun audit/npm auditon each package - Check current versions vs latest stable
- Merge Dependabot PRs that pass tests (patch/minor)
- Evaluate major updates with breaking changes
- Scan for exposed secrets (API keys, tokens, passwords)
- Review new files for common vulnerabilities
- Check permissions on sensitive files (auth, config)
- Verify input sanitization in tools and endpoints
- Verify web server only listens on localhost
- Check credential encryption at rest
- Review access logs if available
- Verify integrity of installed plugins
- Update each package's SECURITY.md with findings
- Record actions taken in review history
- Notify user of pending issues
The agent will notify the user every Monday with:
- Summary of active Dependabot alerts
- Outdated dependencies
- Vulnerabilities detected in code
- Recommended actions prioritized by severity
| Date | Packages Reviewed | Findings | Actions |
|---|---|---|---|
| 2026-02-16 | All (terminal, auth, plugins, admin) | 2 CRITICAL, 5 HIGH, 5 MEDIUM, 7 LOW | See each package's SECURITY.md for details |
-
✅ @wabisabi/plugins - Arbitrary code execution via
import(pluginPath)without sandboxing- Risk: Malicious code executed with full privileges
- Action: Bun Worker sandboxing + permission enforcement
- Status: ✅ RESOLVED (2026-02-16)
-
✅ @wabisabi/auth - Session tokens with weak encryption key derivation
- Risk: Predictable encryption keys via machine-id, missing atomic writes
- Action: OS keychain integration + atomic writes
- Status: ✅ RESOLVED (2026-02-16)
- ✅ Plugin sandboxing (packages/plugins) - Bun Workers + permission enforcement - RESOLVED (CRITICAL-2)
- ✅ Auth encryption (packages/auth + terminal) - OS keychain + atomic writes - RESOLVED (CRITICAL-1)
- ✅ Web server hardening (packages/terminal) - Localhost binding, token auth, Origin validation, API key via env - RESOLVED (HIGH-3, 2026-02-16)
- ✅ Bash execution restrictions (packages/terminal) - Env allowlist, command blocklist, destructive operation blocking - RESOLVED (HIGH-4)
- ✅ Encryption key derivation (packages/terminal/auth) - OS keychain with PBKDF2 fallback - RESOLVED (HIGH-5)
- ✅ File tool containment (packages/terminal) - Path validation within projectRoot - RESOLVED (MEDIUM)
- ✅ Grep shell injection (packages/terminal) - execFileSync instead of execSync - RESOLVED (MEDIUM)
- ws ^8.16.0 (terminal) - CVE-2024-37890 (DoS) → Update to >=8.17.1
- Files audited: 20+ critical code files
- Severity RESOLVED: 2/2 CRITICAL ✅, 5/5 HIGH ✅, 5/5 MEDIUM ✅, 5/5 LOW ✅
- OWASP Frameworks: A01 (Access Control) ✅, A02 (Crypto) ✅, A03 (Injection) ✅, A07 (Auth), A08 (Integrity) ✅