An open API service indexing awesome lists of open source software.

https://github.com/avahidi/frwd

"frwd" is a tiny TCP/IP port-forwarder written in Go.
https://github.com/avahidi/frwd

golang network network-security security-tools

Last synced: 5 months ago
JSON representation

"frwd" is a tiny TCP/IP port-forwarder written in Go.

Awesome Lists containing this project

README

          

FRWD
====

"frwd" is a tiny TCP/IP port-forwarder written in Go.

Useful when you want to forward a service but don't have root access or can't bother with iptables.

Install::

go install github.com/avahidi/frwd@latest

Usage::

# forward TCP 0.0.0.0:8080 <--> 127.0.0.1:80
frwd :8080 127.0.0.1:80

# one-way forward UDP localhost:5300 -> 8.8.8.8:53
frwd -u localhost:5300 8.8.8.8:53

# forward TCP with regex filtering of source
frwd -filter example.com :8080 127.0.0.1:80