通过向 iptables 添加规则来实现 UDP MITM

发布于 2024-09-27 08:38:08 字数 405 浏览 1 评论 0原文

C++ UDP Socket端口复用中,我发现使用DNAT PREROUTING,我可以重定向特定 UDP 端口的数据包并侦听该端口上收到的数据包。

iptables -t nat -A PREROUTING -i <iface> -p <proto> --dport <dport>
    -j REDIRECT --to-port <newport>

不幸的是,这仅适用于在此端口接收的数据包。如何获取从此端口发送的数据包

In C++ UDP Socket port multiplexing, I found that using DNAT PREROUTING, I can redirect the packets for a particular UDP port and listen to packets being received on it.

iptables -t nat -A PREROUTING -i <iface> -p <proto> --dport <dport>
    -j REDIRECT --to-port <newport>

Unfortunately this works ONLY for packets received at this port. How can I get the packets being sent from this port?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文