mirror of
https://github.com/shazow/ssh-chat.git
synced 2025-06-14 22:32:22 +03:00
Updated Privacy and Anonymity (markdown)
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
|
||||
@ -74,4 +105,5 @@ https://unix.stackexchange.com/questions/106595/myth-or-reality-selinux-can-conf
|
||||
- Investigate openssh client features<br/>
|
||||
- read ssh manpage<br/>
|
||||
- read ssh_config manpage<br/>
|
||||
- Word ForwardX11 and ForwardAgent better
|
||||
- Word ForwardX11 and ForwardAgent better
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user