Security¶
QUASAR includes security features to protect sensitive data.
Sensitive File Blocking¶
QUASAR blocks access to sensitive files:
| Pattern | Description |
|---|---|
.env* |
Environment files |
*.pem |
SSL/TLS certificates |
*.key |
Private keys |
*_rsa, *_ecdsa |
SSH keys |
.git/config |
Git credentials |
credentials* |
Credential files |
secrets* |
Secret files |
*.gpg |
GPG encrypted |
.aws/* |
AWS credentials |
.ssh/* |
SSH directory |
What Happens?¶
When you try to read/write sensitive files:
QUASAR will:
- Block the operation
- Report the blocked attempt
- Continue without accessing the file
Command Suggestions¶
QUASAR suggests commands, not executes them:
This prevents:
- Accidental data loss
- Unintended side effects
- Security vulnerabilities
Workspace Isolation¶
QUASAR operates within the specified workspace:
- Cannot access files outside workspace
- Cannot traverse up directories
- Respects project boundaries
Best Practices¶
Review Before Running
Always review QUASAR's suggested commands before executing them.