A Tunnel which Turns UDP Traffic into Encrypted UDP/FakeTCP/ICMP Traffic by using Raw Socket,helps you Bypass UDP FireWalls(or Unstable UDP Environment)
Go to file
2017-07-19 09:11:28 +08:00
aes.c add encryption files 2017-07-19 00:52:33 +08:00
aes.h add encryption files 2017-07-19 00:52:33 +08:00
encryption.cpp everything works except anti-replay window 2017-07-19 06:05:08 +08:00
encryption.h add encryption files 2017-07-19 00:52:33 +08:00
LICENSE.md 7.11 commit 2017-07-11 18:01:11 +08:00
main.cpp anti-replay,but not fully safe 2017-07-19 09:11:28 +08:00
makefile everything works except anti-replay window 2017-07-19 06:05:08 +08:00
README.md Update README.md 2017-07-14 07:01:53 -07:00

udp-to-raw-tunnel

udp-to-raw-tunnel (udp to tcp with fake tcp header)

#usage

client: -A INPUT -s 44.55.66.77/32 -p tcp -m tcp --sport 9999 -j DROP

./raw -l 127.0.0.1:6666 -r44.55.66.77:9999 -c --source-ip 192.168.1.100

server: -A INPUT -p tcp -m tcp --dport 9999 -j DROP

./raw -l44.55.66.77:9999 -r 127.0.0.1:5555 -s