How to temporarily disable XSS protection in modern browsers for testing?

后端 未结 7 435
一向
一向 2021-01-31 08:35

Is it possible to temporarily disable the XSS protection found in modern browsers for testing purposes?

I\'m trying to explain to a co-worker what happens when one sends

7条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-31 08:59

    In Chrome there is a flag with which you can start the browser. If you start the browser with this flag, you can do what you want:

    --disable-web-security 
    

提交回复
热议问题