
Research
Malicious fezbox npm Package Steals Browser Passwords from Cookies via Innovative QR Code Steganographic Technique
A malicious package uses a QR code as steganography in an innovative technique.
cloudflarify
Advanced tools
A Python package to easily start and manage Cloudflare Tunnels for exposing local services securely.
✅ Auto-downloads & updates the cloudflared
binary
✅ Supports Windows, Linux, and macOS
✅ Works with Cloudflare account tunnels or TryCloudflare
✅ Asynchronous & efficient (aiohttp
based)
✅ Automatic exponential backoff for stable connections
Install via PyPI:
pip install cloudflarify
import asyncio
from cloudflarify import start_tunnel
async def main():
tunnel_url = await start_tunnel(app_port=5000)
print(f"Tunnel is live at: {tunnel_url}")
asyncio.run(main())
asyncio.run(start_tunnel(app_port=5000, tunnel_key="YOUR_TUNNEL_KEY"))
asyncio.run(start_tunnel(config_file="path/to/config.yml"))
from flask import Flask
import asyncio
from cloudflarify import start_tunnel
port = 5000
app = Flask(__name__)
@app.route("/")
def home():
return "Hello, Cloudflare Tunnel!"
if __name__ == "__main__":
asyncio.run(start_tunnel(app_port=port)) # Start tunnel
app.run(port=port) # Start Flask app
aiohttp
, tqdm
This project was inspired by flask-cloudflared.
This project is MIT licensed.
FAQs
A Python wrapper to run Cloudflare tunnels programmatically
We found that cloudflarify demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.
Application Security
/Research
/Security News
Socket detected multiple compromised CrowdStrike npm packages, continuing the "Shai-Hulud" supply chain attack that has now impacted nearly 500 packages.