Introduction
Installation
redteamer runs as a single self-contained CLI binary on Kali Linux.
There are no cloud components, infrastructure, or daemons.
Prerequisites
- Kali Linux
- Network access for initial install and updates
Quick Install (curl)
The simplest way to install redteamer:
curl https://redteamer.io/install | sh
This script configures the apt repo and installs redteamer.
To update, run: sudo apt update && sudo apt upgrade
APT Install
To install with apt manualy:
# Save public GPG signing key
sudo wget https://repo.redteamer.io/public.gpg \
-O /usr/share/keyrings/redteamer.gpg
# Add APT repository
sudo wget https://repo.redteamer.io/apt.list \
-O /etc/apt/sources.list.d/redteamer.list
# Update package list
sudo apt update -y
# Install redteamer
sudo apt install redteamer -y
To update, run: sudo apt update && sudo apt upgrade
Manual Install
If you prefer, you can install redteamer manually.
# Download the appropriate binary for your system architecture
wget https://repo.redteamer.io/bin/linux/$(uname -m)/redteamer
# Make the binary executable
chmod +x redteamer
# Move it into your PATH
sudo mv redteamer /usr/local/bin/
To update, repeat the same steps.
Verify Installation
Once installed, confirm redteamer is working:
rt version
You should see output similar to:
redteamer v1.0.0-beta
