Respond to threats instantly
Revoke access, block IPs, and activate lockdown mode
When security incidents happen, every second counts. Block IPs, revoke API keys, and enable lockdown mode instantly—no deploy, no downtime, no waiting.
Before & after Replane
See how teams transform their workflow
Without Replane
Slow response time
Revoking access or blocking IPs requires code changes and deploys.
No instant lockdown
Can't quickly disable system access during active attacks.
Manual blocklists
IP blocklists and revoked keys hardcoded in config files.
No audit trail
No record of when security settings changed or who changed them.
With Replane
Instant response
Block IPs, revoke keys, enable lockdown in seconds.
Live blocklists
Add IPs or keys to blocklist and see immediate effect.
Emergency lockdown
One click activates lockdown mode across all services.
Complete audit trail
Every security change logged with timestamp and author.
When seconds matter
Respond to threats at the speed of attackers
Instant Response
Block threats in under a second
Full Audit Trail
Complete history of all security changes
No Deploys
Respond to threats without code changes
One-Click Lockdown
Activate security mode instantly
Three simple steps
Get up and running in minutes, not hours
Detect threat
Your security tools alert you to suspicious activity. An API key is compromised or an IP is attacking.
Take action
Add the IP to blocklist, revoke the API key, or enable lockdown mode. Changes apply instantly.
Investigate safely
With the threat blocked, take time to investigate. Full audit trail helps with post-mortem.
Why teams choose Replane
Built for developers who value speed, reliability, and control
Sub-second response
Block threats in milliseconds. No waiting for deploys or cache invalidation.
Granular control
Block specific IPs, revoke individual keys, or lock down entire systems.
Complete audit trail
Every security action logged. Perfect for compliance and post-mortems.
Works with your stack
Official SDKs for all major languages and frameworks
1import { Replane } from '@replanejs/sdk'23interface Configs {4 'security-lockdown-enabled': boolean5 'blocked-ips': string[]6 'revoked-api-keys': string[]7 'rate-limit-strict': number8}910const replane = new Replane<Configs>()1112await replane.connect({13 baseUrl: 'https://replane.example.com',14 sdkKey: process.env.REPLANE_SDK_KEY15})1617// Security middleware18app.use((req, res, next) => {19 // Check lockdown mode20 if (replane.get('security-lockdown-enabled')) {21 return res.status(503).json({22 error: 'System in maintenance mode'23 })24 }2526 // Check IP blocklist27 const blockedIps = replane.get('blocked-ips')28 if (blockedIps.includes(req.ip)) {29 return res.status(403).json({30 error: 'Access denied'31 })32 }3334 // Check API key revocation35 const apiKey = req.headers['x-api-key']36 const revokedKeys = replane.get('revoked-api-keys')37 if (revokedKeys.includes(apiKey)) {38 return res.status(401).json({39 error: 'API key revoked'40 })41 }4243 next()44})4546// Alert on lockdown activation47replane.subscribe('security-lockdown-enabled', (config) => {48 if (config.value) {49 alertSecurityTeam('LOCKDOWN ACTIVATED')50 }51})
Questions about Security Response
Common questions and answers
Within seconds. Add the IP to your blocklist config in Replane, and it propagates to all connected services via SSE in milliseconds. No deploy, no restart, no delay.
Yes! Create a boolean config for lockdown mode. When enabled, your application checks this flag and restricts access. One toggle in the dashboard locks down everything instantly.
Store a list of revoked keys in Replane. Your API gateway checks incoming keys against this list. Add a compromised key to the list and it is immediately blocked everywhere.
Every change is logged with timestamp, author, and optional commit message. You can see exactly when a security change was made and by whom. Essential for compliance and post-mortems.
Replane provides the config infrastructure. Your security tools can update Replane via API when they detect threats. Combine with your SIEM or threat detection tools for automated response.
Explore more ways to use Replane
Ready to ship faster?
Start using Replane in minutes. Free forever for self-hosted, or let us manage everything for you.
No credit card required. MIT licensed. Deploy anywhere.