All RedShrew Platforms
Pick your stack, drop in RedShrew, and start deceiving adversaries instantly.
Next.js
npx @redshrew/wizard@latest -i next.jsimport * 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
npm install redshrewconst 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
pip install redshrewimport 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 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=1Installs deception traps and sends activity to your analyst dashboard.
Learn more →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/ingestInstalls deception traps and sends activity to your analyst dashboard.
Learn more →