Products
Each product’s own quickstart. All three are beta — real, working tools with an honestly-scoped feature set, not the eventual full vision. See each section for exactly what that means today.
Sentinel
https://sentinel.onenexora.com
- Open https://sentinel.onenexora.com/app and sign in — same account as everywhere else on NEXORA.
- Paste a log sample, one entry per line (or click “Use sample data”).
- Click Analyze. You get back the lines that matched a fatal/error/reliability keyword, plus lines whose shape barely repeats in your sample.
Today: keyword rules and frequency-based outlier detection on a sample you paste in. Nothing is stored — each analysis is stateless. Not yet: live cloud log connections, LLM-based analysis.
CSPM
- Open https://cspm.onenexora.com/app and sign in.
- Paste a JSON resource list (or click “Use sample data”) — see the resource shape below.
- Click Scan. You get back findings ranked by severity, each naming the resource, the rule, and what’s wrong.
{
"resources": [
{ "type": "s3_bucket", "name": "...", "public_read": true, "encrypted": false },
{ "type": "security_group", "name": "...", "ingress": [{ "port": 22, "cidr": "0.0.0.0/0" }] },
{ "type": "iam_policy", "name": "...", "actions": ["*"], "resources": ["*"] },
{ "type": "database", "name": "...", "publicly_accessible": true, "encrypted": false }
]
}Today: rule-based checks (public buckets, open security groups, wildcard IAM policies, public/unencrypted databases) on a resource description you provide. Nothing is stored. Not yet: connecting a live AWS/GCP/Azure account.
Gateway
Gateway is called via API, not a paste-and-click tool — see API Reference for the full endpoint. To try it without writing code first:
- Open https://gateway.onenexora.com/app and sign in.
- Type a prompt into the playground and send it — no API key needed here, your session is enough.
For a real integration, use an API key from Console:
curl https://gateway.onenexora.com/v1/chat \
-H "Authorization: Bearer nx_live_your_key_here" \
-H "Content-Type: application/json" \
-d '{"messages":[{"role":"user","content":"Hello"}]}'Today: one configurable upstream provider (Anthropic’s Messages API shape by default), proxied with full auth, rate-limiting, entitlement checks and audit logging. Not yet: multi-provider routing, a model allowlist/policy engine.