3.1 要过滤出我们要的信息 需要稍为了解socks5协议,大体上流程:1.socks5 client与socks5 server 的特定port建立连接。2.client告诉server 欲连结的host的 IP 和 Port,由server 向 host 建立连结。3.此后只要client send server 什么,server就send host 什么;server从host recv 什么,client 就从server recv什么,socket协议不会额外包装讯息。
3.2 Capture Filter:(src 192.168.23.1 and src port 10800 and dst 192.168.23.2) or (src 192.168.23.2 and dst 192.168.23.1 and dst port 10800) ,说明: 192.168.23.2 是 android端IP,192.168.23.1是电脑IP,10800是socks5 server的port。Capture Filter语法很直观,src代表 source ip ; dst代表 destination ip
src dst
APP -----------------> socks5 server
IP 定值 IP 定值
port 不定 port 定值
因此 (src 192.168.23.2 and dst 192.168.23.1 and dst port 10800)
_______________________________________________________
src dst
socks5 server -----------------> APP
IP 定值 IP 定值
port 定值 port 不定
因此 (src 192.168.23.1 and src port 10800 and dst 192.168.23.2)