Как правильно настроить решение Рекапчи без встроенного модуля в басе.
Здесь нужно сначала нажать на квадратик и отправлять? или какая тут будет последовательность решения?
@Fox Yes, that's what I'm talking about. Please try this.
I added the code I got from Customserver to my website. I created a script to collect fingerprints. I collected fingerprints. (fingerprints were produced with fingerprint switcher) I put the necessary data on the request canvas.
But as I posted earlier in the screenshot, browserleaks/canvas is 100%.
I do the same thing, this time the customserver is false. The result is successful, so browserleaks/canvas 99.56
Куки в басе имеют формат {"cookies": JSON} string. Можно через экшен "Выполнить код" преобразовать.
var json_cookies = JSON.parse([[COOKIES]]);
[[COOKIES]] = JSON.stringify({"cookies": json_cookies})
ну или можно проверять сразу в формате баса или нет.
var json_cookies = JSON.parse([[COOKIES]]);
try {
json_cookies["cookies"]
} catch(_) {
[[COOKIES]] = JSON.stringify({"cookies": json_cookies});
}