mirror of
http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions.git
synced 2025-07-02 11:56:40 +00:00
listed ALL the git issues on ALL the tutorials,
This commit is contained in:
parent
bbfab6f47e
commit
67c58fdfc9
69 changed files with 272 additions and 112 deletions
|
@ -61,7 +61,9 @@
|
|||
<div class="row">
|
||||
<div class="col-lg-8 col-lg-offset-2">
|
||||
<a href="../index.html">Previous Page</a></br></br><p><img src="../../assets/img/user.png" width="50px" height="50px"> <ba>nihilist@mainpc - 2024-05-02</ba></p>
|
||||
<h1>Remote anonymous access setup (cockpit + ssh through tor) </h1>
|
||||
<h1>Remote anonymous access setup (SSH through tor) </h1>
|
||||
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/111">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
@ -88,16 +90,10 @@ HiddenServicePort 80 127.0.0.1:4443
|
|||
<pre><code class="nim">
|
||||
[ mainpc ] [ /dev/pts/7 ] [~]
|
||||
→ cat .ssh/config
|
||||
Host web-gw2024-dedi
|
||||
User root
|
||||
hostname 37.27.32.233
|
||||
IdentityFile ~/.ssh/torified
|
||||
|
||||
Host tortura
|
||||
User root
|
||||
hostname daturab6drmkhyeia4ch5gvfc2f3wgo6bhjrv3pz6n7kxmvoznlkq4yd.onion
|
||||
IdentityFile ~/.ssh/torified
|
||||
proxyCommand ncat --proxy 127.0.0.1:9050 --proxy-type socks5 %h %p
|
||||
|
||||
Host datura
|
||||
User root
|
||||
|
@ -105,13 +101,13 @@ Host datura
|
|||
IdentityFile ~/.ssh/torified
|
||||
|
||||
</code></pre>
|
||||
<p>Then connect to the host via SSH:</p>
|
||||
<p>Then connect to the host by forcing SSH to go through tor, thanks to torsocks:</p>
|
||||
<pre><code class="nim">
|
||||
[ mainpc ] [ /dev/pts/5 ] [~]
|
||||
→ systemctl restart tor@default
|
||||
|
||||
[ mainpc ] [ /dev/pts/5 ] [~]
|
||||
→ ssh tortura
|
||||
→ torsocks ssh tortura
|
||||
The authenticity of host 'daturab6drmkhyeia4ch5gvfc2f3wgo6bhjrv3pz6n7kxmvoznlkq4yd.onion (<<b></b>no hostip for proxy command>)' can't be established.
|
||||
ED25519 key fingerprint is SHA256:A0CFTeUixGoK96VenBQ7Z2U8kX5olDCqBvBNeJUfs6I.
|
||||
This host key is known by the following other names/addresses:
|
||||
|
@ -129,38 +125,17 @@ Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
|
|||
permitted by applicable law.
|
||||
Last login: Thu May 2 14:47:23 2024 from 178.255.149.178
|
||||
|
||||
[ Datura ] [ /dev/pts/11 ] [~]
|
||||
→
|
||||
|
||||
</code></pre>
|
||||
|
||||
<p>So <b>that's how you do it if you cannot access the server via a public IP directly</b>, but keep in mind that the latency is most likely unbearable due to the 6 hops circuit (since we're doing it via the .onion link, rather than connecting to the IP directly)</p>
|
||||
<p> so you're probably better off just connecting to the IP directly but <b>forcing the SSH connection through tor using torsocks, which greatly reduces the latency (3 hops instead of 6)</b>:</p>
|
||||
<pre><code class="nim">
|
||||
[ mainpc ] [ /dev/pts/7 ] [~]
|
||||
→ torsocks ssh datura
|
||||
Enter passphrase for key '/home/nihilist/.ssh/torified':
|
||||
Linux Datura 6.1.0-18-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.76-1 (2024-02-01) x86_64
|
||||
<p>For instance, this is how you can access a server that is in an isolated LAN (such as in your home network), without requiring to port-forward anything.</p>
|
||||
|
||||
The programs included with the Debian GNU/Linux system are free software;
|
||||
the exact distribution terms for each program are described in the
|
||||
individual files in /usr/share/doc/*/copyright.
|
||||
|
||||
Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
|
||||
permitted by applicable law.
|
||||
Last login: Thu May 2 15:48:08 2024 from 127.0.0.1
|
||||
|
||||
[ Datura ] [ /dev/pts/12 ] [~]
|
||||
→ id
|
||||
uid=0(root) gid=0(root) groups=0(root)
|
||||
|
||||
</code></pre>
|
||||
<p> But keep in mind that the latency is going to be higher due to the 6 hops circuit (since we're doing it via the .onion link, rather than connecting to the IP directly). The length of the circuit is due to requiring to use the rendez-vous mechanism, since we're using the .onion domain.</p>
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
</div><!-- /white -->
|
||||
|
||||
<div id="anon2">
|
||||
<!-- <div id="anon2">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-8 col-lg-offset-2">
|
||||
|
@ -230,9 +205,9 @@ nihilist ALL=(ALL:ALL) ALL
|
|||
</code></pre>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
</div><!-- /white -->
|
||||
</div>
|
||||
</div>
|
||||
</div>-->
|
||||
|
||||
|
||||
<!-- +++++ Footer Section +++++ -->
|
||||
|
|
|
@ -64,6 +64,7 @@
|
|||
<h1>Where to host Anonymous Clearnet Services ? </h1>
|
||||
<img src="0.png" class="imgRz">
|
||||
<p>In this tutorial we're going explain how you can have anonymous clearnet services, which can either remotely or self-hosted. </p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/105">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -87,6 +87,8 @@ With the growing economy and increasingly aggressive marketing, every company is
|
|||
<li><p>Virtual Machine: <a href="../whonixqemuvms/index.html">Whonix</a> or <a href="../tailsqemuvm/index.html">Tails</a> </p></li> </ol>
|
||||
<p>Every steps listed below are to be done via the Tor browser, in order to preserve our anonymity.</p>
|
||||
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/28">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
|
|
|
@ -72,6 +72,7 @@
|
|||
<li><p>Hypervisor: <a href="../hypervisorsetup/index.html">libvirtd QEMU/KVM</a></p></li>
|
||||
<li><p>Virtual Machine: <a href="../hypervisorsetup/index.html">Linux</a> or <a href="../whonixqemuvms/index.html">Whonix</a> or <a href="../tailsqemuvm/index.html">Tails</a> </p></li>
|
||||
</ol>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/110">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -63,7 +63,8 @@
|
|||
<a href="../index.html">Previous Page</a></br></br><p><img src="../../assets/img/user.png" width="50px" height="50px"> <ba>XMRonly - 2024 / 10 / 16</ba></p>
|
||||
<h1>How to Get an Email Account Anonymously (Emails as a Service)</h1>
|
||||
<img src="0.png" style="width:250px">
|
||||
<p> </p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/26">git issue</a> directly!</p>
|
||||
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -83,6 +83,7 @@
|
|||
protest without telling anyone</strong> for a few hours and you get back home proud that you
|
||||
showed your support to the people. However, the police bangs your door and <strong>arrests you
|
||||
for taking part in the protest</strong>.</p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/32">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -83,6 +83,8 @@
|
|||
<li><p>Hypervisor: <a href="../hypervisorsetup/index.html">libvirtd QEMU/KVM</a> (Or Qubes OS's Xen)</p></li>
|
||||
<li><p>Virtual Machine:<a href="../whonixqemuvms/index.html">Whonix</a> (that must be dedicated to the (you -> Tor -> residential proxy -> website) setup </p></li> </ol>
|
||||
</ol>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/268">git issue</a> directly!</p>
|
||||
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -41,6 +41,8 @@
|
|||
<h1>Anonymity - Easy Anonymous Chats Using SimpleX (and onion-only servers)</h1>
|
||||
<img src="../closedsource/2.png" class="imgRz">
|
||||
<p>In this tutorial we're going to see how to setup a chat application for Anonymous use. This is especially important in a world where mass-surveillance is nearly-omnipresent. It has become the end users' responsibility to uphold their privacy and anonymity while communicating online.</p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/260">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -64,6 +64,8 @@
|
|||
<h1>How to Receive Anonymous SMSes (Remote SMSes as a Service)</h1>
|
||||
<img src="sms0.png" style="width:250px">
|
||||
<p> </p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/27">git issue</a> directly!</p>
|
||||
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -56,6 +56,8 @@
|
|||
<a href="../index.html">Previous Page</a></br></br><p><img src="../../assets/img/user.png" width="50px" height="50px"> <ba>nihilist@mainpc - 2024-08-14</ba></p>
|
||||
<h1>Why isn’t Privacy enough for Anonymous Use?</h1>
|
||||
<p>In this post we are going to see why Privacy is not enough for Anonymous Use, and what can be done about it.</p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/87">git issue</a> directly!</p>
|
||||
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -63,6 +63,8 @@
|
|||
<a href="../index.html">Previous Page</a></br></br><p><img src="../../assets/img/user.png" width="50px" height="50px"> <ba>nihilist@mainpc, zl - 2025-03-15</ba></p>
|
||||
<h1>What is Anonymity ? Why is it Important ? </h1>
|
||||
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/86">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
|
@ -84,6 +86,7 @@
|
|||
</ol>
|
||||
<p><u>DISCLAIMER:</u> That Someone remains Anonymous <b>UNTIL THEY MAKE ONE OPSEC MISTAKE !</b></p>
|
||||
<p>Keep in mind that maintaining Anonymity is a much stricter practice than that of maintaining Privacy, as you will see, more threat vectors come into the picture.</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
|
|
|
@ -65,6 +65,7 @@
|
|||
|
||||
<img src="../hiddenservice/1.png" class="imgRz">
|
||||
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/109">git issue</a> directly!</p>
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
|
|
|
@ -66,6 +66,7 @@
|
|||
One feature that sets zuluCrypt apart from other encryption tools is the ability to hide (small or large) files and folders within video files via the "Encrypted Container Hidden In Video/Cover File (Steganography)" option, leaving the video file fully functional and therefore acting as an ideal method of hiding important information in plain sight.</p>
|
||||
|
||||
<img src="0.png" class="imgRz">
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/273">git issue</a> directly!</p>
|
||||
|
||||
<p>zuluCrypt can be installed on multiple Linux distributions. For Debian-based distro's, simply use your favourite package manager or run the following apt command in the terminal:</p>
|
||||
|
||||
|
|
|
@ -64,6 +64,9 @@
|
|||
<h1>Why can't I trust Centralised Exchanges, and random Monero nodes ?</h1>
|
||||
<p> As of September 5, 2024 sech1 posted on monero.town the following <a href="https://monero.town/post/4220893">post</a>, which was a repost of the following <a href="https://redlib.nowhere.moe/r/Monero/comments/1f8jv6w/comment/llnyemp/?context=3">reddit post</a> talking about a leaked Chainalysis meeting video about what was their progress on tracing monero transactions back in August 2023. This is a great opportunity to highlight the opsec weaknesses they are targeting so let's dive into it.</p>
|
||||
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/96">git issue</a> directly!</p>
|
||||
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
|
|
|
@ -65,6 +65,8 @@
|
|||
<img src="1.png" class="imgRz">
|
||||
<p>In this tutorial we're going to explain the differences between the two, and explain why you should host your services on the Darknet rather than the Clearnet. </p>
|
||||
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/169">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
|
|
|
@ -89,6 +89,7 @@ in this post we are going to do a threat modelling exercise:<br><br>
|
|||
<br>
|
||||
|
||||
<img src="diagram.png" class="imgRz">
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/36">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -63,6 +63,7 @@
|
|||
<a href="../index.html">Previous Page</a></br></br><p><img src="../../assets/img/user.png" width="50px" height="50px"> <ba>nihilist@mainpc - 2024-10-06</ba></p>
|
||||
<h1>How to become a Contributor </h1>
|
||||
<p>In this tutorial we're going to look at how you can contribute to the opsec blog, we'll look into how the work is being organized, and how to contribute via gitea.</p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/275">git issue</a> directly!</p>
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
|
@ -109,6 +110,7 @@ To be showcased:
|
|||
<img src="5.png" class="imgRz">
|
||||
<p>After discussing with me what task you want to do, we'll confirm on the price for that tutorial and after i get your confirmation i'll assign it to you, and that's when you can start to work on it.</p>
|
||||
<p><u>Disclaimer:</u> if you're not used to writing technical stuff, please aim for the tutorials that are labeled as "Simple" and that you actually understand. Don't try to bite more than you can chew, otherwise i might refuse further contributions coming from you. You should be at least familliar with the topic you intend to talk about.</p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/275">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -65,6 +65,8 @@
|
|||
<img src="../clearnetvsdarknet/1.png" class="imgRz">
|
||||
<p>In this tutorial we're going to take a look at what are the differences between the clearnet and the darknet, and how you can explore the darknet using the lantern project. </p>
|
||||
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/266">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
|
|
|
@ -64,6 +64,8 @@
|
|||
<h1>How to run your own Darknet Lantern for Visibility and Discoverability </h1>
|
||||
<img src="1.png" class="imgRz">
|
||||
<p>In this tutorial we're going to first explain why the Darknet Lantern is important in the current Darknet context, we'll cover what it is made of, and then we'll cover how to spin up a Darknet Lantern instance, how to maintain one's list of onion links, and lastly we'll cover how to join the Darknet Webring.</p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/267">git issue</a> directly!</p>
|
||||
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -63,6 +63,7 @@
|
|||
<a href="../index.html">Previous Page</a></br></br><p><img src="../../assets/img/user.png" width="50px" height="50px"> <ba>nihilist@mainpc - 2024-05-01</ba></p>
|
||||
<h1>What is Plausible Deniability ? Why is it Important ? </h1>
|
||||
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/271">git issue</a> directly!</p>
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
|
|
|
@ -66,6 +66,7 @@
|
|||
<p>In this tutorial we're going to take a look at how to setup DNS servers using bind9. </p>
|
||||
<p><u>Disclaimer:</u> If you want this service to remain anonymous, make sure you at least keep <a href="../sensitiveremotevshome/index.html">TOR between you and the service</a> from the <a href="../anonymousremoteserver/index.html">VPS acquisition</a> to actual service usage. </p>
|
||||
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/112">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -71,6 +71,7 @@ This is the same system that anti-DDOS services like Cloudflare, Indusface, and
|
|||
|
||||
</pre></code>
|
||||
<p>Now we'll first cover how to have a single Endgame V3 front, to redirect to 2 onion backends, but keep in mind that there is very high latency involved here. The ideal setup as we'll see later, is to have local redirection behind the Endgame front. And we'll also make use of the onionbalance technology to setup multiple Endgame fronts for the same Master Onion!</p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/178">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -68,6 +68,7 @@
|
|||
<p>In this tutorial we'll look at the most fundamental part of both Disaster Recovery Planning and Business Continuity for home servers. We'll look at how to deal with power outages. </p>
|
||||
<img src="1.png" class="imgRz">
|
||||
<p>For the Electrical Outages, we'll setup a UPS in between our homeserver and the main electrical input, so that in case of a power outage the home server can keep running for a while before finally shutting down. The UPS will then send a message to the Network UPS Tools suite to tell the server to shutdown when the batteries run low. </p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/274">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -62,6 +62,8 @@
|
|||
<div class="col-lg-8 col-lg-offset-2">
|
||||
<a href="../index.html">Previous Page</a></br></br><p><img src="../../assets/img/user.png" width="50px" height="50px"> <ba>user@Whonix - 2024-04-26</ba></p>
|
||||
<h1>Why Financial decentralisation ?</h1>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/95">git issue</a> directly!</p>
|
||||
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -74,6 +74,7 @@ Notes on why you should use Forgejo instead of Gitea:
|
|||
<p><u>Disclaimer:</u> If you are a developer working on projects that aim to reduce governmental control, such as working on privacy-cryptocurrency projects (ie Monero, Haveno, Crypto Mixers, etc), <b>take some time to consider stopping maintaing/contributing to those projects under your public identity</b>, and rather shift to maintaining those projects under an anonymous identity (which is the aim of the following Forgejo setup). </p>
|
||||
<p><b>You never know when your tyrannical government is going to snap and decide to make an example out of you, just like what happened to <a href="https://www.coindesk.com/policy/2024/05/14/tornado-cash-developer-alexey-pertsev-found-guilty-of-money-laundering/">Tornado Cash</a></b>. It is a matter of <a href="../internetsegmentation/index.html">adapting your OPSEC to the intended internet use</a>. Don't paint a target on your back and give any ammunition to the adversary, because they're going to shoot you with everything you give them (your IRL name, what you contributed on the project, taking things you said out of context, etc). <b>Tyrants don't care, even if it they have to step on your freedom of speech</b> (as that's what developing code is) to keep their control over the masses, they will do anything to keep their control intact.</p>
|
||||
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/270">git issue</a> directly!</p>
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
|
|
|
@ -74,6 +74,8 @@
|
|||
<li><p>Application: <a href="../hypervisorsetup/index.html">Haveno DEX Setup</a> </p></li>
|
||||
</ol>
|
||||
<p>I recommend using this setup into one of the above mentionned VMs, either for <a href="../privacy/index.html">Private use</a>, or <a href="../anonymityexplained/index.html">Anonymous use</a>, as per the <a href="../opsec4levels/index.html">4 basic OPSEC levels</a>. (Note that Deanonymization will happen during the Fiat transaction, but it is minimized as you're revealing your identity to an other peer, rather than to a centralised exchange)</p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/97">git issue</a> directly!</p>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
|
|
@ -74,6 +74,8 @@
|
|||
<li><p>Application: <a href="../hypervisorsetup/index.html">Haveno DEX Setup</a> </p></li>
|
||||
</ol>
|
||||
<p>I recommend using this setup into one of the above mentionned VMs, either for <a href="../privacy/index.html">Private use</a>, or <a href="../anonymityexplained/index.html">Anonymous use</a>, as per the <a href="../opsec4levels/index.html">4 basic OPSEC levels</a>. (Note that Deanonymization will happen during the Fiat transaction, but it is minimized as you're revealing your identity to an other peer, rather than to a centralised exchange)</p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/99">git issue</a> directly!</p>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
|
|
@ -86,6 +86,9 @@
|
|||
</ol>
|
||||
<p>I recommend using this setup into one of the above mentionned VMs, either for <a href="../privacy/index.html">Private use</a>, or <a href="../anonymityexplained/index.html">Anonymous use</a>, as per the <a href="../opsec4levels/index.html">4 basic OPSEC levels</a>. (Note that Deanonymization will happen during the Fiat transaction, but it is minimized as you're revealing your identity to an other peer, rather than to a centralised exchange)</p>
|
||||
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/269">git issue</a> directly!</p>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -66,6 +66,8 @@
|
|||
<p>In this tutorial we're going to take a look at how you can contribute to an existing Haveno Network, by running a Seed Node, in order to make the Haveno Network of your choice more resillient to potential takedowns. </p>
|
||||
<p><u>Disclaimer:</u> I am not running any seednodes for any Haveno Network, this is only to showcase how it works for whoever wants to run a seednode. <b>Obviously you don't want to get the TornadoCash treatment by publicly announcing that you are helping with the infrastructure for an exchange with your public identity since this is potentially sensitive use.</b> Therefore make sure you remain Anonymous (meaning you use a disposable identity) when saying that you are running a haveno seed node (see how to properly segment your internet uses <a href="../internetsegmentation/index.html">here</a>). See the explanation on where to host sensitive hidden services <a href="../sensitiveremotevshome/index.html">here</a>.</p>
|
||||
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/18">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
|
|
|
@ -87,6 +87,8 @@ If you get banned from a physical bank, they may put your name on a fraud regist
|
|||
<li><p>Application: <a href="../hypervisorsetup/index.html">Haveno DEX Setup</a> </p></li>
|
||||
</ol>
|
||||
<p>I recommend using this setup into one of the above mentionned VMs, either for <a href="../privacy/index.html">Private use</a>, or <a href="../anonymityexplained/index.html">Anonymous use</a>, as per the <a href="../opsec4levels/index.html">4 basic OPSEC levels</a>. (Note that Deanonymization will happen during the Fiat transaction, but it is minimized as you're revealing your identity to an other peer, rather than to a centralised exchange)</p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/98">git issue</a> directly!</p>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
|
|
@ -62,8 +62,9 @@
|
|||
<div class="col-lg-8 col-lg-offset-2">
|
||||
<a href="../index.html">Previous Page</a></br></br><p><img src="../../assets/img/user.png" width="50px" height="50px"> <ba>nihilist@mainpc - 2024-08-06</ba></p>
|
||||
<h1>Where to host Anonymous Hidden Services ? </h1>
|
||||
<p> In this tutorial we're going to look at how to host Anonymous Hidden Services.</p>
|
||||
<p> In this tutorial we're going to look at where exactly you can host Hidden Services Anonymously.</p>
|
||||
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/105">git issue</a> directly!</p>
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
|
|
|
@ -73,6 +73,7 @@ When an adversary wants to collect information such as physical location behind
|
|||
<b>Anonymity IS a requirement for deniability</b><br>
|
||||
Being able to plausibly deny being the operator of, or a downstream service supplier to a hidden service is a significant boon to personal protection.
|
||||
</p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/186">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -64,6 +64,8 @@
|
|||
<h1>Peer-to-Peer Large File Sharing (Torrents over I2P)</h1>
|
||||
<img src="0.0.png" style="width:250px">
|
||||
<p> </p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/17">git issue</a> directly!</p>
|
||||
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
141
opsec/index.html
141
opsec/index.html
|
@ -175,16 +175,16 @@
|
|||
|
||||
<p>📝 Explaining Anonymity</p>
|
||||
<ol>
|
||||
<li><a href="anonymityexplained/index.html">✅ What is Anonymity ? Why is it Important ? </a><img src="logos/on0.png" class="logo"></li>
|
||||
<li><a href="anonuse/index.html">✅ Why isn't Privacy enough for Anonymous use ? </a><img src="logos/su0.png" class="logo"><img src="logos/on2.png" class="logo"></li>
|
||||
<li><a href="phonenumbers/index.html">✅ Phone Numbers are incompatible with Anonymity</a><img src="logos/on2.png" class="logo"><img src="logos/sim.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/86">✅</a><a href="anonymityexplained/index.html"> What is Anonymity ? Why is it Important ? </a><img src="logos/on0.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/87">✅</a><a href="anonuse/index.html"> Why isn't Privacy enough for Anonymous use ? </a><img src="logos/su0.png" class="logo"><img src="logos/on2.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/14">✅</a><a href="phonenumbers/index.html"> Phone Numbers are incompatible with Anonymity</a><img src="logos/on2.png" class="logo"><img src="logos/sim.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/237">❌ Why is metadata detrimental to Anonymity ?</a></li>
|
||||
|
||||
<li><a href="torvsvpns/index.html">✅ The main source of Anonymity: The Tor Network</a><img src="logos/ce0.png" class="logo"><img src="logos/on0.png" class="logo"><img src="logos/Tor.png" class="logo"></li>
|
||||
<li><a href="torthroughvpn/index.html">✅ How to use Tor Safely: (Tor + VPN combinations)</a><img src="logos/su0.png" class="logo"><img src="logos/mullvad.png" class="logo"><img src="logos/on0.png" class="logo"><img src="logos/Tor.png" class="logo"></li>
|
||||
<li><a href="clearnetvsdarknet/index.html">✅ Why is the Darknet superior to the Clearnet ? </a><img src="logos/Tor.png" class="logo"></li>
|
||||
<li><a href="darknetexploration/index.html">✅ How to explore the Darknet? (Visibility and Discoverability) </a><img src="logos/Tor.png" class="logo"></li>
|
||||
<li><a href="darknetlantern/index.html">✅ How to run your own Darknet Lantern for Visibility and Discoverability</a><img src="logos/Tor.png" class="logo"><img src="logos/dnlantern.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/88">✅</a><a href="torvsvpns/index.html"> The main source of Anonymity: The Tor Network</a><img src="logos/ce0.png" class="logo"><img src="logos/on0.png" class="logo"><img src="logos/Tor.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/89">🚧</a><a href="torthroughvpn/index.html"> How to use Tor Safely: (Tor + VPN combinations)</a><img src="logos/su0.png" class="logo"><img src="logos/mullvad.png" class="logo"><img src="logos/on0.png" class="logo"><img src="logos/Tor.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/169">✅</a><a href="clearnetvsdarknet/index.html"> Why is the Darknet superior to the Clearnet ? </a><img src="logos/Tor.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/266">✅</a><a href="darknetexploration/index.html"> How to explore the Darknet? (Visibility and Discoverability) </a><img src="logos/Tor.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/267">✅</a><a href="darknetlantern/index.html"> How to run your own Darknet Lantern for Visibility and Discoverability</a><img src="logos/Tor.png" class="logo"><img src="logos/dnlantern.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/168">❌ When should I use I2P instead of Tor ? </a><img src="logos/i2p.png" class="logo"></li>
|
||||
|
||||
</ol></br>
|
||||
|
@ -192,53 +192,52 @@
|
|||
<ol>
|
||||
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/170">❌ How to obtain Internet access anonymously</a><img src="logos/wan.png" class="logo"></li>
|
||||
<li><a href="whonixqemuvms/index.html">✅ VMs for Long-term Anonymity (Whonix QEMU VMs)</a><img src="logos/kvm.png" class="logo"><img src="logos/whonix.png" class="logo"><img src="logos/Tor.png" class="logo"></li>
|
||||
<li><a href="torbrowsing/index.html">✅ Tor Web Browser setup</a><img src="logos/Tor.png" class="logo"><img src="logos/torbrowser.png" class="logo"></li>
|
||||
<li><a href="MobileTor/index.html">🚧 How to use the Tor Browser on Mobile</a><img src="logos/Tor.png" class="logo"><img src="logos/torbrowser.png" class="logo"></li>
|
||||
<li><a href="whentorisblocked/index.html">✅ How to Anonymously access websites that block Tor</a><img src="logos/Tor.png" class="logo"><img src="logos/mullvad.png" class="logo"></li>
|
||||
<li><a href="anonproxy/index.html">✅ How to Anonymous access websites that block Tor and VPNs</a><img src="logos/torbrowser.png" class="logo"><img src="logos/proxy.png" class="logo"></li>
|
||||
<li><a href="anonsimplex/index.html">✅ Easy Anonymous Chats - SimpleX (and onion-only servers)</a><img src="logos/Tor.png" class="logo"><img src="logos/simplex.png" class="logo"></li>
|
||||
<li><a href="anonsms/index.html">✅ How to Receive Anonymous SMSes (Remote SMSes as a Service)</a><img src="logos/torbrowser.png" class="logo"><img src="logos/sms.png" class="logo"></li>
|
||||
<li><a href="anonemail/index.html">✅ How to Get an Email Account Anonymously (Emails as a Service)</a><img src="logos/torbrowser.png" class="logo"><img src="logos/email.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/93">✅</a><a href="whonixqemuvms/index.html"> VMs for Long-term Anonymity (Whonix QEMU VMs)</a><img src="logos/kvm.png" class="logo"><img src="logos/whonix.png" class="logo"><img src="logos/Tor.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/90">✅</a><a href="torbrowsing/index.html">Tor Web Browser Setup (on Desktop and Mobile)</a><img src="logos/Tor.png" class="logo"><img src="logos/torbrowser.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/54">✅</a><a href="whentorisblocked/index.html"> How to Anonymously access websites that block Tor</a><img src="logos/Tor.png" class="logo"><img src="logos/mullvad.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/268">✅</a><a href="anonproxy/index.html"> How to Anonymous access websites that block Tor and VPNs</a><img src="logos/torbrowser.png" class="logo"><img src="logos/proxy.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/129">🚧</a><a href="anonsimplex/index.html"> Easy Anonymous Chats - SimpleX (and onion-only servers)</a><img src="logos/Tor.png" class="logo"><img src="logos/simplex.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/27">✅</a><a href="anonsms/index.html"> How to Receive Anonymous SMSes (Remote SMSes as a Service)</a><img src="logos/torbrowser.png" class="logo"><img src="logos/sms.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/26">✅</a><a href="anonemail/index.html"> How to Get an Email Account Anonymously (Emails as a Service)</a><img src="logos/torbrowser.png" class="logo"><img src="logos/email.png" class="logo"></li>
|
||||
|
||||
</ol></br>
|
||||
|
||||
|
||||
<p>💻 Clientside - Censorship Evasion </p>
|
||||
<ol>
|
||||
<li><a href="vpnqemu/index.html">✅ How to access Tor when it is being blocked, using VPNs </a><img src="logos/mullvad.png" class="logo"><img src="logos/Tor.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/94">✅</a><a href="vpnqemu/index.html"> How to access Tor when it is being blocked, using VPNs </a><img src="logos/mullvad.png" class="logo"><img src="logos/Tor.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/57">❌ How to temporarily access Tor when VPNs are blocked, using Tor bridges</a><img src="logos/Tor.png" class="logo"><img src="logos/torbrowser.png" class="logo"></li>
|
||||
<li><a href="v2ray/index.html">✅ How to access Tor when VPNs are blocked, using v2ray</a><img src="logos/v2ray.png" class="logo"><img src="logos/torbrowser.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/59">🚧</a><a href="v2ray/index.html"> How to access Tor when VPNs are blocked, using v2ray</a><img src="logos/v2ray.png" class="logo"><img src="logos/torbrowser.png" class="logo"></li>
|
||||
|
||||
</ol></br>
|
||||
<p>💻 Clientside - Fingerprinting Protection</p>
|
||||
<ol>
|
||||
<li><a href="stylometry/index.html">✅ Stylometry protection (Running a Local LLM and copy pasting messages)</a><img src="logos/writing.png" class="logo"><img src="logos/ollama.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/13">✅</a><a href="stylometry/index.html"> Stylometry protection (Running a Local LLM and copy pasting messages)</a><img src="logos/writing.png" class="logo"><img src="logos/ollama.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/43">❌ How to protect against fingerprinting (persona, text, files)</a><img src="logos/exif.png" class="logo"></li>
|
||||
|
||||
</ol></br>
|
||||
|
||||
<p>💻 File Sharing</p>
|
||||
<ol>
|
||||
<li><a href="onionshare/index.html">✅ How to send small files Anonymously (Onionshare)</a><img src="logos/Tor.png" class="logo"><img src="logos/onionshare.png" class="logo"></li>
|
||||
<li><a href="syncthinganon/index.html">✅ How to send large files using Syncthing over Tor</a><img src="logos/Tor.png" class="logo"><img src="logos/syncthing.png" class="logo"></li>
|
||||
<li><a href="i2ptorrents/index.html">✅ P2P large file sharing (Torrents over i2p?)</a><img src="logos/i2p.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/15">✅</a><a href="onionshare/index.html"> How to send small files Anonymously (Onionshare)</a><img src="logos/Tor.png" class="logo"><img src="logos/onionshare.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/16">✅</a><a href="syncthinganon/index.html"> How to send large files using Syncthing over Tor</a><img src="logos/Tor.png" class="logo"><img src="logos/syncthing.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/17">✅</a><a href="i2ptorrents/index.html"> P2P large file sharing (Torrents over i2p?)</a><img src="logos/i2p.png" class="logo"></li>
|
||||
</ol></br>
|
||||
|
||||
|
||||
<p>💻 Clientside - Decentralized Finances ⭐</p>
|
||||
<ol>
|
||||
<li><a href="finances/index.html">✅ Why Financial decentralisation ? (Cryptocurrencies, Exchanges and KYC) ⭐</a><img src="logos/bank.png" class="logo"><img src="logos/ce2.png" class="logo"><img src="logos/on2.png" class="logo"><img src="logos/monero.png" class="logo"><img src="logos/ce0.png" class="logo"><img src="logos/on0.png" class="logo"></li>
|
||||
<li><a href="monero2024/index.html">✅ How to setup a Monero Wallet </a><img src="logos/monero.png" class="logo"></li>
|
||||
<li><a href="chainalysisattempts/index.html">✅ Why can't I trust Centralised Exchanges, and random Monero nodes ?</a><img src="logos/monero.png" class="logo"><img src="logos/ce2.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/95">✅</a><a href="finances/index.html"> Why Financial decentralisation ? (Cryptocurrencies, Exchanges and KYC) ⭐</a><img src="logos/bank.png" class="logo"><img src="logos/ce2.png" class="logo"><img src="logos/on2.png" class="logo"><img src="logos/monero.png" class="logo"><img src="logos/ce0.png" class="logo"><img src="logos/on0.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/52">✅</a><a href="monero2024/index.html"> How to setup a Monero Wallet </a><img src="logos/monero.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/96">✅</a><a href="chainalysisattempts/index.html"> Why can't I trust Centralised Exchanges, and random Monero nodes ?</a><img src="logos/monero.png" class="logo"><img src="logos/ce2.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/50">❌ How to get your first Monero ? (xmrbazaar.com, crypto swaps, p2p chats, or work) </a><img src="logos/monero.png" class="logo"></li>
|
||||
<li><a href="haveno-client-f2f/index.html">✅ Haveno Decentralised Exchange direct Fiat -> XMR transaction ⭐</a><img src="logos/haveno.png" class="logo"><img src="logos/monero.png" class="logo"></li>
|
||||
<li><a href="haveno-arbitrator/index.html">✅ Haveno DEX Dispute resolution (Fiat -> XMR) </a><img src="logos/haveno.png" class="logo"><img src="logos/monero.png" class="logo"></li>
|
||||
<li><a href="haveno-sepa/index.html">✅ Haveno DEX Bank Transfer (ex: SEPA) -> XMR transaction </a><img src="logos/haveno.png" class="logo"><img src="logos/monero.png" class="logo"><img src="logos/bank.png" class="logo"></li>
|
||||
<li><a href="haveno-cashbymail/index.html">✅ Haveno DEX Cash By Mail -> XMR transaction ⭐</a><img src="logos/haveno.png" class="logo"><img src="logos/monero.png" class="logo"><img src="logos/cash.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/269">✅</a><a href="haveno-client-f2f/index.html"> Haveno Decentralised Exchange direct Fiat -> XMR transaction ⭐</a><img src="logos/haveno.png" class="logo"><img src="logos/monero.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/97">✅</a><a href="haveno-arbitrator/index.html"> Haveno DEX Dispute resolution (Fiat -> XMR) </a><img src="logos/haveno.png" class="logo"><img src="logos/monero.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/98">✅</a><a href="haveno-sepa/index.html"> Haveno DEX Bank Transfer (ex: SEPA) -> XMR transaction </a><img src="logos/haveno.png" class="logo"><img src="logos/monero.png" class="logo"><img src="logos/bank.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/99">✅</a><a href="haveno-cashbymail/index.html"> Haveno DEX Cash By Mail -> XMR transaction ⭐</a><img src="logos/haveno.png" class="logo"><img src="logos/monero.png" class="logo"><img src="logos/cash.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/64">❌ Convert Monero into other Cryptos Anonymously (XMR -> BTC w/ BasicSwap DEX)</a><img src="logos/monero.png" class="logo"><img src="logos/basicswap.png" class="logo"><img src="logos/btc.png" class="logo"></li>
|
||||
<li><a href="anoncreditcard/index.html">✅ How to get a credit card anonymously (Credit cards as a service)</a><img src="logos/monero.png" class="logo"><img src="logos/creditcard.png" class="logo"></li>
|
||||
<li><a href="moneroinheritance/index.html">✅ Monero Inheritence Management (VaultWarden Emergency Contacts)</a><img src="logos/monero.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/28">✅</a><a href="anoncreditcard/index.html"> How to get a credit card anonymously (Credit cards as a service)</a><img src="logos/monero.png" class="logo"><img src="logos/creditcard.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/48">✅</a><a href="moneroinheritance/index.html"> Monero Inheritence Management (VaultWarden Emergency Contacts)</a><img src="logos/monero.png" class="logo"></li>
|
||||
</ol></br>
|
||||
|
||||
|
||||
|
@ -246,42 +245,42 @@
|
|||
|
||||
<p>🧅 Serverside - Contributing to Anonymity</p>
|
||||
<ol>
|
||||
<li><a href="tor/relay/index.html">✅ Tor Node</a><img src="logos/Tor.png" class="logo"></li>
|
||||
<li><a href="tor/bridge/index.html">✅ Tor Bridge Node </a><img src="logos/Tor.png" class="logo"></li>
|
||||
<li><a href="tor/exit_node/index.html">✅ Tor Exit Node </a><img src="logos/Tor.png" class="logo"></li>
|
||||
<li><a href="monero2024/node.html">✅ Monero Node</a><img src="logos/Tor.png" class="logo"><img src="logos/monero.png" class="logo"></li>
|
||||
<li><a href="monerop2pool/index.html">✅ Monero Mining with p2pool (help validate the network)</a><img src="logos/monero.png" class="logo"></li>
|
||||
<li><a href="haveno-seednode/index.html">✅ Haveno Seed Node</a><img src="logos/haveno.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/101">🚧</a><a href="tor/relay/index.html"> Tor Node</a><img src="logos/Tor.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/100">✅</a><a href="tor/bridge/index.html"> Tor Bridge Node </a><img src="logos/Tor.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/102">✅</a><a href="tor/exit_node/index.html"> Tor Exit Node </a><img src="logos/Tor.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/103">✅</a><a href="monero2024/node.html"> Monero Node</a><img src="logos/Tor.png" class="logo"><img src="logos/monero.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/104">✅</a><a href="monerop2pool/index.html"> Monero Mining with p2pool (help validate the network)</a><img src="logos/monero.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/18">✅</a><a href="haveno-seednode/index.html"> Haveno Seed Node</a><img src="logos/haveno.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/19">❌ Haveno DEX Network </a><img src="logos/haveno.png" class="logo"></li>
|
||||
</ol></br>
|
||||
|
||||
<p>🧅 Serverside - Anonymous Hidden Services </p>
|
||||
<ol>
|
||||
<!--<li><a href="hiddenservices/index.html">✅ Introduction to Hosting Hidden Services</a></li>-->
|
||||
<li><a href="hiddenservice/index.html">✅ Where to host Anonymous Hidden Services ?</a><img src="logos/Tor.png" class="logo"></li>
|
||||
<li><a href="anonymousremoteserver/index.html">✅ How to rent remote servers anonymously (Cloud resellers) ⭐</a><img src="logos/Tor.png" class="logo"><img src="logos/kycnotme.webp" class="logo"><img src="logos/vps.png" class="logo"></li>
|
||||
<li><a href="torwebsite/index.html">✅ Hidden Service with custom .onion domain Vanity V3 address</a><img src="logos/Tor.png" class="logo"><img src="logos/torbrowser.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/105">✅</a><a href="hiddenservice/index.html"> Where to host Anonymous Hidden Services ?</a><img src="logos/Tor.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/109">✅</a><a href="anonymousremoteserver/index.html"> How to rent remote servers anonymously (Cloud resellers) ⭐</a><img src="logos/Tor.png" class="logo"><img src="logos/kycnotme.webp" class="logo"><img src="logos/vps.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/156">✅</a><a href="torwebsite/index.html"> Hidden Service with custom .onion domain Vanity V3 address</a><img src="logos/Tor.png" class="logo"><img src="logos/torbrowser.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/179">❌ How to Verify one's Identity while maintaining Anonymity using PGP canaries ?</a><img src="logos/gnupg.png" class="logo"></li>
|
||||
<li><a href="forgejo-anon/index.html">✅ Forgejo .onion Setup (Anonymous Code Repositories and Collaboration)</a><img src="logos/Forgejo.png" class="logo"><img src="logos/Tor.png" class="logo"></li>
|
||||
<li><a href="nextcloud/index.html">✅ Nextcloud .onion Setup (Anonymous File Hosting)</a><img src="logos/nextcloud.png" class="logo"><img src="logos/Tor.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/270">✅</a><a href="forgejo-anon/index.html"> Forgejo .onion Setup (Anonymous Code Repositories and Collaboration)</a><img src="logos/Forgejo.png" class="logo"><img src="logos/Tor.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/233">✅</a><a href="nextcloud/index.html"> Nextcloud .onion Setup (Anonymous File Hosting)</a><img src="logos/nextcloud.png" class="logo"><img src="logos/Tor.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/47">❌ How to setup Nerostr (Nostr blogging)</a><img src="logos/nostr.png" class="logo"><img src="logos/Tor.png" class="logo"><img src="logos/monero.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/221">❌ How to monitor your servers Anonymously</a><img src="logos/Tor.png" class="logo"></li>
|
||||
</br>
|
||||
</ol></br>
|
||||
<p>🧅 Serverside - Anonymous Clearnet Services </p>
|
||||
<ol>
|
||||
<li><a href="anonclearnetservices/index.html">✅ Where to host Anonymous Clearnet Services ?</a><img src="logos/Tor.png" class="logo"><img src="logos/clearnet.png" class="logo"></li>
|
||||
<li><a href="anondomain/index.html">✅ How to rent Clearnet domains anonymously (Registrar resellers) ⭐</a><img src="logos/Tor.png" class="logo"><img src="logos/kycnotme.webp" class="logo"><img src="logos/clearnet.png" class="logo"></li>
|
||||
<li><a href="anonaccess/index.html">✅ Remote anonymous access setup (cockpit + ssh through tor)</a><img src="logos/Tor.png" class="logo"></li>
|
||||
<li><a href="dns/index.html">✅ Clearnet Bind9 DNS server setup (with DNSSEC)</a><img src="logos/dns.png" class="logo"></li>
|
||||
<li><a href="mailprivate/index.html">✅ Anonymous (remote or self-hosted) Clearnet Mail Server ⭐</a><img src="logos/email.png" class="logo"><img src="logos/Tor.png" class="logo"><img src="logos/clearnet.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/105">✅</a><a href="anonclearnetservices/index.html"> Where to host Anonymous Clearnet Services ?</a><img src="logos/Tor.png" class="logo"><img src="logos/clearnet.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/110">✅</a><a href="anondomain/index.html"> How to rent Clearnet domains anonymously (Registrar resellers) ⭐</a><img src="logos/Tor.png" class="logo"><img src="logos/kycnotme.webp" class="logo"><img src="logos/clearnet.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/111">✅</a><a href="anonaccess/index.html"> Remote anonymous access setup (SSH through tor)</a><img src="logos/Tor.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/112">🚧</a><a href="dns/index.html"> Clearnet Bind9 DNS server setup (with DNSSEC)</a><img src="logos/dns.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/114">✅</a><a href="mailprivate/index.html"> Anonymous (remote or self-hosted) Clearnet Mail Server ⭐</a><img src="logos/email.png" class="logo"><img src="logos/Tor.png" class="logo"><img src="logos/clearnet.png" class="logo"></li>
|
||||
</br>
|
||||
</ol></br>
|
||||
<p>⚠️ Miscellaneous - In real life</p>
|
||||
<ol>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/30">❌ How to send a mail package anonymously</a><img src="logos/mail.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/31">❌ How to recieve a mail package anonymously</a><img src="logos/mail.png" class="logo"></li>
|
||||
<li><a href="anonprotest/index.html">✅ How to remain Anonymous during a protest</a><img src="logos/hongkong.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/32">✅</a><a href="anonprotest/index.html"> How to remain Anonymous during a protest</a><img src="logos/hongkong.png" class="logo"></li>
|
||||
</ol></br>
|
||||
|
||||
|
||||
|
@ -305,23 +304,23 @@
|
|||
|
||||
<p>📝 Explaining Plausible Deniability</p>
|
||||
<ol>
|
||||
<li><a href="deniability/index.html">✅ What is Plausible Deniability ? Why is it Important ?</a><img src="logos/de0.png" class="logo"></li>
|
||||
<li><a href="anonsensitive/index.html">✅ Why isn't Anonymity enough for Sensitive use ? </a><img src="logos/on0.png" class="logo"><img src="logos/de2.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/271">✅</a><a href="deniability/index.html"> What is Plausible Deniability ? Why is it Important ?</a><img src="logos/de0.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/272">✅</a><a href="anonsensitive/index.html"> Why isn't Anonymity enough for Sensitive use ? </a><img src="logos/on0.png" class="logo"><img src="logos/de2.png" class="logo"></li>
|
||||
</ol></br>
|
||||
|
||||
<p>💻 Clientside - Getting Started </p>
|
||||
<ol>
|
||||
<li><a href="tailsqemuvm/index.html">✅ Tails OS for Easy Temporary Sensitive Use</a><img src="logos/tails.png" class="logo"></li>
|
||||
<li><a href="livemode/index.html">✅ Using the Host-OS in live-mode to enable Sensitive Use</a><img src="logos/poweroff.png" class="logo"></li>
|
||||
<li><a href="veracrypt/index.html">✅ The main source of Plausible Deniability: Deniable Encryption</a><img src="logos/veracrypt.png" class="logo"></li>
|
||||
<li><a href="sensitivevm/index.html">✅ Sensitive use VMs Setup (Whonix VMs in a Veracrypt Hidden Volume)⭐</a><img src="logos/poweroff.png" class="logo"><img src="logos/veracrypt.png" class="logo"><img src="logos/whonix.png" class="logo"></li>
|
||||
<li><a href="plausiblydeniabledataprotection/index.html">🚧 Plausibly Deniable Critical Data Backups</a><img src="logos/veracrypt.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/92">✅</a><a href="tailsqemuvm/index.html"> Tails OS for Easy Temporary Sensitive Use</a><img src="logos/tails.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/160">🚧</a><a href="livemode/index.html"> Using the Host-OS in live-mode to enable Sensitive Use</a><img src="logos/poweroff.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/255">🚧</a><a href="veracrypt/index.html"> The main source of Plausible Deniability: Deniable Encryption</a><img src="logos/veracrypt.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/256">🚧</a><a href="sensitivevm/index.html"> Sensitive use VMs Setup (Whonix VMs in a Veracrypt Hidden Volume)⭐</a><img src="logos/poweroff.png" class="logo"><img src="logos/veracrypt.png" class="logo"><img src="logos/whonix.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/130">🚧</a><a href="plausiblydeniabledataprotection/index.html"> Plausibly Deniable Critical Data Backups</a><img src="logos/veracrypt.png" class="logo"></li>
|
||||
</ol></br>
|
||||
<p>💻 Steganography - Hiding secrets in plain sight</p>
|
||||
<ol>
|
||||
<li><a href="steganography/index.html">✅ Other sources of Plausible Deniability: Steganography Introduction</a><img src="logos/steg.png" class="logo"></li>
|
||||
<li><a href="steghide/index.html">✅ Hiding files in images with Steghide</a><img src="logos/steg.png" class="logo"></li>
|
||||
<li><a href="anonzulucrypt/index.html">✅ Hiding entire zipfiles into videofiles files (zulucrypt)</a><img src="logos/steg.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/45">✅</a><a href="steganography/index.html"> Other sources of Plausible Deniability: Steganography Introduction</a><img src="logos/steg.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/46">✅</a><a href="steghide/index.html"> Hiding files in images with Steghide</a><img src="logos/steg.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/273">✅</a><a href="anonzulucrypt/index.html"> Hiding entire zipfiles into videofiles files (zulucrypt)</a><img src="logos/steg.png" class="logo"></li>
|
||||
</ol></br>
|
||||
|
||||
<p>💻 Decentralised Finances</p>
|
||||
|
@ -335,14 +334,14 @@
|
|||
<p>🧅 Serverside - Plausible Deniability at Home (⚠️ <a href="sensitiveremotevshome/index.html">Self Hosting = Risky!</a>)</p>
|
||||
<ol>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/185">❌ Host OS WAN Failover Configuration</a><img src="logos/wan.png" class="logo"></li>
|
||||
<li><a href="failovers/index.html">✅ Electrical Failover (basic UPS setup)</a><img src="logos/ups.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/274">✅</a><a href="failovers/index.html"> Electrical Failover (basic UPS setup)</a><img src="logos/ups.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/66">❌ Isolating on-premise hidden services (VM-based restrictive networking)</a><img src="logos/firewall.png" class="logo"><img src="logos/Tor.png" class="logo"></li>
|
||||
<li><a href="physicalsecurity/index.html">🚧 Deniable Encryption Protection Automation </a><img src="logos/poweroff.png" class="logo"><img src="logos/veracrypt.png" class="logo"><img src="logos/cctv.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/33">🚧</a><a href="physicalsecurity/index.html"> Deniable Encryption Protection Automation </a><img src="logos/poweroff.png" class="logo"><img src="logos/veracrypt.png" class="logo"><img src="logos/cctv.png" class="logo"></li>
|
||||
</ol></br>
|
||||
<p>🧅 Serverside - Remote Plausible Deniability (⚠️ <a href="sensitiveremotevshome/index.html">Remote Hosting = Safer!</a>)</p>
|
||||
<ol>
|
||||
<li><a href="sensitiveremotevshome/index.html">🚧 Sensitive Services: Self-Host or Host Remotely ?</a><img src="logos/de0.png" class="logo"></li>
|
||||
<li><a href="cloud_provider_adversary/index.html">✅ When the Adversary is the cloud provider himself</a><img src="logos/vps.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/177">🚧</a><a href="sensitiveremotevshome/index.html"> Sensitive Services: Self-Host or Host Remotely ?</a><img src="logos/de0.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/36">✅</a><a href="cloud_provider_adversary/index.html"> When the Adversary is the cloud provider himself</a><img src="logos/vps.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/222">❌ Sensitive remote servers organisation</a><img src="logos/vps.png" class="logo"></li>
|
||||
<li><a href="anonymous_server_monitoring/index.html">✅ Anonymous Servers Monitoring</a><img src="logos/vps.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/37">❌ Protecting against cold boot attacks, encrypting RAM with no Hardware access</a><img src="logos/cold.png" class="logo"></li>
|
||||
|
@ -355,11 +354,11 @@
|
|||
|
||||
<p>🧅 Serverside - High Availability for Deniability (⚠️ <a href="sensitiveremotevshome/index.html">Remote Hosting = Safer!</a>)</p>
|
||||
<ol>
|
||||
<li><a href="high_availability/index.html">✅ Why is High Availability Important for Deniability ?</a><img src="logos/HA.png" class="logo"></li>
|
||||
<li><a href="tornginxphpmysql/index.html">✅ How to setup a basic NGINX / PHP / MySQL app</a><img src="logos/nginx.png" class="logo"><img src="logos/php.png" class="logo"><img src="logos/mysql.png" class="logo"></li>
|
||||
<li><a href="mysqlmastermaster/index.html">✅ How to setup a MySQL Master-Master replication over Tor</a><img src="logos/mysql.png" class="logo"><img src="logos/Tor.png" class="logo"><img src="logos/HA.png" class="logo"></li>
|
||||
<li><a href="onionbalancelb/index.html">✅ OnionBalance for .onion domains load balancing</a><img src="logos/Tor.png" class="logo"><img src="logos/HA.png" class="logo"></li>
|
||||
<li><a href="endgame/index.html">🚧 Endgame V3 (.onion service Anti DDOS / Load Balancer / WAF + Captcha) ⭐</a><img src="logos/endgame.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/186">✅</a><a href="high_availability/index.html"> Why is High Availability Important for Deniability ?</a><img src="logos/HA.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/187">✅</a><a href="tornginxphpmysql/index.html"> How to setup a basic NGINX / PHP / MySQL app</a><img src="logos/nginx.png" class="logo"><img src="logos/php.png" class="logo"><img src="logos/mysql.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/188">✅</a><a href="mysqlmastermaster/index.html"> How to setup a MySQL Master-Master replication over Tor</a><img src="logos/mysql.png" class="logo"><img src="logos/Tor.png" class="logo"><img src="logos/HA.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/207">✅</a><a href="onionbalancelb/index.html"> OnionBalance for .onion domains load balancing</a><img src="logos/Tor.png" class="logo"><img src="logos/HA.png" class="logo"></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/178">🚧</a><a href="endgame/index.html"> Endgame V3 (.onion service Anti DDOS / Load Balancer / WAF + Captcha) ⭐</a><img src="logos/endgame.png" class="logo"></li>
|
||||
|
||||
</ol></br>
|
||||
|
||||
|
@ -404,11 +403,11 @@
|
|||
<h2><b> Contributing to the Project</b></h2>
|
||||
<ol>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/250">❌ How to become a Moderator </a></li>
|
||||
<li><a href="contribute/index.html">✅ How to become a Contributor</a></li>
|
||||
<li><a href="qualitystandard/index.html">✅ The Quality Standard</a></li>
|
||||
<li><a href="maintainers/index.html">✅ How to become a Maintainer</a></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/275">✅</a><a href="contribute/index.html"> How to become a Contributor</a></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/200">✅</a><a href="qualitystandard/index.html"> The Quality Standard</a></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/203">✅</a><a href="maintainers/index.html"> How to become a Maintainer</a></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/249">❌ How to become an Administrator</a></li>
|
||||
<li><a href="runtheblog/index.html">✅ How to run the blog yourself</a></li>
|
||||
<li><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/153">✅</a><a href="runtheblog/index.html"> How to run the blog yourself</a></li>
|
||||
</ol></br>
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -71,6 +71,7 @@
|
|||
<li><p>Host OS: <a href="../linux/index.html">Linux</a></p></li>
|
||||
<li><p>Hypervisor: <a href="../hypervisorsetup/index.html">QEMU/KVM</a></p></li>
|
||||
</ol>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/160">git issue</a> directly!</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
|
|
@ -66,6 +66,7 @@
|
|||
<p>In this tutorial we will setup a local mail server (to be able to keep control of our data), we will make it available publicly (so that it can communicate with other mail servers), but we'll make it go through TOR to guarantee Anonymity. </p>
|
||||
<p>Note that this setup involves self-hosting, <a href="../sensitiveremotevshome/index.html">which I do not recommend if the service is supposed to be sensitive</a>. If this is an issue for you, just install it on a <a href="../anonymousremoteserver/index.html">non-KYC remote VPS</a> and skip the port-forwarding part if you don't want to host it at your house.</p>
|
||||
<img src="0.png" class="imgRz">
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/114">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -64,6 +64,7 @@
|
|||
<h1>How to become a Maintainer </h1>
|
||||
<img src="0.png" class="imgRz">
|
||||
<p>Becoming a Maintainer is the next step to contribute to the Opsec blog and Darknet Lantern projects, where you get to assist the other contributors contribute just like you did. The requirement is simple: <b>You should have contributed at least 3 times, having submitted contributions that were already nearly finished (95%) in one go.</b> If you are still submitting contributions that are 75% finished in one go, you are not ready to become a maintainer yet, maintainers are supposed to know the quality standard perfectly, to be able to enforce it <a href="https://www.youtube.com/watch?v=jJuNQeG9Irc&t=4m14s">when doing contribution reviews</a>, therefore i expect that they show that they understand it.</p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/203">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -72,6 +72,8 @@
|
|||
<li><p>Virtual Machine: <a href="../hypervisorsetup/index.html">Linux</a> or <a href="../whonixqemuvms/index.html">Whonix</a> or <a href="../tailsqemuvm/index.html">Tails</a> </p></li>
|
||||
</ol>
|
||||
<p>I recommend using this setup into one of the above mentioned VMs, either for <a href="../privacy/index.html">Private use</a>, or <a href="../anonymityexplained/index.html">Anonymous use</a>, as per the <a href="../opsec4levels/index.html">4 basic OPSEC levels</a>.</p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/52">git issue</a> directly!</p>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
|
|
@ -64,6 +64,7 @@
|
|||
<h1>Monero Node Setup </h1>
|
||||
<img src="0.png" style="width:250px">
|
||||
<p>In this tutorial we're going to take a look at how to setup a monero node </p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/103">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -63,6 +63,8 @@
|
|||
<a href="../index.html">Previous Page</a></br></br><p><img src="../../assets/img/user.png" width="50px" height="50px"> <ba>XMRONLY - 2025 / 01 / 29</ba></p>
|
||||
<h1>Monero Inheritence Management (VaultWarden Emergency Contacts)</h1>
|
||||
<img src="0.png" style="width:100px">
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/48">git issue</a> directly!</p>
|
||||
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -69,6 +69,7 @@
|
|||
<figure>
|
||||
<img src="0.png" style="width:250px">
|
||||
<figcaption>Figure 4.7 from <a href="https://masteringmonero.com/">Mastering Monero</a></figcaption>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/104">git issue</a> directly!</p>
|
||||
</figure>
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -104,6 +104,7 @@ With the influx of new users placing orders, you might want to consider high ava
|
|||
|
||||
<p>In this guide, we will configure MySQL <b>Master-Master</b> replication over Tor. In this configuration, each database acts as both <b>Master</b> and <b>Slave</b>, automatically replicating queries between them via a Tor connection.</p>
|
||||
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/188">git issue</a> directly!</p>
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
|
|
|
@ -68,6 +68,7 @@
|
|||
<p>Nextcloud is an indispensable tool for productivity, as you're going to see:</p>
|
||||
<img src="graph.png" class="imgRz">
|
||||
<p>What we are trying to achieve here, is <b>a setup where we can have a single folder synchronized on multiple devices,</b> so that any change done from any of those devices, to that same folder, gets to be automatically shared and synchronized accross all of the other devices aswell. And of course, we're going to achieve that while maintaining our anonymity, by routing all traffic through Tor. </p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/233">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -63,7 +63,7 @@
|
|||
<a href="../index.html">Previous Page</a></br></br><p><img src="../../assets/img/user.png" width="50px" height="50px"> <ba>oxeo0 - 2025 / 02 / 26</ba></p>
|
||||
<h1>OnionBalance for .onion domains load balancing</h1>
|
||||
<img src="0.png" class="imgRz">
|
||||
<p> </p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/207">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -66,6 +66,9 @@
|
|||
|
||||
<img src="0.png" class="imgRz">
|
||||
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/15">git issue</a> directly!</p>
|
||||
|
||||
|
||||
<p>OnionShare can easily be installed on various Linux distributions (by following the offical instructions at <a href="https://onionshare.org/#download">https://onionshare.org/#download</a>). For Debian-based distro's (including <a href="https://www.whonix.org/">Whonix</a>), simply run the following apt command in a terminal:</p>
|
||||
|
||||
<pre><code class="nim">
|
||||
|
|
|
@ -62,6 +62,8 @@
|
|||
<div class="col-lg-8 col-lg-offset-2">
|
||||
<a href="../index.html">Previous Page</a></br></br><p><img src="../../assets/img/user.png" width="50px" height="50px"> <ba>user@Whonix - 2024-05-26</ba></p>
|
||||
<h1>Phone Numbers are incompatible with Anonymity</h1>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/14">git issue</a> directly!</p>
|
||||
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -76,6 +76,7 @@
|
|||
</ol>
|
||||
<p>Let's take all those threat vectors into account, and setup our homeserver with the following physical security setup:</p>
|
||||
<img src="0.png" class="imgRz">
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/33">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -72,6 +72,7 @@ regarding wear leveling:
|
|||
"Also as mentioned earlier, disabling Trim will reduce the lifetime of your SSD drive and will significantly impact its performance over time (your laptop will become slower and slower over several months of use until it becomes almost unusable, you will then have to clean the drive and re-install everything). But you must do it to prevent data leaks that could allow forensics to defeat your plausible deniability. The only way around this at the moment is to have a laptop with a classic HDD drive instead."
|
||||
|
||||
</pre></code>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/132">git issue</a> directly!</p>
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -63,6 +63,7 @@
|
|||
<a href="../index.html">Previous Page</a></br></br><p><img src="../../assets/img/user.png" width="50px" height="50px"> <ba>nihilist@mainpc - 2025-03-22</ba></p>
|
||||
<h1>The Quality Standard </h1>
|
||||
<p>In this tutorial we're going to look at what the quality standard is, to be able to submit good quality tutorials to the blog. <b>We do not consider tutorials that don't follow that standard to be acceptable.</b></p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/200">git issue</a> directly!</p>
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
|
|
|
@ -79,6 +79,7 @@
|
|||
<p>The reason behind this stems from <a href="../../productivity/sum-nihil/index.html">Sum Nihil</a>, where i strongly believe that it doesn't matter who does the work, who gets the fame, who gets to profit off of it, <b>what truly matters is that the work gets done</b>, no matter who does it.</p>
|
||||
<p>Here, <b>the work is to make sure that everyone out there knows that when using the right technology in the right way, they cannot be oppressed, silenced, censored, controlled, and governed anymore.</b> If you can help me reach that goal i'm definitely going to welcome it, even if it means to allow other people to run the blog.</p>
|
||||
<p>The entire blog is meant to remain available for free, for everyone, over clearnet and over the Tor network. Ideally i'd like it to be resillient to takedowns in the case if something were to happen to me in the future. <b>Therefore, the more people run the blog themselves, the more resillient it will become, and the farther the word will be able to go out there.</b> </p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/153">git issue</a> directly!</p>
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
|
|
|
@ -81,6 +81,7 @@
|
|||
<li><p>Making sure you can't be traced back as the owner/administrator of the server</p></li>
|
||||
</ol>
|
||||
<p>Out of those requirements, we have 2 possibilities as to where you can run a sensitive service.</p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/177">git issue</a> directly!</p>
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
|
|
|
@ -75,6 +75,7 @@
|
|||
<li><p>Harddrive (HDD): 500GB and encrypted with <a href="../veracrypt/index.html">Veracrypt (with a 250Gb Hidden Volume)</a></p></li>
|
||||
<li><p>Virtual Machine:<a href="../whonixqemuvms/index.html">Whonix</a></p></li>
|
||||
</ol>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/256">git issue</a> directly!</p>
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
|
|
|
@ -64,6 +64,7 @@
|
|||
<h1>Other sources of Plausible Deniability: Steganography</h1>
|
||||
|
||||
<p>Steganography is the craft of hiding messages. It is a close relative of cryptography, but where cryptography strives to conceal the contents of a messages, steganography attempts to conceal its <i>presence</i>. Therefore <b>steganography helps avoiding suspicion and providing deniability</b>.</p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/45">git issue</a> directly!</p>
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
|
|
|
@ -63,6 +63,7 @@
|
|||
<h1>Hiding files in images with steghide</h1>
|
||||
<a href="../index.html">Previous Page</a></br></br><p><img src="../../assets/img/Zesc.jpg" width="50px" height="50px"> <ba>Zesc - 2024-08-30</ba></p>
|
||||
<p>steghide is a mature GPL-licensed CLI tool for hiding arbitrary data inside of of image files (and some archaic audio formats). Its official web presence is located at <a href="https://steghide.sourceforge.net/">https://steghide.sourceforge.net/</a>. it conceals data inside a larger coverfile in a way that is indistinguishable to first-order statistical analysis. This means there is are anomalies in the file histogram, making most pictures innocuous <b>without having the original image to compare it to.</b></p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/46">git issue</a> directly!</p>
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
|
|
|
@ -72,6 +72,9 @@
|
|||
<li><p>Virtual Machine: <a href="../hypervisorsetup/index.html">Linux</a> or <a href="../whonixqemuvms/index.html">Whonix</a> or <a href="../tailsqemuvm/index.html">Tails</a> </p></li>
|
||||
</ol>
|
||||
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/13">git issue</a> directly!</p>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -82,6 +82,9 @@ It is highly recommended to use whonix for this setup, because there are always
|
|||
|
||||
|
||||
<p></p>
|
||||
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/16">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
|
|
|
@ -76,6 +76,8 @@
|
|||
|
||||
<p>I recommend using this setup for <a href="../anonymityexplained/index.html">Anonymous use</a> if you store anything into the persistent storage, <b>or for short-term <a href="../deniability/index.html">Sensitive use</a> if you are not storing anything sensitive in the persistent storage</b>, as per the <a href="../opsec4levels/index.html">4 basic OPSEC levels</a>.</p>
|
||||
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/92">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
|
|
|
@ -65,6 +65,8 @@
|
|||
<img src="../logo.png" class="imgRz">
|
||||
<p> Before we start, you will need a Debian VPS (you can get one on digitalocean for example), if you prefer to use your own self hosted server, make sure that port 80 and 443 are correctly port forwarded so that the public ip points to the server and not the router. Once that's done, go and ssh into your Debian server. </p>
|
||||
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/100">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
|
|
|
@ -81,6 +81,8 @@ If you are still motivated to get your own exit node, keep the phone number of a
|
|||
<img src="../relay/country.png" class="imgRz">
|
||||
<p><u>Disclaimer:</u> <b>Do not host your Tor node in Germany, Netherlands or in the US, as there are already too many nodes in those countries.</b> Try to run your own Tor nodes in countries that have the least nodes preferably, as this will help keeping the Tor network decentralized.</p>
|
||||
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/102">git issue</a> directly!</p>
|
||||
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -70,6 +70,8 @@
|
|||
<p>Now regarding the choice of location for the server, in order to make sure that Tor remains decentralised, make sure that you are picking a country that doesn't have many tor nodes (see the <a href="https://metrics.torproject.org/bubbles.html#country">bubbles graph</a>):</p>
|
||||
<img src="country.png" class="imgRz">
|
||||
<p><u>Disclaimer:</u> <b>Do not host your Tor node in Germany, Netherlands or in the US, as there are already too many nodes in those countries.</b> Try to run your own Tor nodes in countries that have the least nodes preferably, as this will help keeping the Tor network decentralized.</p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/101">git issue</a> directly!</p>
|
||||
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -73,6 +73,8 @@
|
|||
<li><p>Application: <a href="../vpn/index.html">VPN</a> (if your ISP doesn't allow Tor traffic) </p></li>
|
||||
</ol>
|
||||
<p>I recommend using this setup into one of the above mentioned VMs, for <a href="../anonymityexplained/index.html">Anonymous use</a>, as per the <a href="../opsec4levels/index.html">4 basic OPSEC levels</a>.</p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/90">git issue</a> directly!</p>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
@ -85,7 +87,7 @@
|
|||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-8 col-lg-offset-2">
|
||||
<h2><b>Initial Setup </b></h2>
|
||||
<h2><b>Setting up the Tor Browser on your Desktop</b></h2>
|
||||
<p>If you have a regular debian distribution, do as follows to install the tor browser:</p>
|
||||
<pre><code class="nim">
|
||||
[ mainpc ] [ /dev/pts/5 ] [~]
|
||||
|
@ -240,6 +242,87 @@ extraction percent done: 100 / 100
|
|||
</div><!-- /white -->
|
||||
<!-- +++++ Footer Section +++++ -->
|
||||
|
||||
|
||||
<!-- +++++ Second Post +++++ -->
|
||||
<div id="anon3">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-8 col-lg-offset-2">
|
||||
<h2><b>Setting up the Tor Browser on your Mobile</b></h2>
|
||||
<p><h2><u>OPSEC Recommendations: </u></h2></p>
|
||||
<ul>
|
||||
<li><p>Hardware: Google Pixel</p></li>
|
||||
<li><p>Host OS: <a href="../graphene/index.html">Graphene OS</a></p></li>
|
||||
<li><p>Configuration: Can be set in the Private or Anonymous Profile</p></li>
|
||||
</ul>
|
||||
<br></br>
|
||||
<h2><b>Initial Download and Setup </b></h2>
|
||||
<p>You can download Tor Browser for Android from F-Droid (as we want to maintain the open source requirement), using the Guardian Repository, or the apk directly from the official Tor website. Please do not download it from any other source. There have been malicious versions passed around on social media in the past.</p>
|
||||
|
||||
<img src="../MobileTor/11.png" style="width:250px;">
|
||||
<img src="../MobileTor/12.png" style="width:250px;">
|
||||
<img src="../MobileTor/13.png" style="width:250px;">
|
||||
<img src="../MobileTor/14.png" style="width:250px;">
|
||||
<img src="../MobileTor/15.png" style="width:250px;">
|
||||
<img src="../MobileTor/16.png" style="width:250px;">
|
||||
<img src="../MobileTor/17.png" style="width:250px;">
|
||||
<img src="../MobileTor/18.png" style="width:250px;">
|
||||
<img src="../MobileTor/19.png" style="width:250px;">
|
||||
<img src="../MobileTor/20.png" style="width:250px;">
|
||||
<img src="../MobileTor/21.png" style="width:250px;">
|
||||
|
||||
<p>Note: To download from F-Droid you will have to enable Guardian Project Repositories under settings → My Apps → Guardian Project (guardianproject.info/fdroid/repo)</p>
|
||||
|
||||
<p>When you open the Tor app for the first time you will be greeted with this screen:</p>
|
||||
<br></br>
|
||||
<img src="../MobileTor/1.png" style="width:350px;">
|
||||
<br></br>
|
||||
<p>We'll do some slight configuration changes, starting with the automatic connection and then open settings:
|
||||
<i>toggle auto → settings</i>
|
||||
<br></br>
|
||||
<img src="../MobileTor/2.png" style="width:350px;">
|
||||
<br></br>
|
||||
<p>In settings, scroll down to Privacy and security. Open Security Level:</p>
|
||||
|
||||
<br></br>
|
||||
<img src="../MobileTor/3.png" style="width:350px;">
|
||||
<br></br>
|
||||
<p>Choose Safest for maximum security</p>
|
||||
<img src="../MobileTor/4.png" style="width:350px;">
|
||||
<br></br>
|
||||
<p>Additionally in settings you can choose the Default search engine and to use (.onion) sites if you prefer.</p>
|
||||
<img src="../MobileTor/5.png" style="width:350px;">
|
||||
<br></br>
|
||||
<p>And you are done, you should now be at the start page:</p>
|
||||
<br></br>
|
||||
<img src="../MobileTor/6.png" style="width:350px;">
|
||||
<br></br>
|
||||
<p>If your connection is being censored or you are unable to connect to the Tor network then you may have to configure a bridge. Choose “Config Bridge” on the opening screen or under settings:</p>
|
||||
<br></br>
|
||||
<img src="../MobileTor/7.png" style="width:350px;">
|
||||
<br></br>
|
||||
<p>Toggle “Use a Bridge” to open up three options: "obfs4", "meek-azure", and "snowflake".</p>
|
||||
<ol>
|
||||
<li><p>Obfs4 is a pluggable transport that makes Tor traffic look random and also prevents censors from finding bridges by Internet scanning. </p></li>
|
||||
<li><p>Meek-Azure is a pluggable transport that makes it look like you are browsing a Microsoft web site instead of using Tor.</p></li>
|
||||
<li><p>Snowflake involves a large number of volunteer proxies, which also makes them hard to pin point and prevents the blocking of proxy IP addresses.</p></li>
|
||||
</ol>
|
||||
<p>Additionally you can provide a trusted bridge to use if you know one.</p>
|
||||
<br></br>
|
||||
<p><h2><u>Closing: </u></h2></p>
|
||||
<ol>
|
||||
<li><p>Orfox is a sunsetted privacy focused web browser based on Tor. It is no longer maintained and is not recommended.</p></li>
|
||||
<li><p>Orbot is a proxy app that allows other apps on your device to encrypt your internet traffic through Tor. After installing Orbot go to Choose apps under settings in order to route the apps of your choice through Tor.</p></li>
|
||||
<li><p>Currently there is no official Tor browser available for iOS on iPhone. Using Orbot with the open source Onion Browser is better than nothing but does not have the same privacy protections as Tor Browser. Use at your own risk.</p></li>
|
||||
</ol>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
</div><!-- /white -->
|
||||
|
||||
<div id="anonb">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
|
|
|
@ -85,6 +85,7 @@ Today, many websites use JavaScript to fetch and store data via APIs, dynamicall
|
|||
<p>
|
||||
The main drawback of this approach is that website content can only be updated by reloading the page since each page is server-side rendered using a PHP interpreter.
|
||||
</p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/187">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -76,6 +76,8 @@
|
|||
<p>Using Tor means you are employing Decentralisation, <img src="../ce0.png">by using it you are placing your trust into 3 random entities (which can be individuals, companies or adversaries), in 3 different legislations (due to being in 3 different countries), rather than in one centralized entity, hence providing Anonymity on the IP layer. <img src="../on0.png"></p>
|
||||
<p>There is always a low probability of risk, where if you are unlucky and tor circuits go through 3 nodes that are hosted by the same malicious entity, leading to deanonymization. <img src="../on2.png"></p>
|
||||
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/260">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
|
|
|
@ -63,6 +63,8 @@
|
|||
<a href="../index.html">Previous Page</a></br></br><p><img src="../../assets/img/user.png" width="50px" height="50px"> <ba>nihilist@mainpc - 2024-04-30</ba></p>
|
||||
<h1>The main source of Anonymity: The Tor Network </h1>
|
||||
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/88">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
|
|
|
@ -64,6 +64,7 @@
|
|||
<h1>Hidden Service with custom .onion Vanity V3 address </h1>
|
||||
<img src="../hiddenservice/2.png" class="imgRz">
|
||||
<p>In this tutorial we'll setup a Hidden Service with custom .onion Vanity V3 address, we'll set it up using nginx and Tor. </p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/156">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -85,6 +85,7 @@ regarding wear leveling:
|
|||
<li><p>Packages: <a href="../linux/livemode.html">grub-live and ram-wipe</a></p></li>
|
||||
</ol>
|
||||
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/255">git issue</a> directly!</p>
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -62,7 +62,8 @@
|
|||
<div class="col-lg-8 col-lg-offset-2">
|
||||
<a href="../index.html">Previous Page</a></br></br><p><img src="../../assets/img/user.png" width="50px" height="50px"> <ba>nihilist@mainpc - 2024-08-08</ba></p>
|
||||
<h1>Route QEMU VMs through a Host OS VPN </h1>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/260">git issue</a> directly!</p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/94">git issue</a> directly!</p>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
|
|
@ -83,6 +83,8 @@
|
|||
</ol>
|
||||
<p>I recommend using this setup into one of the above mentioned VMs, for <a href="../anonymityexplained/index.html">Anonymous use</a>, as per the <a href="../opsec4levels/index.html">4 basic OPSEC levels</a>.</p>
|
||||
<p><u>Sidenote:</u> If your ISP does not allow Tor traffic, make sure that you <a href="../vpnqemu/index.html">route the QEMU VMs traffic through a VPN</a>, to hide the tor traffic from your ISP (You -> VPN -> Tor) Setup</p>
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/54">git issue</a> directly!</p>
|
||||
|
||||
|
||||
</div>
|
||||
</div><!-- /row -->
|
||||
|
|
|
@ -75,6 +75,8 @@
|
|||
<p>I recommend using this setup into one of the above mentioned VMs, for <a href="../anonymityexplained/index.html">Anonymous use</a>, as per the <a href="../opsec4levels/index.html">4 basic OPSEC levels</a>.</p>
|
||||
<p><u>Sidenote:</u> If your ISP does not allow Tor traffic, make sure that you <a href="../vpnqemu/index.html">route the QEMU VMs traffic through a VPN</a>, to hide the tor traffic from your ISP (You -> VPN -> Tor) Setup</p>
|
||||
|
||||
<p><img src="../logos/daturagit.png" style="width:100px"> <u>Sidenote:</u> Help us improve this tutorial by letting us know if there's anything missing or incorrect on this <a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions/issues/93">git issue</a> directly!</p>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue