repository
0.0.0-20240806114651-bdc012c12ef9
Repository: https://github.com/veids/forwardlib.git
Documentation: pkg.go.dev
# README
Usage examples
Start/stop socks server
#by default targets 127.0.0.1:1080
fwdctrl socks add
fwdctrl socks rm
#custom host:port
fwdctrl socks add -l 127.0.0.1:1090
fwdctrl socks rm -l 127.0.0.1:1090
Start/stop reverse port forwarding
fwdctrl reverse add -l 127.0.0.1:8445 -r 127.0.0.1:8445
fwdctrl reverse rm -l 127.0.0.1:8445 -r 127.0.0.1:8445
List configured endpoints
fwdctrl list
List files
fwdctrl ls .
fwdctrl ls '/c:/'
List files by mask
fwdctrl glob '/c:/*.dll'
Download a file
fwdctrl get '/c:/my_file.exe'
Download files by mask
fwdctrl get_glob '/c:/*.dll'