2017-03-31

How bypass ERR_BLOCKED_BY_XSS_AUDITOR errors on Chrome

3/31/2017 11:17:00 AM Posted by Hoàng Dũng No comments
Chrome detected unusual code on this page and blocked it to protect your personal information (for example, passwords, phone numbers, and credit cards).
Try visiting the site's homepage.
ERR_BLOCKED_BY_XSS_AUDITOR

There are at least two ways to get around this:

  1. The first is to use a different browser. Internet Explorer, MS Edge or FireFox. None of these currently block the embed code. But I don't want to use a different browser, I like Google Chrome. :D
  2. The second way to get around this problem is to disable XSS checking in Google Chrome by adding a bit of code to the Chrome program address. To do this, find the Chrome icon on your computer. Then right click it, and from the drop-down list, choose 'properties'.
    On the properties page, find the target line and add this to the end of the line: -disable-xss-auditor
    When you add the above, the full target line will be: "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" -disable-xss-auditor
    Or if using the 64 bit version of Google Chrome: "C:\Program Files\Google\Chrome\Application\chrome.exe" -disable-xss-auditor
     

    After making the above change, click 'apply'. Then close any open version of the Chrome browser, and restart Chrome using the icon you just modified.
    From then on, Chrome will bypass the XSS-Auditor generated errors.