Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计异常

mhr-cfw-domain-fronting-relaymhr cfw 域前置中继

Agent Skill

mhr-cfw-domain-fronting-relay 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

783

周安装

32

GitHub Stars

39

下载量

253
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:mhr-cfw-domain-fronting-relay(mhr cfw 域前置中继)
来源仓库:https://github.com/aradotso/trending-skills
仓库路径:skills/mhr-cfw-domain-fronting-relay
安装命令:
npx skills add https://github.com/aradotso/trending-skills --skill mhr-cfw-domain-fronting-relay
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/aradotso/trending-skills --skill mhr-cfw-domain-fronting-relay

简介

mhr-cfw-domain-fronting-relay 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 适用于域前置中继、网络代理和前端设计等前端设计类任务。
  • 支持仓库状态查询、代码变更分析和协作事项整理。
  • 安装命令:npx skills add https://github.com/aradotso/trending-skills --skill mhr-cfw-domain-fronting-relay
  • 建议确认权限范围和维护状态,注意是否会触发命令执行或文件读写操作。

SKILL.md

MHR-CFW Domain-Fronting Relay

Skill by ara.so — Daily 2026 Skills collection.

MHR-CFW (MasterHttpRelay + Cloudflare Worker) is a Python-based domain-fronting relay that routes HTTP/SOCKS5 proxy traffic through Google Apps Script (GAS) and Cloudflare Workers. Network DPI filters see only traffic to www.google.com, while the actual destination is hidden inside the relay chain.

Traffic Flow

Client → Local Proxy (127.0.0.1:8085)
           ↓
       Google IP (216.239.38.120) — DPI sees www.google.com
           ↓
       Google Apps Script Web App (Relay)
           ↓
       Cloudflare Worker
           ↓
       Target Website

Installation

git clone https://github.com/denuitt1/mhr-cfw.git
cd mhr-cfw
pip install -r requirements.txt

If PyPI is blocked:

pip install -r requirements.txt \
  -i https://mirror-pypi.runflare.com/simple/ \
  --trusted-host mirror-pypi.runflare.com

Full Setup Guide

Step 1: Deploy the Cloudflare Worker

  1. Log in to Cloudflare Dashboard
  2. Navigate to Compute > Workers & Pages
  3. Click Create ApplicationStart with Hello WorldDeploy
  4. Click Edit code, delete all default code
  5. Paste the contents of script/worker.js from the repo
  6. Edit the worker URL constant: const WORKER_URL = "your-worker-name.workers.dev";
  7. Click Deploy — note your worker URL (e.g., your-worker-name.workers.dev)

Step 2: Deploy the Google Apps Script Relay

  1. Go to script.google.com and create a New project
  2. Delete all default code
  3. Paste the contents of script/Code.gs from the repo
  4. Edit these two constants at the top: const AUTH_KEY = "your-secret-password-here"; // choose a strong password const WORKER_URL = "https://your-worker-name.workers.dev";
  5. Click DeployNew deployment

- Type: Web app - Execute as: Me - Who has access: Anyone

  1. Click Deploy and copy the Deployment ID (long random string like AKfycb...)

Step 3: Configure config.json

cp config.example.json config.json

Edit config.json:

{
  "mode": "apps_script",
  "google_ip": "216.239.38.120",
  "front_domain": "www.google.com",
  "script_id": "AKfycbXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
  "auth_key": "your-secret-password-here",
  "listen_host": "127.0.0.1",
  "listen_port": 8085,
  "socks5_enabled": true,
  "socks5_port": 1080,
  "log_level": "INFO",
  "verify_ssl": true
}
FieldDescription
modeAlways "apps_script" for GAS relay
google_ipIP of Google's infrastructure for fronting
front_domainDomain shown to DPI (www.google.com)
script_idYour GAS Deployment ID from Step 2
auth_keyMust match AUTH_KEY in Code.gs
listen_hostLocal bind address (keep 127.0.0.1)
listen_portHTTP proxy port (default 8085)
socks5_enabledEnable SOCKS5 proxy on socks5_port
socks5_portSOCKS5 proxy port (default 1080)
log_levelDEBUG, INFO, WARNING, ERROR
verify_sslVerify SSL certs; set false to skip

Step 4: Run the Proxy

Linux/macOS:

bash start.sh
# or
python3 main.py

Windows:

start.bat

Expected output:

[INFO] HTTP proxy running on 127.0.0.1:8085
[INFO] SOCKS5 proxy running on 127.0.0.1:1080

Using the Proxy

Browser via FoxyProxy

Install FoxyProxy:

Configure FoxyProxy:

  • Proxy Type: HTTP or SOCKS5
  • Host: 127.0.0.1
  • Port: 8085 (HTTP) or 1080 (SOCKS5)

curl (HTTP proxy)

curl -x http://127.0.0.1:8085 https://ipleak.net/json/

curl (SOCKS5 proxy)

curl --socks5 127.0.0.1:1080 https://ipleak.net/json/

Python requests

import requests

proxies = {
    "http": "http://127.0.0.1:8085",
    "https": "http://127.0.0.1:8085",
}

response = requests.get("https://ipleak.net/json/", proxies=proxies)
print(response.json())

Python with SOCKS5

import requests

proxies = {
    "http": "socks5://127.0.0.1:1080",
    "https": "socks5://127.0.0.1:1080",
}

response = requests.get("https://ipleak.net/json/", proxies=proxies)
print(response.json())

Configuration Patterns

Minimal config (HTTP only, no SOCKS5)

{
  "mode": "apps_script",
  "google_ip": "216.239.38.120",
  "front_domain": "www.google.com",
  "script_id": "YOUR_DEPLOYMENT_ID",
  "auth_key": "YOUR_AUTH_KEY",
  "listen_host": "127.0.0.1",
  "listen_port": 8085,
  "socks5_enabled": false,
  "log_level": "INFO",
  "verify_ssl": true
}

Debug config (verbose logging, skip SSL verification)

{
  "mode": "apps_script",
  "google_ip": "216.239.38.120",
  "front_domain": "www.google.com",
  "script_id": "YOUR_DEPLOYMENT_ID",
  "auth_key": "YOUR_AUTH_KEY",
  "listen_host": "127.0.0.1",
  "listen_port": 8085,
  "socks5_enabled": true,
  "socks5_port": 1080,
  "log_level": "DEBUG",
  "verify_ssl": false
}

Listen on all interfaces (for LAN sharing)

{
  "listen_host": "0.0.0.0",
  "listen_port": 8085
}
⚠️ Only use 0.0.0.0 on trusted networks. Anyone on the LAN can use your proxy.

Cloudflare Worker (script/worker.js) — Key Structure

// The worker receives proxied requests and forwards them to the target
const WORKER_URL = "your-worker-name.workers.dev"; // set this to your own worker

addEventListener("fetch", event => {
  event.respondWith(handleRequest(event.request));
});

The worker:

  • Receives requests from GAS relay
  • Extracts the target URL from the request
  • Fetches the target on behalf of the client
  • Returns the response back through the chain

Google Apps Script (script/Code.gs) — Key Structure

const AUTH_KEY = "your-secret-password-here";      // must match config.json auth_key
const WORKER_URL = "https://your-worker.workers.dev";

function doPost(e) {
  // Validates AUTH_KEY, extracts target URL, forwards via WORKER_URL
}

The GAS relay:

  • Exposes a public HTTPS endpoint (/exec) that acts as the domain-fronted relay
  • Validates AUTH_KEY on every request
  • Forwards validated requests to your Cloudflare Worker

Verifying It Works

After starting the proxy and configuring your browser:

  1. Visit ipleak.net — your IP should show as a Cloudflare IP
  2. Visit whoer.net — should reflect Cloudflare's location
  3. Via curl: curl -x http://127.0.0.1:8085 https://ipleak.net/json/ | python3 -m json.tool Look for "ip" showing a Cloudflare address range.

Troubleshooting

Proxy starts but no traffic gets through

  • Verify script_id in config.json is the Deployment ID, not the Script ID
  • Re-check that auth_key in config.json exactly matches AUTH_KEY in Code.gs
  • In GAS, confirm deployment is set to Execute as: Me and Who has access: Anyone
  • Try redeploying the GAS app — old deployments sometimes break

SSL errors

"verify_ssl": false

Set to false temporarily to diagnose. Re-enable for production use.

pip install fails (PyPI blocked)

pip install -r requirements.txt \
  -i https://mirror-pypi.runflare.com/simple/ \
  --trusted-host mirror-pypi.runflare.com

GAS quota exceeded

Google Apps Script has daily quotas (~20,000 URL fetch calls/day for free accounts). If the relay stops working mid-day:

  • Use a different Google account for a fresh GAS deployment
  • Deploy multiple GAS relays and alternate script_id values

Port already in use

{
  "listen_port": 8086,
  "socks5_port": 1081
}

Change ports in config.json and update your browser/FoxyProxy settings.

Cloudflare Worker errors (5xx)

  • Check the worker is deployed and the WORKER_URL in Code.gs matches exactly
  • Visit https://your-worker.workers.dev directly in browser — should respond (even with an error page) rather than timeout
  • Check Cloudflare Worker logs in the dashboard under Workers & Pages > your worker > Logs

Debug logging

"log_level": "DEBUG"

Restart main.py — you'll see each relay hop logged to stdout.


Environment Variable Pattern for Automation

When scripting deployment or CI, avoid hardcoding secrets. Use environment variables and generate config dynamically:

import json
import os

config = {
    "mode": "apps_script",
    "google_ip": "216.239.38.120",
    "front_domain": "www.google.com",
    "script_id": os.environ["GAS_DEPLOYMENT_ID"],
    "auth_key": os.environ["MHR_AUTH_KEY"],
    "listen_host": "127.0.0.1",
    "listen_port": int(os.environ.get("MHR_PORT", "8085")),
    "socks5_enabled": True,
    "socks5_port": 1080,
    "log_level": os.environ.get("MHR_LOG_LEVEL", "INFO"),
    "verify_ssl": True
}

with open("config.json", "w") as f:
    json.dump(config, f, indent=2)

print("config.json written")

Then run:

export GAS_DEPLOYMENT_ID="AKfycbXXXXXXXXXXXXXX"
export MHR_AUTH_KEY="$(openssl rand -hex 32)"
python3 write_config.py
python3 main.py

Project File Reference

FilePurpose
main.pyEntry point — starts HTTP and SOCKS5 proxy listeners
config.jsonRuntime configuration (copy from config.example.json)
config.example.jsonTemplate configuration with placeholder values
script/worker.jsCloudflare Worker source — deploy to Cloudflare
script/Code.gsGoogle Apps Script relay source — deploy to GAS
start.batWindows launcher
start.shLinux/macOS launcher
requirements.txtPython dependencies

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

39.8%
按下载量换算101

Claude

28.29%
按下载量换算72

Cursor

18.38%
按下载量换算47

Gemini CLI

9.55%
按下载量换算24

安全审计

Gen Agent Trust Hub

未通过

Socket

可疑

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills