Andrews54757 / Anti-Anti-Debug

Be able to use developer tools again on user-hostile websites
https://chrome.google.com/webstore/detail/anti-anti-debug/mnmnmcmdkigakhlfkcdimghndnmomfeo
The Unlicense
125 stars 5 forks source link

Unable to unblock the debugger on a site #9

Open ale5000-git opened 7 months ago

ale5000-git commented 7 months ago

Hi, it is unable to unblock the debugger on a site (on both Firefox and Chrome). Note: the site is NSFW

URL: isekaitube.com/cosplay/alice-holic-hayase-yuuka-blue-archive-cosplay/

srushti335 commented 6 months ago

works fine for me. have you checked again?

ale5000-git commented 6 months ago

Yes, it get paused in the debugger. I'm on latest Chrome currently. Is there a way to debug?

ale5000-git commented 6 months ago

It lock at this:

            function check() {
                console.clear();
                before = new Date().getTime();
                debugger ;after = new Date().getTime();
                if (after - before > minimalUserResponseInMiliseconds) {
                    document.write(" Dont open Developer Tools. ");
                    self.location.replace(window.location.protocol + window.location.href.substring(window.location.protocol.length));
                } else {
                    before = null;
                    after = null;
                    delete before;
                    delete after;
                }
                setTimeout(check, 100);
            }