tor-browser

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

1789908.html (647B)


      1 <script>
      2 window.addEventListener('load', () => {
      3  const sdp = `v=0
      4 o=mozilla...THIS_IS_SDPARTA-99.0 4978061689314146455 0 IN IP4 0.0.0.0
      5 s=-
      6 t=0 0
      7 a=fingerprint:sha-256 1D:E5:0C:97:18:43:38:3D:FF:7D:6A:BF:E3:AC:CA:70:AB:53:5A:35:95:92:4F:98:86:61:CA:5D:D5:9D:5E:41
      8 a=group:BUNDLE 0
      9 a=ice-options:trickle
     10 a=msid-semantic:WMS *
     11 m=video 9 UDP/TLS/RTP/SAVPF 120
     12 c=IN IP4 0.0.0.0
     13 a=fmtp:120 max-fs=12288;max-fr=60
     14 a=ice-pwd:c3a5e05023a8c38f671aef91ed1802d6
     15 a=ice-ufrag:91e4526d
     16 a=setup:actpass
     17 
     18 a=rtpmap:120 VP8/90000
     19 `;
     20 
     21  let a = new RTCPeerConnection()
     22  a.setRemoteDescription({sdp, type: "offer"});
     23  setTimeout("self.close()", 200)
     24 })
     25 </script>