Jump to content
UBot Underground

Recommended Posts

Hi. I've been trying to find a website for a few days data callback function. Without success.. Is there anyone who can help? Of course I can pay for help .

budget $150 http://network.ubotstudio.com/freelance/project/find-data-callback-function-on-page/

skype https://join.skype.com/invite/cO8toSdFVIJ9 or pm

 

Link to post
Share on other sites

In browser paste this into JS console:

 

var cs = [];
var cb;
for (var id in ___grecaptcha_cfg.clients){
    cs.push(id);
}
cs.forEach(cid => {
    for (var p in ___grecaptcha_cfg.clients[cid]) {
        var path = "___grecaptcha_cfg.clients["+cid+"]."+p;
        var pp = eval(path);
        if (typeof pp === 'object') {
            for (var s in pp) {
                var subpath = "___grecaptcha_cfg.clients["+cid+"]."+p+"."+s;
                var sp = eval(subpath);
                if ( sp && typeof sp === 'object' && sp.hasOwnProperty('sitekey') && sp.hasOwnProperty('size') ){
                    console.log('Path: ' + subpath);
                    console.log('Sitekey: ' + eval(subpath+'.sitekey'));
                    if ( eval(subpath+'.callback') == null ) {
                        cb = '';
                        }
                    else {
                        cb = subpath+'.callback';
                    }
                }
            }
        }


    }
});

In Ubot use this in $eval function like so (code is slightly different for Ubot so use THIS one for Ubot):

set(#callback,$eval("var cs = [];
var cb;
for (var id in ___grecaptcha_cfg.clients)\{
    cs.push(id);
\}
cs.forEach(cid => \{
    for (var p in ___grecaptcha_cfg.clients[cid]) \{
        var path = \"___grecaptcha_cfg.clients[\"+cid+\"].\"+p;
        var pp = eval(path);
        if (typeof pp === \'object\') \{
            for (var s in pp) \{
                var subpath = \"___grecaptcha_cfg.clients[\"+cid+\"].\"+p+\".\"+s;
                var sp = eval(subpath);
                if ( sp && typeof sp === \'object\' && sp.hasOwnProperty(\'sitekey\') && sp.hasOwnProperty(\'size\') )\{
                    console.log(\'Path: \' + subpath);
                    console.log(\'Sitekey: \' + eval(subpath+\'.sitekey\'));
                    if ( eval(subpath+\'.callback\') == null ) \{
                        cb = \'\';
                        \}
                    else \{
                        cb = subpath+\'.callback\';
                    \}
                \}
            \}
        \}
 
    \}
\});
cb;"),"Global")

  • Like 1
Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...