[THUGS(red)]

THUGS(red) APT

Our Debian APT repository — the small binaries and tools we build, packaged and installable with apt.

Tooling live
apt.thugs.red open ↗

A proper Debian/Ubuntu package repository for the small binary applications the team writes. Add the repo, apt install the tool, get updates like any other package — no cloning a repo, chasing build dependencies and copying something into /usr/local/bin by hand. Packaging our own work is also the honest test of it: if it cannot be installed and removed cleanly, it is not finished.

Install it

# 1. Trust the repository signing key
sudo install -d -m 0755 /etc/apt/keyrings
sudo curl -fsSL -o /etc/apt/keyrings/thugsred.gpg \
     https://apt.thugs.red/repo/thugsred.gpg.key

# 2. Add the repository, pinned to that key
echo "deb [signed-by=/etc/apt/keyrings/thugsred.gpg] https://apt.thugs.red/repo zerotrust main" \
  | sudo tee /etc/apt/sources.list.d/thugsred.list

# 3. Update and install
sudo apt update
sudo apt install ipdigger

Verify the key

Adding a third party's repository means trusting it to ship you root-run install scripts. Check the fingerprint before you do — including ours.

# Check the key you just installed is the one you expected
gpg --show-keys --with-fingerprint /etc/apt/keyrings/thugsred.gpg
#   pub   rsa3072 2026-01-14 [SC] [expires: 2028-01-14]
#   3D99 5375 5FEE 1A74 4C84  9177 E7B8 5F51 F305 BFD9
#   uid   THUGSred APT Repo
debian ubuntu apt packaging deb tooling

go to apt.thugs.red