Skip to main content

Zero-config DDoS protection for Bittensor miners via Cloudflare Tunnel

Project description

djinn-tunnel-shield

Zero-config DDoS protection for Bittensor miners via Cloudflare Tunnel.

Install

pip install djinn-tunnel-shield

Miner (3 lines)

from djinn_tunnel_shield import MinerShield

shield = MinerShield(wallet, subtensor, netuid, port=8422)
asyncio.create_task(shield.run())

# In your health endpoint, include: {"tunnel_url": shield.tunnel_url}

Without CLOUDFLARE_TOKEN: emergency quick tunnel activates only when DDoS is detected (validator pings go silent). Logs a warning to set up a permanent tunnel.

With CLOUDFLARE_TOKEN: permanent named tunnel, stable URL, fully TOS-compliant.

Validator (3 lines)

from djinn_tunnel_shield import ShieldResolver

resolver = ShieldResolver(wallet=wallet)

# In health check, after parsing response:
resolver.cache_from_health(uid, health_data)

# When connecting to a miner:
for url in resolver.urls(uid, ip, port, "/health"):
    try:
        resp = await client.get(url)
        resolver.record_success(uid)
        break
    except Exception:
        resolver.record_failure(uid)

The resolver tries direct IP first. After consecutive failures, it switches to the cached tunnel URL. Periodically probes direct IP to detect recovery.

How it works

  1. Miner starts a Cloudflare Tunnel (quick or named)
  2. Tunnel URL is encrypted per-validator (ECIES) and committed on-chain
  3. Validators decrypt the URL and cache it
  4. On direct-IP failure (DDoS), validators route through the tunnel
  5. Cloudflare absorbs the volumetric attack; miner stays reachable

Configuration

from djinn_tunnel_shield import ShieldConfig

config = ShieldConfig(
    expected_ping_interval=12.0,  # seconds between validator pings
    min_missed_pings=5,           # consecutive misses before DDoS detection
    recovery_cooldown=300.0,      # seconds of stable pings before deactivating
    recommit_interval=3600.0,     # re-commit URL on-chain every hour
    direct_failure_threshold=2,   # switch to tunnel after N direct-IP failures
    direct_probe_interval=300.0,  # probe direct IP every 5 min while in tunnel mode
)

Third-party services

This package uses Cloudflare Tunnel (via the cloudflared binary) to route traffic through Cloudflare's network. By using this package, you agree to comply with Cloudflare's Terms of Service and Self-Serve Subscription Agreement.

Quick tunnels (activated without CLOUDFLARE_TOKEN) use Cloudflare's trycloudflare.com service, which is intended for testing and development. This package only activates quick tunnels as a temporary emergency measure during detected DDoS attacks. For permanent, production-grade, TOS-compliant protection, set CLOUDFLARE_TOKEN to use a named tunnel with your own Cloudflare account (free tier is sufficient).

Named tunnels (activated with CLOUDFLARE_TOKEN) use Cloudflare's Zero Trust free plan, which supports production use. You are responsible for creating and managing your own Cloudflare account.

The cloudflared binary is downloaded from Cloudflare's official GitHub releases. This package verifies the binary via SHA256 checksum when configured.

Djinn Inc. is not affiliated with, endorsed by, or sponsored by Cloudflare, Inc. Cloudflare, cloudflared, and related marks are trademarks of Cloudflare, Inc.

Disclaimer

THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. USE AT YOUR OWN RISK.

This package provides DDoS mitigation on a best-effort basis. It does not guarantee protection against all forms of attack. The authors and contributors are not liable for any damages, losses, or service disruptions arising from the use of this software, including but not limited to: data loss, missed validator pings, miner deregistration, lost emissions, or any financial losses.

You are solely responsible for:

  • Compliance with Cloudflare's Terms of Service
  • The security of your Cloudflare API tokens and credentials
  • Monitoring the operation of tunnels on your infrastructure
  • Any costs incurred from Cloudflare or other third-party services

This software automatically downloads and executes the cloudflared binary from Cloudflare's GitHub releases. While checksums are verified when configured, you should review and understand the software you run on your infrastructure.

License

MIT. See LICENSE for full text.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

djinn_tunnel_shield-0.2.0.tar.gz (14.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

djinn_tunnel_shield-0.2.0-py3-none-any.whl (15.8 kB view details)

Uploaded Python 3

File details

Details for the file djinn_tunnel_shield-0.2.0.tar.gz.

File metadata

  • Download URL: djinn_tunnel_shield-0.2.0.tar.gz
  • Upload date:
  • Size: 14.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for djinn_tunnel_shield-0.2.0.tar.gz
Algorithm Hash digest
SHA256 ffd192b65378c27cabba238c189c4b9dee80e21f3ac5e1a52018b18e44e9fb84
MD5 5621f6f266e97cbeb129b057ab22cb69
BLAKE2b-256 574aa9771747b5b89fa3f64f37dcc09a16892e48a4dfdd59e818bdd019cd0aa5

See more details on using hashes here.

File details

Details for the file djinn_tunnel_shield-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for djinn_tunnel_shield-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 94b385c7241a7db3f5492615e70a76b9ed3e9f905623dcc66f1b35ab183d2883
MD5 4b33b786bc2e571abc717aba7d98233f
BLAKE2b-256 8a7a7daf864af6e07e76f1a147dcca3b9259082edaea80e004a80ef520d43325

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page