diff --git a/opsec/anonymous_server_monitoring/index.html b/opsec/anonymous_server_monitoring/index.html index d5ed52e..5051de6 100644 --- a/opsec/anonymous_server_monitoring/index.html +++ b/opsec/anonymous_server_monitoring/index.html @@ -204,12 +204,43 @@
+sudo systemctl stop tor #stop the tor service
+
+mkdir -p /var/lib/tor/auth_keys #create the client auth keys folder to store our second layer of authentication
+chmod 400 -R /var/lib/tor/auth_keys #set restrictive file permissions
+chown tor:tor -R /var/lib/tor/auth_keys # make tor owner of this folder
+
+vi /etc/tor/torrc #edit the torrc file to add content
+
+systemctl start tor #restart tor
+systemctl status tor #check that everything works
+
+
+and add the content below:
+
AutomapHostsSuffixes .onion,.exit
DataDirectory /var/lib/tor
diff --git a/opsec/anonymous_server_monitoring/install.png b/opsec/anonymous_server_monitoring/install.png
new file mode 100644
index 0000000..f53caaa
Binary files /dev/null and b/opsec/anonymous_server_monitoring/install.png differ