Chisel – Tool Portforwarding

This post is for explain chisel in his basic state, used to create a server and client to allow portforwarding between two machines.

Tool: Chisel Github

Concept of Chisel Client-Server

Commands for Windows and Linux

Server: chisel server -reverse -port [PortNum]

Client: chisel [AttackerIP]:[PortNum] [VictimIP/Loopback]:[PortNumVictim]

Example

PoC: Linux IP: 10.0.2.10 Windows IP: 10.0.3.10

Linux machine command: ./chisel server -reverse -port 8888
Windows machine command: chisel.exe client 10.0.2.10:8888 127.0.0.1:443