gpt4 book ai didi

linux - 使用 netcat (nc) 作为 HTTP 代理服务器和监视器

转载 作者:IT王子 更新时间:2023-10-29 00:22:52 55 4
gpt4 key购买 nike

是否可以使用Unix netcat(nc)程序创建TCP代理服务器和监控?我希望所有 TCP 流量都通过管道传递,并发送到 stdout 进行监控。请注意,这将用于监视硬件设备和 HTTP 服务器之间的 HTTP 流量。

最佳答案

昨天刚好有需要。您可以在这里找到答案(法语):http://www.linux-france.org/~mdecore/linux/doc/memo2/node168.html

mknod backpipe p
nc -l -p 80 < backpipe | tee -a in | nc localhost 8080 | tee -a out.html > backpipe

它在端口 80 上监听并在端口 8080 上重定向。传入流量将出现在 in 文件中,传出流量将出现在 out.html 文件中。命名管道需要双向连接。

关于linux - 使用 netcat (nc) 作为 HTTP 代理服务器和监视器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4053876/

55 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com