发福利了,免费开源一个 http 代理服务

105 天前
 svon

代理地址: https://proxy.iprouter.top/

支持常见的 GET/POST/PUT/PATCH/DELETE 默认处理 CORS 自动隐藏客户端真实 IP

比如要代理 V2EX 完整的请求地址为 https://proxy.iprouter.top/https://www.v2ex.com/

每天有限额,单个 IP 2000 次请求

2727 次点击
所在节点    推广
16 条回复
vueli
105 天前
开源地址在哪
hongfs
105 天前
@vueli https://github.com/Snawoot/dumbproxy

可以试下这个,支持 auth
chocolatesir
105 天前
开源新定义。
actar
105 天前
InDom
105 天前
代理网站 ❌
用来盗链 ✅

https://proxy.iprouter.top/
InDom
105 天前
这个锅得 V2EX 背...
Andim
105 天前
@actar 欧洲人之前开发了一个工具跟这个类似 中间服务器劫持 所有传输的密码都能捕获
collen
105 天前
好好好,还有什么福利吗
imzcg2
105 天前
xingchenxf
105 天前
开源代码在哪?
svon
105 天前
@xingchenxf
@vueli

const main = async function (request: Request): Promise<Response> {
// 获取客户端传入的数据
// 需要跟进请求类型与 ContentType 来做处理
const body = await request.arrayBuffer();

// 代理请求
const res = await fetch(request.url, {
body: body,
method: request.method,
// 如果要隐藏客户端 IP, 需重新构造 Headers
headers: new Headers(request.headers),
});

const status = res.status;
const statusText = res.statusText;
const value = await res.arrayBuffer();

return new Response(value, {
status,
statusText,
headers: res.headers,
});
}
wusheng0
105 天前
重新定义 开源
重新定义 福利
nodejsexpress
105 天前
@svon 这个是 node.js 代码? 怎么没头没尾的?
program9527
105 天前
跟我的 https://pd.zwc365.com 差不多啊😯
fuzzsh
105 天前
@nodejsexpress cloud flare workers
cybort
104 天前
你这属于打广告

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/1011394

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX