/
How to find the necessary parameters for Google reCaptcha
How to find the necessary parameters for Google reCaptcha
每个网站都不一样,如果以下方式都不能解决问题,烦请您自己多研究研究,您可以的。
第一种:通过浏览器控制台Network发送的请求获取参数
打开包含的网页,按F12->Network,
1、搜索关键词anchor
websiteKey
:可以在URL中找到,例如以下链接中k值为6LfW6wATAAAAAHLqO2pb8bDBahxlMxNdo9g947u9
https://www.google.com/recaptcha/api2/anchor?ar=1&k=6LfW6wATAAAAAHLqO2pb8bDBahxlMxNdo9g947u9&co=aHR0cHM6Ly9yZWNhcHRjaGEtZGVtby5hcHBzcG90LmNvbTo0NDM.&hl=en&v=qljbK_DTcvY1PzbR7IG69z1r&size=normal&cb=3gteobhlohbk
websiteURL
:这个URL请求中的referer值:一般就是目标网站的域名
referer: https://recaptcha-demo.appspot.com/
2、获取 pageAction 值
reCaptcha v3
需要action值,而且必须正确,通过网页源代码中搜索关键词 grecaptcha
pageAction值
:其中action: xxxxx 就是我们要的值,例如:
grecaptcha.ready(function() {
grecaptcha.execute('6LdpS-gUAAAAAL3Qr2yP7rkrQjkKBVvEY_48JS5l',
{action: 'login'}).then(function(token) {
});
});
如果网页中搜索不到,则可能是js被混肴、加密了,需要尝试其他方式
第三种:通过自动识别函数获取参数
打开出现验证码的网页,按F12键,进入console,
输入自定义函数findRecaptchaClients()
执行
不会操作的,下面有张图
function findRecaptchaClients() {
// eslint-disable-next-line camelcase
if (typeof (___grecaptcha_cfg) !== 'undefined') {
// eslint-disable-next-line camelcase, no-undef
return Object.entries(___grecaptcha_cfg.clients).map(([cid, client]) => {
const data = { id: cid, version: cid >= 10000 ? 'V3' : 'V2' };
const objects = Object.entries(client).filter(([_, value]) => value && typeof value === 'object');
objects.forEach(([toplevelKey, toplevel]) => {
const found = Object.entries(toplevel).find(([_, value]) => (
value && typeof value === 'object' && 'sitekey' in value && 'size' in value
));
if (typeof toplevel === 'object' && toplevel instanceof HTMLElement && toplevel['tagName'] === 'DIV'){
data.pageurl = toplevel.baseURI;
}
if (found) {
const [sublevelKey, sublevel] = found;
data.sitekey = sublevel.sitekey;
const callbackKey = data.version === 'V2' ? 'callback' : 'promise-callback';
const callback = sublevel[callbackKey];
if (!callback) {
data.callback = null;
data.function = null;
} else {
data.function = callback;
const keys = [cid, toplevelKey, sublevelKey, callbackKey].map((key) => `['${key}']`).join('');
data.callback = `___grecaptcha_cfg.clients${keys}`;
}
}
});
return data;
});
}
return [];
}
findRecaptchaClients()
然后在consolse执行这个函数findRecaptchaClients()
即可找到出对应的信息
[
{
"id": "0",
"version": "V2",
"sitekey": "6Le-wvkSAAAAAPBMRTvw0Q4Muexq9bi0DJwx_mJ-",
"function": "onSuccess",
"callback": "___grecaptcha_cfg.clients['0']['l']['l']['callback']",
"pageurl": "https://www.google.com/recaptcha/api2/demo"
}
]
如下图
, multiple selections available,
Related content
How to pass Google reCaptcha using the API
How to pass Google reCaptcha using the API
Read with this
reCaptcha v2/v3 K1 系列已定制指纹列表
reCaptcha v2/v3 K1 系列已定制指纹列表
More like this
ReCaptchaV2Classification: reCaptcha V2 图像识别
ReCaptchaV2Classification: reCaptcha V2 图像识别
More like this
RecaptchaV3TaskProxyless: reCaptcha V3 协议接口
RecaptchaV3TaskProxyless: reCaptcha V3 协议接口
More like this
RecaptchaV2EnterpriseTaskProxyless: 企业版 reCaptcha V2
RecaptchaV2EnterpriseTaskProxyless: 企业版 reCaptcha V2
More like this
RecaptchaV2EnterpriseTaskProxyless: enterprise version of reCaptcha V2
RecaptchaV2EnterpriseTaskProxyless: enterprise version of reCaptcha V2
More like this