forked from ikechan8370/sydney-ws-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
184 lines (180 loc) · 6.95 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
const express = require('express');
const { createProxyMiddleware } = require('http-proxy-middleware');
const {HttpsProxyAgent} = require('https-proxy-agent');
const axios = require("axios");
// HTTP Proxy
const httpProxyUrl = 'http://127.0.0.1:7890';
const socks5Agent = new HttpsProxyAgent(httpProxyUrl);
// Create Express app
const app = express();
const socketProxy = createProxyMiddleware({
target: 'https://sydney.bing.com',
pathFilter: '/sydney/ChatHub',
ws: true,
changeOrigin: true,
// agent: socks5Agent,
headers: {
origin: 'https://www.bing.com',
Referer: 'https://www.bing.com/search?q=Bing+AI&showconv=1&FORM=hpcodx',
'x-forwarded-for': generateRandomIP(),
}
});
const createConversationProxy = createProxyMiddleware({
target: 'https://edgeservices.bing.com',
pathRewrite: {
'^/': '/edgesvc/', // rewrite path
},
changeOrigin: true,
// pathFilter: '/turing/conversation/create',
// agent: socks5Agent,
headers: {
origin: 'https://www.bing.com',
Referer: 'https://www.bing.com/search?q=Bing+AI&showconv=1&FORM=hpcodx',
'x-forwarded-for': generateRandomIP(),
}
})
const imageProxy = createProxyMiddleware({
target: 'https://www.bing.com',
changeOrigin: true,
// pathFilter: '/turing/conversation/create',
// agent: socks5Agent,
headers: {
origin: 'https://www.bing.com',
Referer: 'https://www.bing.com/search?q=Bing+AI&showconv=1&FORM=hpcodx',
'x-forwarded-for': generateRandomIP(),
}
})
// Proxy WebSocket requests
app.use('/sydney/ChatHub', socketProxy);
app.use('/turing/conversation/create', createConversationProxy)
// app.use('/images/create', imageProxy)
app.use('/edgesvc/turing/captcha/create', async (req, res) => {
let result = await axios.get("https://edgeservices.bing.com/edgesvc/turing/captcha/create", {
responseType: 'arraybuffer',
headers: {
Cookie: req.headers.cookie,
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.82',
Accept: 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7',
},
// httpsAgent: socks5Agent,
})
const headers = result.headers;
Object.keys(headers).forEach((headerName) => {
res.set(headerName, headers[headerName]);
});
res.send(result.data);
})
app.use('/edgesvc/turing/captcha/verify', async (req, res) => {
let result = await axios.get("https://edgeservices.bing.com/edgesvc/turing/captcha/verify", {
params: req.query,
headers: {
Cookie: req.headers.cookie,
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.82',
Accept: 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7',
},
// httpsAgent: socks5Agent,
})
const headers = result.headers;
Object.keys(headers).forEach((headerName) => {
res.set(headerName, headers[headerName]);
});
res.send(result.data);
})
app.post('/images/create', async (req, res) => {
// console.log("images")
let cookie = req.headers.cookie
console.log(cookie)
if (!cookie) {
res.status(401)
res.send("failed: " + 'no token')
return
}
try {
let u = cookie.split(";").find(c => c.includes('_U')).replace('_U=', '').replace(';', '')
console.log(u)
const myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");
let userInfo = await fetch('http://bingcaptcha.ikechan8370.com/user', {
method: 'POST',
body: JSON.stringify({
_U: u
}),
headers: myHeaders
})
let user = await userInfo.json()
if (!user.success) {
res.status(401)
res.send("failed: " + user.error)
return
} else {
console.log("user: " + user.user)
}
} catch (err) {
console.warn('query user info by token failed')
console.warn(err)
}
axios.request({
url: "https://www.bing.com/images/create",
data: req.body,
method: 'POST',
params: req.query,
headers: {
accept: 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7',
'accept-language': 'en-US,en;q=0.9',
'cache-control': 'max-age=0',
'content-type': 'application/x-www-form-urlencoded',
referrer: 'https://www.bing.com/images/create/',
origin: 'https://www.bing.com',
'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36 Edg/113.0.1774.50',
Cookie: cookie,
Dnt: '1',
'sec-ch-ua': '"Microsoft Edge";v="113", "Chromium";v="113", "Not-A.Brand";v="24"',
'sec-ch-ua-arch': '"x86"',
'sec-ch-ua-bitness': '"64"',
'sec-ch-ua-full-version': '"113.0.5672.126"',
'sec-ch-ua-full-version-list': '"Google Chrome";v="113.0.5672.126", "Chromium";v="113.0.5672.126", "Not-A.Brand";v="24.0.0.0"',
'sec-ch-ua-mobile': '?0',
'sec-ch-ua-model': '',
'sec-ch-ua-platform': '"macOS"',
'sec-ch-ua-platform-version': '"13.1.0"',
'sec-fetch-dest': 'document',
'sec-fetch-mode': 'navigate',
'sec-fetch-site': 'same-origin',
'sec-fetch-user': '?1',
'Referrer-Policy': 'origin-when-cross-origin',
'x-edge-shopping-flag': '1'
},
// httpsAgent: socks5Agent,
maxRedirects: 0,
validateStatus: (status) => {
return status === 302 || (status >= 200 && status < 300); // 自定义响应状态码的验证函数
},
}).then(result => {
if (result.status === 302) {
console.log("success")
const headers = result.headers;
Object.keys(headers).forEach((headerName) => {
res.set(headerName, headers[headerName]);
});
res.redirect(headers.get('location'))
} else {
console.log("failed: " + result.status)
res.send("failed: " + result.status)
}
}).catch(err => {
console.warn(err)
res.send("failed")
})
})
// Start the server
const port = 3000; // Replace with your desired port number
app.listen(port, () => {
console.log(`Server is running on port ${port}`);
});
function generateRandomIP () {
const baseIP = '20.136.128'
const subnetSize = 254 // 2^8 - 2
const randomIPSuffix = Math.floor(Math.random() * subnetSize) + 1
let ip = baseIP + randomIPSuffix
return ip
}