2024 ??? ???????? ?? ??? ???????????? ?? ???? ?? ????

Rajinder Singh
Deep Learning Researcher
10-Sep-2024

?? ????? ???, ?????? ?? ???? ???? ??? ?? ??? ?????? ???? ??- ????? ?? ?? ?????? ??????????? ???? ?????? ??????? ???? ???? ??? ???? ??? ???? ??? ????? ?? ???????? ???? ?? ????? ???? ??? ??????????? ?????? ?? ????? ??? ??? ?? ???? ??, ?? ?? ????? ????? ??? ???? ??? ?? ??? ???? ??? ???? ????? 2024 ???, ??? ??? ??? ??, ?? ??? ?? ????? ??? ??? ???? ?? ???? ??? ????? ??? ?? ??? ???????? ?? ??? ??????????? ?? ???? ???? ??? ???, ?? ???, ?? ????? ?? ????? ?? ??? ???? ?? ???????, ??????????? ?????????? ?? ???? ??? ?? ??? ???????
??????????? ???? ?? ?? ?? ????? ????? ???? ??
??????????? ????????? ?? ?? ???? ?? ????? ??? ????? ?? ????, ??? ?? ???? ?? ??? ????? ?? ?? ????? ????? ???? ??????????? ?? ????? ??????? ???? ?? ????? ????? ????? ??????? ?????????????? ????????, ??????? ????? ?? ??????? ???? ????? ?? ???? ?? ??? ???? ???? ?? ?? ???????? ??????? ?? ??? ????? ??-???? ?? ??? ???????? ????????? ???? ????? ?? ??????? ?? ?????? ?? ??? ??-?? ?? ?? ?????? ???? ???? ??, ????? ?? CAPTCHA ?? ??? ???, ?? ???????? ???? ?? ??? ?? ?? ?? ????? ??? ?? ??? ?????
????? ???? ???? ??: ??????????? ?? ???? ?????? CAPTCHA ????? ?? ???? ??? ???? ??? 2024 ???, ???????? ??????????? ?????????? ???? ??? ????? ???? ?? ???, ?? ?? ???? ???????? ?? ??????? ?????? ??????? ?? ???? ??????? ?? ????? ?? ?? ???? ????? ????? ??? ??? ?? ?? ???? ????? ??, ????? ??? ????????? ?? ???, ?? ??? ?? ????? ?? ? ???? ????

?????? ???????? ?????? ?? ???? ??? ?? ?? ???? ??? ?????? ?? ??? ??? ????
Capsolver AI-??????? ??? ??? ??????? ????? ?? ??? ??????? ???????? ?????? ?????? ?? ??? ?????!
???? ???? ??? ?? ????? ?????? ???????? ?? ??? ???? ????; CapSolver: WEBS? ??? ????? ???? ?? ???, ???? ???????? ??????? ?? ??? ???????? 5% ???? ??????, ?????????
2024 ??? ???????? ?? ????? ????? ?? ????? ??
?? ??? ??? ?????, "???????? ?????? ????? ??' ???????? ?? ??????? ?? ????? ? ??????" ?? ?? ?? ???? ???? ??? ???? ????? ?? ?? ?? ???????? ??? ??????? ?? ??? ?? ???????? ?? ??? ??? ???? ??, ?? ??? ???????? ?????? ???? ?? ?? ??? ??????????? ?????? ???????? ?????? ????????? ???? ?? ??????????? ???? ?????? ????????? ?? ????? ????? ??? ?? ??????? ????? ????
???????? ?? ???????? ???????? ?? ?????? ???? ??, ????? ???? ?? ?? ?? ??????? ???????????? ?? ???? ??????? ??? ?? ?????? ?? ???? ???? ?? ???????? ??????? ?? ???? ???????? ?? ?????? ???? ??, ????? ???????? ?????????? ????????? ?? ??? ???? ???? ?? ???? ??- ??? ??? ?? ??????????? ?? ????? ??????? ?????? ?? ?????? ?? ????? ?????????? ???
???? ????: ???????? ??? ????
???? ????, ??? ???? ???? ?? ???? ???? ??, ?? ???? ???????? ?? ??????? ???? ????? ??? ??? ???? ???? ??:
bash
npm install playwright
?? ??? ??????? ?? ???? ?? ???, ?? ???? ??? ??????? ?? ???????? ???? ???? ???? ?? ??? ????? ???? ????? ??? ???? ?????? ??????????? ????????? ?? ??? ???? ??, ????? ???? ?? ?????????? CAPTCHA, ?? ???? ??? ???????? ??? ????? ?????? ?? CapSolver ?? ??? ???????, ?? ?? ?????-???? API ?? ???? ?????????? ???? CAPTCHA ?? ?? ???? ?? ??? ??????? ???? ??? ??, ?? ??? ??????????? ?????? ???????? ?????? ?? ??????? ?? ??? ???????? ?? ??? ?????? ?????
??? 1: ???? ?? ????? ????
?????????? CAPTCHA ?? ??? ???? ????? ???? ???? ???? ???? ?????? ?? siteKey
??????? ???? ??? ?? ????? ?????????? ?? ??? CAPTCHA ?? ??????? ???? ?? ???? ?? ????? ???? ???? ?? ??? ?????? ???
?? ?????? ?? ????? ?? ???????? ???? siteKey
????? ???? ??? ??, ???? ?? ???? ????? ?? ???, ?? CapSolver ????????? ?? ????? ?? ???? ???? ?? ???????? ??? ?? ????? ?? CAPTCHA ???????? ?? ??? ????? ??? ??? ???? ??? ?? ????, ?? ???? ??? ?? ??????? ???????????? ?? ???, ????? ????? ????? ?????:
??????????? ?????????? ???????? ?? ????? ?????
?? ??? ???? ??? siteKey
?? ???? ?? ???, ?? ???? ??? ?? ???? ?? ??? ????? ????
??? 2: CAPTCHA ?? ?? ???? ?? ??? CapSolver API ?? ??? ????
??? ??? siteKey
?? ???, ?????????? ?? API ?? ????? ???? ?????????? CAPTCHA ?? ?? ???? ?? ?? ????? ???? ??????? ???? ?? ??? ? ??? ??? ?? ???? ???? ?????? ?? ??????? ???? ?? ????? ??? ?????????? ?? ??????? ??????? ?? ??? ??? ????? ?? ?????? ?????
???? axios ?? Playwright ?? ????? ???? ?????????? ?? ??? ?????? ???? ?? ??? ?? ????? ??? ??????? ???? ??? ??:
javascript
const axios = require('axios');
const playwright = require("playwright");
const api_key = "YOUR_API_KEY"; // Your CapSolver API Key
const site_key = "0xxxxxx"; // The siteKey you retrieved
const site_url = "https://xxx.xxx.xxx/xxx"; // The target website URL
const proxy = "http://xxx:[email protected]:x"; // Optional: Use your proxy if required
async function solveCaptcha() {
const payload = {
clientKey: api_key,
task: {
type: 'AntiTurnstileTaskProxyLess',
websiteKey: site_key,
websiteURL: site_url,
metadata: {
action: '', // Optional, specify if needed
type: "turnstile"
}
}
};
try {
const res = await axios.post("https://api.capsolver.com/createTask", payload);
const task_id = res.data.taskId;
if (!task_id) {
console.log("Failed to create task:", res.data);
return;
}
console.log("Task created, waiting for token...");
while (true) {
await new Promise(resolve => setTimeout(resolve, 1000)); // Wait for 1 second before checking again
const getResultPayload = {clientKey: api_key, taskId: task_id};
const resp = await axios.post("https://api.capsolver.com/getTaskResult", getResultPayload);
if (resp.data.status === "ready") {
console.log("CAPTCHA solved, token received:", resp.data.solution.token);
return resp.data.solution.token;
}
if (resp.data.status === "failed" || resp.data.errorId) {
console.log("CAPTCHA solving failed! Response:", resp.data);
return;
}
}
} catch (error) {
console.error("Error solving CAPTCHA:", error);
}
}
?? ??? ???, ?? ?????????? ?? API ?? ?? POST ?????? ????? ?? ????? ????? ???, ?????? siteKey
?? ?? ??????? ?? URL ???? ?? ????? ?? ????? ??????? ???? ????? ???? ?? ??? ????? ?? ???? ?? ???, ?? ?? ?? ?????? ?? ?????? ???? ???? ???? ??? ?? ?? ?? ?????????? ?? ?????? ???? ???? ???? ????? ?? ???? ??? ?? ????? ????? ?? ??????????? ?? ?? ????? ???? ?? ??? ?????? ?? ?? ????? ????
??? 3: CAPTCHA ???? ?? ???????? ?? ??? ??????? ????
?? ?? ????? ??? CAPTCHA ???? ??, ?? ???? ??? ???????? ?? ????? ???? ???? ??? ???? ?? ??? ??? ??????? ???? ?? ???????? ??? ?? ???? ??????????? ?? ??????? ?? ??????? ??? ???? ???? ?? ??????? ???? ?? ?????? ????? ???? ????? ??? ?? ?? ?? ???? ???? ??:
javascript
const wait = (ms) => new Promise(resolve => setTimeout(resolve, ms));
async function accessSiteWithToken(){
let clearanceCookie;
// Solve CAPTCHA and get the token
await solveCaptcha().then(token => {
clearanceCookie = token;
});
const browser = await playwright.chromium.launch();
const context = await browser.newContext();
const page = await context.newPage();
await wait(500);
// Inject the token as a cookie
await page.setCookie({
name: "cf_clearance",
value: clearanceCookie,
url: site_url, // Ensure this matches the target URL
domain: "xx.xx.xx" // Adjust domain as per the actual site
});
await wait(500);
// Navigate to the website after setting the cookie
await page.goto(site_url);
// You can now scrape the content or interact with the page freely
console.log("Successfully accessed the website!");
await browser.close();
}
// Run the script to access the site
accessSiteWithToken().then();
????? ?????
??????????? ?? ????????? 2024 ??? ????????? ?? ?????? ?? ??????? ?? ???????? ???? ???? ??? ???? ??, ????? ???????? ?? ?????????? ???? ??????? ?? ???, ?????? ????? ?? ???? ??? ??? ???????? ?? ???????? ?????????? ????????? ?? ?????? ???? ?? ?????? ?????????? ?? CAPTCHA-?????? API ?? ??? ??????? ??? ?? ?? ?????? ?? ???? ???? ??????? ?? ??????? ???? ?? ?? ????????? ????? ?????? ???? ???
????, ?? ????? ?? ????? ????? ?? ?? ????????? ???? ?? ?? ?????? ?? ????? ?????????? ??????? ?? ???? ?? ???? ??? ??? ???? ??? ????????? ?? ???????? ????? ?? ???? ??? ???? ??????? ???, ????? ??? ????? ?? ???? ???? ???? ???? ????????? ?????
??? ??????? ?? ?????? ?????? ?? ??? ?????? ???, ?? ?? ???? ?? ??? ???? ?? ???? ??? ??-?? ???????? ?? ?????????? ?? ???, ?? ??? ??? ???? ?? ??? ???????? ????
??????? ????????: ?? ????? ?? ?????? ?? ?? ??????? ???? ????????? ?????????? ?? ??? ??? CapSolver ??? ???? ??????? ?? ???????? ?? ???? ???? ?? ??? ????????? ??? CapSolver ??????? ?? ????? ????, ???????? ?? ???????? ???? ???? ?????????? ?? ??? ???? ???? ?????? ?? ?? ???? ???? ?? ?????? ????? ?????? ?????? ?????????? ????? ?? ????? ????? ?? ???-??? ????????? ???? ???????? ?? ????? ?????? ????????? ?? ?? ???? ??? 100% ??????? ????????? ???? ???? ?? ???? ?????? ?? ????????? ????? ?? ??????????? ???? ???? ???? ??????? ?? ???, ????? ????? ???? ?? ?????? ?? ???????? ???? ?? ?????
????

???? ?? reCAPTCHA Enterprise ??????? ?? ?? ????, v2, v2 ??????, v3, v3 ?????????? 0.9 ?????
?????? ???? ???? ?? reCaptcha ??????? ?? CapSolver ?? ???: ?? ???? reCaptcha ?? ??????? ??? ?? ?? ???? ?? ??? ???-??-??? ?????????? ?????? ???? ??, ?? ??? ???? ?????? ????????? ???? ???

Rajinder Singh
11-Oct-2025

???? ?? ???? ??? ??????
?? ????? ????? ??? ??? ?????? ?? ?? ???? ?? ???? ??? ?? ??????? ???? ?????? ???? ??, ?? ?? ??? ?? ????? ????? ????????? ?? ???????? ???? ?? ??? ???? ???? ??? ?? ??? ?????? ???? ??, ???? ???????? ?? ???? ???? ??, ??? ????????? ?? API ?? ????? ?? ???-??-??? ???? ?? ??????? ????? ???? ??? ???? ??? ?? ????????? ??? ????? ?????? ?? ????????????? ?? ?????? ????? ???? ????? ??? ??? ?????? ?? ???? ?? ??? ????????? ?? ????? ?? ??????????? ?? ????? ?? ?? ??? ?? ??? ?????? ???? ??, ?? ?????? ?????? ???? ??????? ?? ??? ?????? ???????? ?????? ?? ???? ???

Rajinder Singh
11-Oct-2025

??????? ??2 ?????? ???? ?? ????
?? ????? reCaptcha v2 ?????? ?? ?? ???? ?? ???? ??? ?? ???????? ???? ??? ?? ?????? ??????? ?? Capsolver ?? ??? ???? ?? ???? ???????? ?? ?????? ???? ?? ?? ???-??-??? ???? ?????? ???? ??? ????? ?? ????? ?? ?????? ???? ??? ???? ????? ??? ??, ????? ???? ??????? ?? reCaptcha v2 ?????? ?? ???? ???? ?? ?? ???? ?? ????????? ??? ?? ???? ?? ???? ??? ?? ?? ???????? ?? ??????? ???? ??, ?? ????????? ???? ?? ?? ???? ?? ??? ???? ???? ????????? ?? ???? ??? ??????? ???? ???

Rajinder Singh
11-Oct-2025

???????? v3 ?? ????
"reCaptcha V3 ?? CapSolver ?? ??? ?? ???? ?????: ????? ????? ??????, ??? API ??????, ?? ??????? ?? ??????? ?? ??? ??????? ??????"

Rajinder Singh
10-Oct-2025

reCaptcha ?? ?????? ??????? ?? ??? ???? ?????
reCAPTCHA ?? ?????? ?? ??? ????? ??? ?? JavaScript ??????? ?? ????? ???? ????? ?? ?? reCAPTCHA ?? ??????????? ?? ???? ?? ??? ????????? ???? ??? ???? ?? ????? ?? ????????? ??????????? ???? ??? ?? ?? ?? ??? ???? ???

Rajinder Singh
23-Sep-2025

Cloudflare Challenge ???? ?? ????
CapSolver ?? Cloudflare ????????? ?? ????? ?? ??? ????? ?? ???? Cloudflare ?? ??????? ?? ?? ???? ?? ??? ?????? ?????? ?? ????? ???? ??, ?????? ??????? ????? ?? ??????? ?? ??? ??? ???????? ????????? ???? ??? ???

Rajinder Singh
23-Sep-2025