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.1.1.tar.gz (14.3 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.1.1-py3-none-any.whl (15.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: djinn_tunnel_shield-0.1.1.tar.gz
  • Upload date:
  • Size: 14.3 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.1.1.tar.gz
Algorithm Hash digest
SHA256 f16e29b5d9926aabedcf671fe0409d551f646a887b4921c2833027cf19ae4af5
MD5 758cce6937f860609d10fdd98c70136d
BLAKE2b-256 5ea4ae50c8c60061cfe695399277da08822331f0415598a24b410588e68ec4aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djinn_tunnel_shield-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 7cfffa04c93ed60526105c76aaf3be88747d0c41b744b2a0c6fc8be0e9cfa641
MD5 da16ef339aadcbdf48c96d2f3b5c774b
BLAKE2b-256 8ec95b841fa99075a0ca429356bb239299e75dfeedeb0480b77fcf00eb551f25

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