The Argus Defensive Suite
Detailed technical capabilities, deployment architecture, and API samples for our core security products.
Argus ProxyLB
SOCKS5 Load-Balancing Proxy in Go
Argus ProxyLB is a production-ready SOCKS5 load-balancing proxy written in Go. It accepts multiple simultaneous client connections and routes them through a pool of upstream SOCKS5 proxies using a configurable, pluggable ranking system.
- Accepts multiple simultaneous SOCKS5 client connections
- Intelligent routing through an upstream SOCKS5 proxy pool
- Configurable, pluggable ranking based on latency and health
- Chained instances to build multi-tier routing hierarchies
// proxy routing architecture
proxylb --config /etc/proxylb/config.json --status
Active Client Connections: 142 Upstream SOCKS5 Proxies: 8 active / 10 total Current Routing Strategy: ranked (RTT + Success Rate) Health Check: All systems nominal (Status: ACTIVE)
Argus Vault
Distributed Backup Storage Platform by Argus Security
Argus Vault is a secure, distributed backup storage platform. It segregates, compresses, and replicates backup data using zero-knowledge encryption directly to Usenet and cloud providers.
vault upload --file db_backup.tar.gz --redundancy 3
Calculating SHA-256 hash... 2a71ac551... Checking deduplication registry... [NO DUPES FOUND] Deduplicating & Chunking file... 8 blocks generated Replicating chunks to Usenet & Redundant Targets... Progress [████████████████████] 100% (Real-time HTMX update) Reassembly & NZB configuration completed. (Status: SECURE)
Argus Shield
High-Performance WAF Reverse Proxy in Go
Argus Shield is a high-performance Web Application Firewall (WAF) reverse proxy data plane written in Go. Designed to inspect and filter HTTP traffic at line rates, it sits as a defensive barrier in front of your applications, protecting them against exploit payloads, malicious bots, and data leaks.
// waf defensive pipeline
id: xss-prevention-policy name: "Block Cross-Site Scripting Attacks" action: BLOCK conditions: - parameter: REQUEST_BODY match_regex: "(?i)<script|javascript:|onerror=" - parameter: HEADERS match_key: "User-Agent" match_regex: "sqlmap|nikto|nmap"
[2026-05-28T15:28:44Z] [watcher] Rules modified: rules.yaml [2026-05-28T15:28:44Z] [watcher] Compiling and reloading configuration... [2026-05-28T15:28:44Z] [WAF] Reload complete. 48 rules compiled successfully.