tor-browser

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

1770075.html (229B)


      1 <script>
      2 window.addEventListener('load', () => {
      3  let a = new RTCPeerConnection({}, {})
      4  a.createOffer({'offerToReceiveVideo': true})
      5  let b = new WeakRef(a.getTransceivers()[0])
      6  setTimeout("self.close()", 200)
      7 })
      8 </script>