linux
在服务器上使用nc 获取发来的http请求:get/post/...
ncat -lvp 80
或
nc -l -v -p 80
在客户机上用浏览器访问该ip
默认即80端口
Connection from 101.200.172.135:46688
GET / HTTP/1.1
Host: 104.194.81.181
Connection: keep-alive
Accept-Encoding: gzip, deflate
Accept: */*
User-Agent: python-requests/2.9.0
缺点:nc可能无法对http请求包进行响应(无法发送响应包)。
改进方案:使用tshark
windows
建站后,可用wireshark抓到http请求包
网友评论