RedShrew LogoREDSHREW

All RedShrew Platforms

Pick your stack, drop in RedShrew, and start deceiving adversaries instantly.

Next.js

Next.js
npx @redshrew/wizard@latest -i next.js
import * as RedShrew from '@redshrew/nextjs';

RedShrew.init({
  dsn: 'https://yourRedshrewKey@redshrew.com/ingest',
  deception: true,
  traps: ['ssh', 'api', 'browser'],
  alertSampleRate: 1.0
});

Installs deception traps and sends activity to your analyst dashboard.

Learn more →

Node.js

Node.js
npm install redshrew
const RedShrew = require('redshrew');

RedShrew.init({
  dsn: 'https://yourRedshrewKey@redshrew.com/ingest',
  deception: true,
  traps: ['ssh', 'api']
});

Installs deception traps and sends activity to your analyst dashboard.

Learn more →

Python

Python
pip install redshrew
import redshrew

redshrew.init(
  dsn='https://yourRedshrewKey@redshrew.com/ingest',
  deception=True,
  traps=['ssh', 'api']
)

Installs deception traps and sends activity to your analyst dashboard.

Learn more →

Docker

Docker
docker run redshrew --dsn=https://yourRedShrewKey@redshrew.com/ingest --deception=1
# Pull & run the RedShrew container
docker pull redshrew/latest
docker run redshrew --dsn=https://yourKey@redshrew.com/ingest --deception=1

Installs deception traps and sends activity to your analyst dashboard.

Learn more →

Linux

Linux
curl -sSL https://redshrew.com/install.sh | bash -- --dsn https://yourRedShrewKey@redshrew.com/ingest
# One-liner installer
curl -sSL https://redshrew.com/install.sh | bash -- --dsn https://yourKey@redshrew.com/ingest

Installs deception traps and sends activity to your analyst dashboard.

Learn more →