A proxy server that performs connection forwarding with the IP: PORT initially entered by the client
- run server
- client tcp connect to server
- send ip:port after connection
- server will forward it to ip:port
> set GOOS=Windows
> go Build
> GoSimpleForwardingServer.exe -sp <recive port> -target <ip:port>
ex) GoSimpleForwardingServer.exe -sp 8080 -target 127.0.0.1:5555
> GOOS=linux
> go Build
> chmod 755 GoSimpleForwardingServer
> ./GoSimpleForwardingServer -sp <recive port> -target <ip:port>
ex) ./GoSimpleForwardingServer -sp 8080 -target 127.0.0.1:5555