Loading…
System CLI tools used across the training modules — voice cloning, voice agents, and social engineering.
curlHTTP client for API requestssystem package# === Install curl === # Usually pre-installed on Ubuntu/Pop!_OS sudo apt install -y curl # Verify curl --version
Created and maintained by Daniel Stenberg
gitVersion controlsystem package# === Install Git === # Usually pre-installed on Ubuntu/Pop!_OS sudo apt install -y git # Verify git --version
git-lfsGit extension for versioning large files (model weights, audio datasets)system package# === Install Git LFS === sudo apt install -y git-lfs # Initialize Git LFS for your user (one-time setup) git lfs install # Verify git lfs version
golangGo programming language compiler and toolssystem package# === Install Go === sudo apt install -y golang-go # Verify go version
imgcatDisplay images in the terminal (renders PNG/JPG/GIF inline in supported terminals)built from source (Go)# === Build imgcat from source === # Requires Go (sudo apt install -y golang-go) # Switch to root for installation sudo su go install github.com/danielgatis/imgcat@latest cp ~/go/bin/imgcat /usr/local/bin/imgcat # Return to normal user exit # Verify imgcat --help
jqJSON processor for parsing API responsessystem package# === Install jq === sudo apt install -y jq # Verify jq --version
nanoSimple terminal-based text editorsystem package# === Install nano === # Usually pre-installed on Ubuntu/Pop!_OS sudo apt install -y nano # Verify nano --version
netcatTCP/UDP networking utility for reading and writing across connectionssystem package# === Install netcat === # Two variants available — OpenBSD version is recommended sudo apt install -y netcat-openbsd # Or the traditional version # sudo apt install -y netcat-traditional # Verify nc -h
ngrepNetwork packet grep — filter and display network traffic by patternsystem package# === Install ngrep === sudo apt install -y ngrep # Verify ngrep -h
nmapNetwork scanner and security auditing toolsystem package# === Install nmap === sudo apt install -y nmap # Verify nmap --version
pipxInstall and run Python CLI tools in isolated environmentssystem package# === Install pipx === sudo apt install -y pipx # Verify pipx --version
podmanRootless container runtime (Docker alternative)system package# === Install Podman === sudo apt install -y podman # Verify podman --version
podman-composeDocker Compose alternative for Podmansystem package# === Install Podman Compose === sudo apt install -y podman-compose # Verify podman-compose --version
sip-testerSIP traffic generator and testing tool (SIPp)system package# === Install sip-tester (SIPp) === sudo apt install -y sip-tester # Verify sipp -v
sipgrepSIP-aware packet capture and filtering toolsystem package# === Install sipgrep === sudo apt install -y sipgrep # Verify sipgrep --version
sipviciousSIP auditing toolkit — scanner, enumerator, and password cracker for VoIP systemssystem package# === Install SIPVicious === sudo apt install -y sipvicious # Verify svmap --version
sngrepTerminal-based SIP message flow viewer and packet capture toolsystem package# === Install sngrep === sudo apt install -y sngrep # Verify sngrep --version
timeMeasure command execution timesystem package# === Install time === sudo apt install -y time
uvFast Python package manager and virtual environment tool from Astralinstaller script# === Install uv === curl -LsSf https://astral.sh/uv/install.sh | sh # Verify uv --version
yt-dlpDownload audio/video from YouTube and other platformssystem package# === Install yt-dlp via uv === # The apt version is often outdated — uv keeps it current # Switch to root for installation sudo su mkdir -p /opt/yt-dlp cd /opt/yt-dlp # Create venv and install with uv uv venv .venv --python 3.12 uv pip install --python .venv/bin/python3 yt-dlp # === Create system wrapper === tee /usr/local/bin/yt-dlp << 'EOF' #!/bin/bash source /opt/yt-dlp/.venv/bin/activate exec yt-dlp "$@" EOF chmod +x /usr/local/bin/yt-dlp # Return to normal user exit # Verify yt-dlp --version # === Update yt-dlp (run as root) === # sudo su # uv pip install --python /opt/yt-dlp/.venv/bin/python3 --upgrade yt-dlp # exit