netfilter

以下是为您整理出来关于【netfilter】合集内容,如果觉得还不错,请帮忙转发推荐。

【netfilter】技术教程文章

Linux netfilter Hacking HOWTO

Next Previous ContentsLinux netfilter Hacking HOWTO Rusty Russell and Harald Welte, mailing list netfilter@lists.samba.org $Revision: 521 $ $Date: 2002-07-02 06:07:19 +0200 (mar, 02 jul 2002) $This document describes the netfilter architecture for Linux, how to hack it, and some of the major systems which sit on top of it, such as packet filtering, connection tracking and Network Address Translati...

python-使用Scapy和NetFilter队列接收自定义协议数据包【代码】

我正在做一个项目,其中涉及使用包含某些特定字段的自定义层填充数据包.我设法使用这里的指南做到这一点: http://www.secdev.org/projects/scapy/doc/build_dissect.html 该指南非常适用于如何构建和发送具有自定义层的数据包,但不适用于如何接收它们. 我有一个包装的形式:IP()/CustomLayer()/ICMP()然后我将此数据包发送到另一个主机,该主机将使用python的netfilter队列和scapy库接收该数据包. 我的问题是,如何接收传入的包含自定...