Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Croc | 22,163 | 2 days ago | 132 | May 18, 2022 | 107 | mit | Go | |||
Easily and securely send things from one computer to another :crocodile: :package: | ||||||||||
Masscan | 20,782 | 9 days ago | 1 | February 27, 2018 | 381 | other | C | |||
TCP port scanner, spews SYN packets asynchronously, scanning entire Internet in under 5 minutes. | ||||||||||
Wait For It | 8,267 | 4 months ago | September 23, 2022 | 75 | mit | Python | ||||
Pure bash script to test and wait on the availability of a TCP host and port | ||||||||||
Sish | 3,265 | 1 | a month ago | 34 | November 12, 2021 | 7 | mit | Go | ||
HTTP(S)/WS(S)/TCP Tunnels to localhost using only SSH. | ||||||||||
Openwrt Shadowsocks | 2,988 | 2 years ago | 1 | gpl-3.0 | Makefile | |||||
Shadowsocks-libev for OpenWrt/LEDE | ||||||||||
Server | 2,644 | 2 months ago | 75 | mit | JavaScript | |||||
server for localtunnel.me | ||||||||||
Kubernetes Security Best Practice | 2,323 | 4 years ago | 10 | apache-2.0 | ||||||
Kubernetes Security - Best Practice Guide | ||||||||||
Slipstream | 1,764 | 3 months ago | 5 | Perl | ||||||
NAT Slipstreaming allows an attacker to remotely access any TCP/UDP services bound to a victim machine, bypassing the victim’s NAT/firewall, just by anyone on the victim's network visiting a website | ||||||||||
Tcpflow | 1,367 | a year ago | 1 | February 27, 2018 | 61 | gpl-3.0 | C++ | |||
TCP/IP packet demultiplexer. Download from: | ||||||||||
Edumeet | 1,089 | 2 days ago | 4 | February 02, 2022 | 64 | mit | JavaScript | |||
edumeet - multiparty web-meetings using mediasoup and WebRTC |
Tcptunnel is a simple TCP port forwarder. Please see http://www.vakuumverpackt.de/tcptunnel/ for details and binary downloads.
$ tcptunnel --help
Usage: tcptunnel [options]
Options:
--version
--help
--local-port=PORT local port
--remote-port=PORT remote port
--remote-host=HOST remote host
--bind-address=IP bind address
--client-address=IP only accept connections from this IP address
--buffer-size=BYTES buffer size
--fork fork-based concurrency
--log
--stay-alive
$ git clone https://github.com/vakuum/tcptunnel.git
$ cd tcptunnel
$ ./configure
$ make
$ ./tcptunnel --version
$ ./tcptunnel --help
You will need the Command Line Tools for Xcode to build tcptunnel under Mac OS X.
$ uname -mrs
Darwin 12.5.0 x86_64
$ git clone https://github.com/vakuum/tcptunnel.git
$ cd tcptunnel
$ ./configure --prefix=/usr/bin
$ make
$ ./tcptunnel --version
$ ./tcptunnel --help
$ file tcptunnel
tcptunnel: Mach-O 64-bit executable x86_64
Thanks to Edward Samson's pull request, you can also use Homebrew to install tcptunnel under Mac OS X.
$ uname -mrs
Darwin 12.5.0 x86_64
$ brew --version
0.9.5
$ brew update
$ brew info tcptunnel
$ brew install tcptunnel
$ tcptunnel --version
$ tcptunnel --help
$ file $(which tcptunnel)
/usr/local/bin/tcptunnel: Mach-O 64-bit executable x86_64
You will need the Cygwin environment for Windows from http://www.cygwin.com/ with the following additional packages installed:
$ uname -a
CYGWIN_NT-6.1-WOW64 computer 1.7.25(0.270/5/3) 2013-08-31 20:39 i686 Cygwin
$ git clone git://github.com/vakuum/tcptunnel.git
$ cd tcptunnel
$ ./configure
$ make
$ ./tcptunnel --version
$ ./tcptunnel --help
$ file tcptunnel.exe
tcptunnel.exe: PE32 executable (console) Intel 80386, for MS Windows
You will need MinGW32 to cross-compile tcptunnel. Please see http://www.mingw.org/ for more details. If you are using a Debian-based distribution then you will need to install the following packages:
$ apt-get install mingw32 mingw32-binutils mingw32-runtime
$ git clone https://github.com/vakuum/tcptunnel.git
$ cd tcptunnel
$ ./configure
$ make -f Makefile.MinGW32
$ file tcptunnel.exe
tcptunnel.exe: PE32 executable (console) Intel 80386, for MS Windows
Note: The MinGW32-based version does not support the fork-based concurrent client handling. If you need this feature under Windows, then you should use the Cygwin-based version.
See ChangeLog.
Copyright (c) 2000-2021 Clemens Fuchslocher, released under the GPL.