Skip to main content
Security Response

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.

The Problem & Solution

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.

Key Features

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

How It Works

Three simple steps

Get up and running in minutes, not hours

1

Detect threat

Your security tools alert you to suspicious activity. An API key is compromised or an IP is attacking.

2

Take action

Add the IP to blocklist, revoke the API key, or enable lockdown mode. Changes apply instantly.

3

Investigate safely

With the threat blocked, take time to investigate. Full audit trail helps with post-mortem.

Benefits

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.

Code Examples

Works with your stack

Official SDKs for all major languages and frameworks

1import { Replane } from '@replanejs/sdk'
2
3interface Configs {
4 'security-lockdown-enabled': boolean
5 'blocked-ips': string[]
6 'revoked-api-keys': string[]
7 'rate-limit-strict': number
8}
9
10const replane = new Replane<Configs>()
11
12await replane.connect({
13 baseUrl: 'https://replane.example.com',
14 sdkKey: process.env.REPLANE_SDK_KEY
15})
16
17// Security middleware
18app.use((req, res, next) => {
19 // Check lockdown mode
20 if (replane.get('security-lockdown-enabled')) {
21 return res.status(503).json({
22 error: 'System in maintenance mode'
23 })
24 }
25
26 // Check IP blocklist
27 const blockedIps = replane.get('blocked-ips')
28 if (blockedIps.includes(req.ip)) {
29 return res.status(403).json({
30 error: 'Access denied'
31 })
32 }
33
34 // Check API key revocation
35 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 }
42
43 next()
44})
45
46// Alert on lockdown activation
47replane.subscribe('security-lockdown-enabled', (config) => {
48 if (config.value) {
49 alertSecurityTeam('LOCKDOWN ACTIVATED')
50 }
51})
FAQ

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.

Get Started with Security Response

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.