Arch Linux dev & security lab: Python, Go, Rust, Node, nmap, radare2, yara, nuclei, ffuf.
159
Arch Linux development & defensive security lab container.
A rolling-release Arch Linux environment packed with programming languages, CLI tools, network analysis utilities, binary analysis frameworks, and defensive security tools — ready to mount your project into and get to work.
| Tool | Purpose |
|---|---|
| Python 3 + pip + pipx + virtualenv | Scripting, exploit dev, automation |
| Go | System tooling, security tools |
| Rust (via rustup, stable) | Systems programming |
| Node.js + npm | JavaScript/TypeScript tooling |
| PHP + Composer | Web backend development |
| Java (OpenJDK) | JVM ecosystem |
| Ruby, Lua, Perl | Scripting |
base-devel · cmake · ninja · meson · clang · llvm · lldb · gdb · strace · ltrace · valgrind · git · git-lfs · github-cli
neovim · tmux · zsh · ripgrep · fd · fzf · bat · lsd · jq · yq · htop · hyperfine
nmap · masscan · tcpdump · tshark · wireshark-cli · socat · openbsd-netcat · mtr · whois · bind/dig · proxychains-ng · openssh
radare2 · binwalk · pwndbg · hexedit · file · strings · objdump · readelf
yara · clamav (with signatures) · lynis · rkhunter · aide · auditd · python-scapy
pwntools · impacket · cryptography · httpx · paramiko · capstone · keystone-engine · angr · frida-tools · volatility3 · scapy
subfinder · httpx (projectdiscovery) · nuclei · ffuf · waybackurls · anew
# Basic interactive shell
docker run --rm -it \
-v "$PWD:/workspace" \
theinfobots/arch-devsec:latest
# With network capture capabilities (tcpdump / tshark)
docker run --rm -it \
--network host \
--cap-add NET_ADMIN \
--cap-add NET_RAW \
-v "$PWD:/workspace" \
theinfobots/arch-devsec:latest
# With ptrace for gdb / strace against container processes
docker run --rm -it \
--cap-add SYS_PTRACE \
--security-opt seccomp=unconfined \
-v "$PWD:/workspace" \
theinfobots/arch-devsec:latest
git clone https://github.com/theinfobots/arch-devsec
cd arch-devsec
docker build --pull -t theinfobots/arch-devsec:latest .
--privileged unless you have a specific reason./var/run/docker.sock inside the container.--network host combined with NET_RAW/NET_ADMIN grants significant network access — use only in isolated lab environments.| Tag | Description |
|---|---|
latest | Most recent build from main branch |
Built and maintained by theinfobots.
Content type
Image
Digest
sha256:e9b1625bf…
Size
4.7 GB
Last updated
6 months ago
docker pull theinfobots/arch-devsec