Your auth stops at login. We protect everything after.
Add one script tag. Device keys are auto-generated, every request is signed, and a stolen cookie without the device key is useless.
One script tag. Zero dependencies. Free forever.
<!-- Add one script tag. That's it. -->
<script
src="https://tokenforge-api.opensyber.cloud/sdk.js"
data-api-key="tf_your_api_key"
></script>
<!-- Device keys auto-generated, fetch() auto-signed -->
What happens when your session cookie is stolen?
AiTM phishing captures session cookies after MFA. See the difference.
Without TokenForge
- ✓User logs in with MFA
- ⚠Attacker runs AiTM proxy
- ⚠Session cookie captured
- ⚠Cookie used from attacker’s machine
- ✓Valid session — system can’t tell
- ✗BREACHED — MFA irrelevant
With TokenForge
- ✓User logs in with MFA
- ⚠Attacker runs AiTM proxy
- ⚠Session cookie captured
- ⚠Cookie used from attacker’s machine
- ✗No device signature — check fails
- 🛡Score: 0/100 — REVOKED
Your Sessions Are Vulnerable
Authentication gets you in the door. But once inside, your session token is the only thing between an attacker and your data.
AiTM Phishing
Adversary-in-the-middle attacks steal session cookies in real-time, bypassing MFA completely.
XSS Token Theft
Cross-site scripting extracts tokens from localStorage and cookies. One XSS and every session is compromised.
Session Hijacking
Stolen cookies work from any device, any location. There is no way to tell a legitimate user from an attacker.
Three Steps to Protection
One script tag on the client. One middleware on the server. Full visibility in the dashboard.
Add Script Tag
One line in your HTML. The script auto-generates device keys, binds the session, and signs all fetch() requests.
Add Server Middleware
One line of middleware verifies every request via the TokenForge API. Express, Next.js, Hono, or Fastify.
Monitor
Dashboard shows trust scores, security events, and anomalies in real time. Get alerts on suspicious sessions.
7-Signal Trust Score
Every request is scored on 7 weighted signals. Configurable thresholds let you allow, challenge, or block.
Configurable Thresholds
Request proceeds normally
Challenge with OTP, TOTP, or passkey
Reject and invalidate session
Try It: Interactive Trust Score
Toggle "Signature Valid" off to see what happens when a stolen cookie is used from another machine.
Two Lines. That's It.
Drop-in client SDK with automatic request signing. Framework-agnostic server middleware.
<!-- Add to your HTML <head> — that's it -->
<script
src="https://tokenforge-api.opensyber.cloud/sdk.js"
data-api-key="tf_your_api_key"
></script>
<!-- Auto-binds device, auto-signs all fetch() calls -->import { tokenForgeMiddleware } from '@opensyber/tokenforge/express';
app.use(tokenForgeMiddleware({
apiKey: process.env.TOKENFORGE_API_KEY!,
}));
// req.tf.bound, req.tf.trustScore, req.tf.deviceIdEvery Platform. One API Key.
Web, mobile, AI agents, microservices — all protected by the same trust scoring engine.
Web
- Script Tag
- Express
- Next.js
- Hono
- Fastify
Mobile
- Swift (iOS)
- Kotlin (Android)
- React Native
AI Agents
- Python
- Go
- MCP Server
Zero Code
- DNS Proxy
Why TokenForge?
The only cross-browser, framework-agnostic solution with cryptographic device binding and trust scoring.
| Feature | TokenForge | Google DBSC | Session Cookies | Device Fingerprinting |
|---|---|---|---|---|
| Cross-browser | N/A | |||
| Framework agnostic | ||||
| Cryptographic proof | ||||
| Trust scoring | ||||
| Step-up auth | ||||
| Zero dependencies | N/A | N/A |
Simple, Transparent Pricing
Start free. Scale as your app grows. No hidden fees.
Free
For developers who need to know if their sessions are being hijacked
- 10K verifications/mo
- 1,000 active sessions
- Community support
- Basic trust scoring
- Single project
Pro
For production apps where one stolen session means one breached user
- 50K verifications/mo
- 5K active sessions
- Email support
- Step-up authentication
- Custom thresholds
- Webhook alerts
- 5 projects
Team
For teams where one compromised session could compromise the whole org
- 250K verifications/mo
- 25K active sessions
- Priority support
- SSO integration
- Team management
- Audit logs
- 20 projects
Enterprise
For organizations with compliance needs
- Unlimited verifications
- Unlimited sessions
- Dedicated support + SLA
- Data residency
- Custom integrations
- SOC2 compliance reports
- Unlimited projects
All plans include cryptographic device binding, trust scoring, and graceful degradation.
Part of the OpenSyber security ecosystem.
Two layers of protection for modern development teams.
Runtime security for AI agents. Monitors what Claude Code, Cursor, and Windsurf actually do.
Device-bound session security. Makes stolen tokens worthless via ECDSA P-256.
Together: from the moment your developer logs in to the last request their AI agent makes.