美文网首页
服务器上监听 获取HTTP请求全文 linux/windows

服务器上监听 获取HTTP请求全文 linux/windows

作者: 极客圈 | 来源:发表于2017-09-14 09:35 被阅读0次

    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请求包

    相关文章

      网友评论

          本文标题:服务器上监听 获取HTTP请求全文 linux/windows

          本文链接:https://www.haomeiwen.com/subject/pwmrsxtx.html