From 483bd7baf029f86ff977034a058a47905c58e318 Mon Sep 17 00:00:00 2001 From: FrenchDeepWeb <83371540+frenchdeepweb@users.noreply.github.com> Date: Tue, 15 Jun 2021 16:37:17 +0000 Subject: [PATCH] Updated Privacy and Anonymity (markdown) --- Privacy-and-Anonymity.md | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/Privacy-and-Anonymity.md b/Privacy-and-Anonymity.md index 0c12151..fdfdc90 100644 --- a/Privacy-and-Anonymity.md +++ b/Privacy-and-Anonymity.md @@ -63,6 +63,37 @@ https://serverfault.com/questions/139870/stop-ssh-client-from-offering-all-the-p Dangerous features to enable in OpenSSH Client while connecting to servers:
https://unix.stackexchange.com/questions/106595/myth-or-reality-selinux-can-confine-the-root-user
+# Use Tor for Hide your IP or accessing Tor onion service host: + +- Install Tor and netcat on your computer: + +Follow the official Tor documentation to install Tor: + https://support.torproject.org/apt/#apt-1 + +Then use your package manager for installing netcat +``` +apt install netcat-openbsd +``` + +- Create a config file in $HOME/.ssh +``` +touch $HOME/.ssh/config +``` + +Edit the config file and put this inside: + +``` +Host + hostname + user + IdentityFile +``` + +Then you can connect to the onion host with the command: +`ssh ` +You are now connected to the onion chat server at with the username using the key + + # Page TODO: - Explain Threat modeling - Link to opsec resources @@ -74,4 +105,5 @@ https://unix.stackexchange.com/questions/106595/myth-or-reality-selinux-can-conf - Investigate openssh client features
- read ssh manpage
- read ssh_config manpage
-- Word ForwardX11 and ForwardAgent better \ No newline at end of file +- Word ForwardX11 and ForwardAgent better +