Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

代码里 proxyIP 是做什么用的? 原理怎样的? 列的那几个域名安全么? ****.eu.org', '****.cyou 这几个 . #153

Open
ac2629 opened this issue Apr 23, 2024 · 4 comments

Comments

@ac2629
Copy link

ac2629 commented Apr 23, 2024

const proxyIPs = ['cdn.xn--b6gac.eu.org', 'cdn-all.xn--b6gac.eu.org', 'workers.cloudflare.cyou'];

// if you want to use ipv6 or single proxyIP, please add comment at this line and remove comment at the next line
let proxyIP = proxyIPs[Math.floor(Math.random() * proxyIPs.length)];

@deathbat6661
Copy link

deathbat6661 commented Apr 24, 2024

here is the right way

const proxyIPs = ['cdn.xn--b6gac.eu.org', 'cdn-all.xn--b6gac.eu.org', 'workers.cloudflare.cyou'];

// if you want to use ipv6 or single proxyIP, please add comment at this line and remove comment at the next line
// let proxyIP = proxyIPs[Math.floor(Math.random() * proxyIPs.length)];
// use single proxyIP instead of random
let proxyIP = 'cdn.xn--b6gac.eu.org';

@ac2629
Copy link
Author

ac2629 commented Apr 24, 2024

here is the right way

const proxyIPs = ['cdn.xn--b6gac.eu.org', 'cdn-all.xn--b6gac.eu.org', 'workers.cloudflare.cyou'];

// if you want to use ipv6 or single proxyIP, please add comment at this line and remove comment at the next line
// let proxyIP = proxyIPs[Math.floor(Math.random() * proxyIPs.length)];
// use single proxyIP instead of random
let proxyIP = 'cdn.xn--b6gac.eu.org';

问的是这几个地址是否安全(有安全风险), 为什么要用这个奇怪域名(可疑)? 为什么需要用proxyIP, 它什么作用?
The question is whether these addresses are secure (with security risks), and why use this strange domain name (suspicious)? Why do we need to use proxyIP and what is its purpose?

@1208nn
Copy link

1208nn commented Apr 26, 2024

here is the right way

const proxyIPs = ['cdn.xn--b6gac.eu.org', 'cdn-all.xn--b6gac.eu.org', 'workers.cloudflare.cyou'];

// if you want to use ipv6 or single proxyIP, please add comment at this line and remove comment at the next line
// let proxyIP = proxyIPs[Math.floor(Math.random() * proxyIPs.length)];
// use single proxyIP instead of random
let proxyIP = 'cdn.xn--b6gac.eu.org';

问的是这几个地址是否安全(有安全风险), 为什么要用这个奇怪域名(可疑)? 为什么需要用proxyIP, 它什么作用? The question is whether these addresses are secure (with security risks), and why use this strange domain name (suspicious)? Why do we need to use proxyIP and what is its purpose?

这几个域名将其A记录设为CloudFlare优选IP地址,通过DNS查询的方法获取优选IP,而不与其通信

@lsadls
Copy link

lsadls commented May 1, 2024

不安全, 除非你自建 zizifn/edgetunnel#162 #123
proxyIP 是一些大厂的ip会转发所有 cf 流量
以前因为worker不让访问cloudflare系的网站,所以客户端->worker->proxyIP->cf网站
现在又加入让 proxyIP 当优选IP(v2ray with bestip), 等于客户端->proxyIP->worker->网站
我刚查了, cdn.xn--b6gac.eu.org 属于 ALIBABA-CN-NET, 也就是你的流量都发给阿里巴巴一遍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants