tor-browser

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

xhr_original.js (191B)


      1 "use strict";
      2 
      3 function reallydoxhr() {
      4  const z = new XMLHttpRequest();
      5  z.open("get", "test-image.png", true);
      6  z.send();
      7 }
      8 
      9 function doxhr() {
     10  reallydoxhr();
     11 }
     12 
     13 window.doxhr = doxhr;