内网连通性判断
ICMP
1 | ping ip |
TCP
1 | nc -zv ip |
HTTP
1 | curl -vv <ip:port> |
DNS
1 | nslookup <domain> <dns> |
SOCKS代理
NPS
https://github.com/ehang-io/nps
FRP
https://github.com/fatedier/frp
Venom
https://github.com/Dliv3/Venom
感觉这个项目挺好的,可惜不知道为什么Ubuntu版本跑不起。如果光是Win或者CentOS还是挺好用
IOX
https://github.com/EddieIvan01/iox
比EW和LCX好用
建立Socks5方法
配合proxychains和proxifier使用
上线机器
开启Socks5的监听
1 | iox proxy -l 8888 |
VPS
开启监听转发流量9999=>8888
1 | iox proxy -l 9999 -l 8888 |
上线机器
执行转发
1 | iox proxy -r <vps-ip>:9999 |
- Socks5代理地址
1 | <vps-ip>:8888 |
网络层隧道
ICMP
传输层隧道
应用层隧道
SSH
HTTP/HTTPS
DNS
__END__