This commit is contained in:
Elysia 2023-08-15 18:36:54 +07:00
parent 75ad773ce9
commit fb79c17872

View File

@ -34,6 +34,18 @@ const proxyParser = proxy => {
return proxyConfig; return proxyConfig;
}; };
function findStringWithRegex(obj, regex) {
const matchingKeys = [];
for (const key in obj) {
if (obj[key] && typeof obj[key] === 'object') {
matchingKeys.push(...findStringWithRegex(obj[key], regex));
} else if (typeof obj[key] === 'string' && regex.test(obj[key])) {
matchingKeys.push(key);
}
}
return matchingKeys;
}
module.exports = class CaptchaSolver { module.exports = class CaptchaSolver {
constructor(service, key, defaultCaptchaSolver, proxyString = '') { constructor(service, key, defaultCaptchaSolver, proxyString = '') {
this.service = 'custom'; this.service = 'custom';
@ -58,9 +70,13 @@ module.exports = class CaptchaSolver {
this.solve = (data, userAgent) => this.solve = (data, userAgent) =>
new Promise((resolve, reject) => { new Promise((resolve, reject) => {
const siteKey = data.captcha_sitekey; const siteKey = data.captcha_sitekey;
let postD = {}; let postD = {
invisible: 1,
userAgent,
};
if (this.proxy !== null) { if (this.proxy !== null) {
postD = { postD = {
...postD,
proxytype: this.proxy.protocol?.toUpperCase(), proxytype: this.proxy.protocol?.toUpperCase(),
proxy: `${'auth' in this.proxy ? `${this.proxy.auth.username}:${this.proxy.auth.password}@` : ''}${ proxy: `${'auth' in this.proxy ? `${this.proxy.auth.username}:${this.proxy.auth.password}@` : ''}${
this.proxy.host this.proxy.host
@ -71,13 +87,14 @@ module.exports = class CaptchaSolver {
postD = { postD = {
...postD, ...postD,
data: data.captcha_rqdata, data: data.captcha_rqdata,
userAgent,
}; };
} }
this.solver this.solver
.hcaptcha(siteKey, 'https://discord.com/channels/@me', postD) .hcaptcha(siteKey, 'discord.com', postD)
.then(res => { .then(res => {
resolve(res.data); let result = findStringWithRegex(res, /^P\d_\w+/)[0];
if (!result) throw new Error('Invalid captcha response');
resolve(result);
}) })
.catch(reject); .catch(reject);
}); });