| Version | Supported |
|---|---|
| 0.1.x | ✅ |
Please report security vulnerabilities by opening a private security advisory on GitHub.
Do not report security vulnerabilities through public GitHub issues.
- Always validate command inputs on the Rust side
- Use Tauri's capability system to restrict API access
- Never trust data from the frontend without validation
- Filesystem plugin: Scope paths appropriately in tauri.conf.json
- Dialog plugin: Consider what file types users can select
- Shell plugin: Be careful with command execution
- Keep Tauri and dependencies updated
- Use the command bridge pattern for type-safe IPC
- Validate all user input on both frontend and backend
- Follow Tauri's security recommendations: https://tauri.app/security/