tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

bug678234.js (132B)


      1 a = {}
      2 function f(o) {
      3    for (x in o) {
      4        print
      5    }
      6 }
      7 for (var i = 0; i < 3; i++) {
      8    new f(a)
      9    a.__proto__ = null
     10 }