This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import requests | |
| import json | |
| import base64 | |
| # ================= 你的真实服务器配置 ================= | |
| USER_ID = "你的-UUID-在这里" | |
| HOST = "yourdomain.com" # 你的伪装域名 (SNI) | |
| PATH = "/yourpath" # 你的 WebSocket 路径 | |
| PORT = 443 | |
| # ===================================================== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import requests | |
| import json | |
| import base64 | |
| # ================= 自定义配置区 ================= | |
| # 1. 你的服务器真实信息 (请务必修改) | |
| CONFIG = { | |
| "id": "你的-UUID-在这里", | |
| "host": "yourdomain.com", # 伪装域名/SNI | |
| "path": "/yourpath", # 路径 |