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-08-05 17:31:07 +08:00
aes.c trival 2017-08-04 17:19:40 +08:00
aes.h trival 2017-08-04 17:19:40 +08:00
common.cpp refactor 2017-08-05 10:03:40 +08:00
common.h refactor 2017-08-05 10:03:40 +08:00
encrypt.cpp trival 2017-08-04 21:59:29 +08:00
encrypt.h changed iptables -A to -I, auth_mode: simple 2017-08-04 21:46:49 +08:00
LICENSE.md 7.11 commit 2017-07-11 18:01:11 +08:00
log.cpp added about to exit 2017-08-04 23:08:45 +08:00
log.h auto add iptables rule, fixed Wformat warnings 2017-08-04 17:12:23 +08:00
main.cpp -g option,better log 2017-08-05 17:31:07 +08:00
makefile auto add iptables rule, fixed Wformat warnings 2017-08-04 17:12:23 +08:00
md5.c trival 2017-08-04 17:19:40 +08:00
md5.h added md5.c 2017-07-25 01:55:30 +08:00
network.cpp changed iptables -A to -I, auth_mode: simple 2017-08-04 21:46:49 +08:00
network.h auto add iptables rule, fixed Wformat warnings 2017-08-04 17:12:23 +08:00
README.md trival 2017-07-26 18:53:40 +08:00

udp2raw-tunnel

udp2raw 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