The simple way for bypass this error in developing is send header to browser
Put the header before send data to browser.
In php
you can send this header for bypass this error ,send header reference:
header('X-XSS-Protection:0');
In the ASP.net
you can send this header and send header reference:
HttpContext.Response.AddHeader("X-XSS-Protection","0");
or
HttpContext.Current.Response.AddHeader("X-XSS-Protection","0");
In the nodejs
send header, send header reference :
res.writeHead(200, {'X-XSS-Protection':0 });
// or express js
res.set('X-XSS-Protection', 0);
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…