VaultGuard

Scan. Store. Secure.

A minimal developer tool to scan your code for secrets and store them locally. No cloud. No complexity. Just security.

Secret Scanning
Automatically detect API keys, tokens, and other secrets in your codebase using pattern matching.
Local Storage
Store your secrets locally in memory. No cloud services, no external dependencies.
CLI & API
Use via command line interface or integrate with your applications using our simple API.

Quick Example

CLI Usage

# Scan for secrets
vaultguard scan myfile.js

# Store a secret
vaultguard vault add API_KEY=sk_123

# Show stored secrets
vaultguard vault show

API Usage

// Scan code for secrets
fetch('/api/scan', {
method: 'POST',
body: JSON.stringify({
code: 'const key = "sk_123"'
})
}