Documentation
An honest, technical guide to how Stellar audits code, what it catches, and where to plug it into your workflow.
.zip.Stellar ships two reasoning engines tuned for different jobs.
Single-pass triage. Best for snippets, configs, single files, and CI gates where latency matters. Catches the obvious — injection, hardcoded secrets, weak crypto, misconfigured RBAC.
Chains analysis across files, tracks data flow between functions, and reasons about business-logic abuse. Recommended for smart contracts, auth flows, and anything where exploit chains span multiple files.
Before any payload leaves your browser, the Pre-flight panel runs two deterministic checks locally:
.env values.package.json, requirements.txt, Cargo.toml, go.mod, Gemfile.lock — then queries OSV.dev for known vulnerabilities.Every finding has the same shape:
Use the Compare view (/compare) to diff two scans side-by-side and see which findings were resolved.
Every scan exports as SARIF 2.1.0 — the industry standard. SARIF imports cleanly into:
Raw JSON is also available for custom pipelines.
Source files for mainstream stacks, plus configs and archives.
Your source code is not retained after a scan completes. We persist only the scan metadata (target name, mode, timestamp) and the structured report so you can revisit findings later.
Payloads are not used to train any model. Deleting a scan from History removes the report from our database.