clearnet.html 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>What can a zite find out? - Clearnet test</title>
  6. <base href="" target="_top" id="base">
  7. <script>base.href = document.location.href.replace("/media", "").replace("index.html", "").replace(/[&?]wrapper=False/, "").replace(/[&?]wrapper_nonce=[A-Za-z0-9]+/, "")</script>
  8. <style>
  9. #iframe_test {
  10. min-width: 40%;
  11. min-height: 215px;
  12. border: 3px solid red;
  13. border-radius: 5px;
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <iframe src="https://about-you.bandura.mk16.de/zeronet.php" id="iframe_test">
  19. Your browser does not allow loading iframes. On the one hand,
  20. this can be bad, since various zites might not work, on the other
  21. hand, this is good, because it excludes that a connection to the
  22. clearnet is established via an iframe.
  23. </iframe>
  24. <div>
  25. <b>How does the test work?</b><br>
  26. A connection to the clearnet is attempted using two different
  27. methods (iframe and loading JavaScript).<br>
  28. Should the iframe test work and be able to connect to the clearnet,
  29. a message will appear above this text.<br>
  30. If the JavaScript test works and is able to connect to the clearnet,
  31. a zeronet notification will be displayed.<br>
  32. Both messages contain your presumed IP address. I do not actively
  33. save the IP address<br>(it is always possible that an ISP or hoster
  34. records the traffic).<br>
  35. <b>How can i prevent it?</b><br>
  36. A solution suggestion would be that you use a separate browser to
  37. visit zites,<br>which does not allow connection outside 127.0.0.1
  38. or localhost.<br> For example, you could enable a proxy in Firefox
  39. and specify the address of<br>a non-existent proxy (e.g. host:
  40. 127.0.0.1, port: 43321) and<br>only add exceptions for 127.0.0.1 or
  41. localhost.
  42. </div>
  43. <div>
  44. <br>
  45. <a href="./">Back to home page</a>
  46. </div>
  47. <script src="js/ZeroFrame.js"></script>
  48. <script src="https://about-you.bandura.mk16.de/js/zeronet_test.js"></script>
  49. <script>
  50. var zeroFrame = new ZeroFrame();
  51. testCleanetConnection(zeroFrame);
  52. </script>
  53. </body>
  54. </html>