How Antei manages sessions, scoped tokens, and secure authentication across its application and Vault system.
Session Type | Timeout Duration | Behavior on Expiry |
---|---|---|
App Session | 10 min inactivity | User is logged out and must re-authenticate |
Vault Session | 5 min inactivity | Password prompt required; active across all modules |
Scoped Tokens | 5–15 minutes | Automatically expires; must be regenerated securely |
Key Type | Description | Use Case |
---|---|---|
Production | Access to live org data | Real-time automation, data syncs |
Staging | Test data workflows and development | QA testing, sandbox integrations |
Layer | Purpose |
---|---|
Rate Limiting | Prevents abuse using per-org, per-token rules |
Token Verification | Validates expiry, hash signature, and origin |
User Binding | Auth token must match active user session |
Org Authorization | Ensures the user belongs to the org in context |
Permission Enforcement | Enforces resource-level access based on user role |