[ SECURITY CAPABILITIES ]

The Argus Defensive Suite

Detailed technical capabilities, deployment architecture, and API samples for our core security products.

Coming Soon

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
Pre-Order ProxyLB License

// proxy routing architecture

SOCKS5 Clients
Argus ProxyLB
Upstream Pool
PROXYLB STATUS CHECK CLI
proxylb --config /etc/proxylb/config.json --status
// STATUS OUTPUT:
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)
Coming Soon

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.

🔐 Secure distributed backup storage
🔄 Automatic file deduplication (SHA-256)
📦 Intelligent file chunking
🌐 Multi-provider redundancy
🚀 Real-time upload progress (HTMX)
📥 Usenet Recovery: Server-side file reassembly and verification
Streaming Proxy: Download files directly from Usenet without server storage
🩺 Self-Healing: Automatic article retention monitoring and republishing
🔗 Shareable download links & NZB email delivery
📊 Storage & Bandwidth analytics
Pre-Order Vault License
VAULT UPLOAD CONSOLE CLI
vault upload --file db_backup.tar.gz --redundancy 3
// OUTPUT LOGS:
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)
Available Now

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.

🛡️ Real-time Request Payload Filtering (OWASP CRS compliant)
🤖 Cryptographic Proof-of-Work JS Challenge Bot Mitigation
🌍 ASN & Country Gating via GeoIP databases
💨 Dual-layer Token-Bucket Rate Limiter (Redis + In-Memory Fallback)
Zero-downtime YAML Rule Hot-reloads (`fsnotify` configuration watcher)
🔍 Outbound Data Leak Prevention (DLP) Response Scanning
🔑 Native `argus-license` Go SDK feature-gating & tier compliance
📈 Unified Django Management Dashboard for stats, logging & rule edits

// waf defensive pipeline

🌐 Public Internet (Clients)
🔒 Pangolin (TLS Term) & Ingress
🛡️ Argus Shield WAF (Go Data Plane)
🐳 Protected Microservices (Upstreams) Nominal
WAF DYNAMIC YAML RULE CONFIG YAML
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"
// FSNOTIFY WATCHER TRIGGER:
[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.