Updated Privacy and Anonymity (markdown)

FrenchDeepWeb 2021-06-15 16:37:17 +00:00
parent a1f696f0a3
commit 483bd7baf0

@ -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: <br/>
https://unix.stackexchange.com/questions/106595/myth-or-reality-selinux-can-confine-the-root-user <br/>
# 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 <alias>
hostname <hostname.onion>
user <username>
IdentityFile </path/to/your/key>
```
Then you can connect to the onion host with the command:
`ssh <alias>`
You are now connected to the onion chat server at <hostname.onion> with the username <username> using the key <path/to/your/key>
# Page TODO:
- Explain Threat modeling
- Link to opsec resources
@ -75,3 +106,4 @@ https://unix.stackexchange.com/questions/106595/myth-or-reality-selinux-can-conf
- read ssh manpage<br/>
- read ssh_config manpage<br/>
- Word ForwardX11 and ForwardAgent better