SSH
Info
This note is still in development.
Overview¶
SSH tunneling or SSH port forwarding is a method of creating an encrypted SSH connection between a client and a server machine through which services ports can be relayed.
Usage¶
SOCKS Proxy (Tunneling)¶
On our attacker, modify the last line of /etc/proxychains4.conf
to utilize SOCKS5, and take note of the proxy port.
sudo nano /etc/proxychains4.conf
Below is one of the simplest and most straight forward tunnelling methods, useful for when you have SSH credentials to a box.
# Terminal 1: Establish a tunnel into the network
ssh <user>@<ip_address> -p <ssh_port> -D <proxy_port>
# Terminal 2: Proxy commands through victim
proxychains -q <command>
This will start an ssh
tunnel and allow us to tunnel commands through the SOCKS5 proxy using proxychains
.
Visual Diagram:
flowchart LR
A(Attacker<br>10.10.1.5)
B{Client 1<br>SSH -> 10.10.1.10:22<br>192.168.1.10}
C(Client 2<br>192.168.1.11)
D(Client 3<br>192.168.1.12)
E(Client 4<br>192.168.1.13)
A --> | Step 1:<br>10.10.1.5 -> 10.10.1.10:22 | B
A --> | Step 2:<br>SOCKS Proxy | B
B --> C
B --> D
B --> E
(Note: in the above example, the attacker established an SSH
tunnel with Client 1. This allows the attacker to now reach Clients 2-4 through proxychains
.)
Port Forwarding¶
Uhhhh....