tor-browser

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

testBug676486.js (135B)


      1 var proxy = new Proxy(function() {
      2        return (function () { eval("foo") })();
      3    }, {});
      4 
      5 try {
      6    new proxy();
      7 } catch (e) {
      8 }