pynetfilter_conntrack icon indicating copy to clipboard operation
pynetfilter_conntrack copied to clipboard

Python binding of libnetfilter_conntrack

Results 7 pynetfilter_conntrack issues
Sort by recently updated
recently updated
newest added

I experience a segfault with pynetfilter_conntrack, reproducible with: ```sh $ python -c "import pynetfilter_conntrack; pynetfilter_conntrack.Conntrack()" ``` Since issue #4 is specific regarding the call to catch() I believe this is...

This patch allow filter connections by given networks when getting dump. i.e. ``` ct = pynetfilter_conntrack.Conntrack() ft = pynetfilter_conntrack.Filter() ft.select_networks = [IPy.IP('127.0.0.1')] for item in ct.dump_table(filter=ft)[0]: item.destroy() ```

pynetfilter_conntrack can be installed with pip3. ```sh $ sudo pip3 install pynetfilter_conntrack Collecting pynetfilter_conntrack Installing collected packages: pynetfilter-conntrack Successfully installed pynetfilter-conntrack-0.7 $ ``` The installed files are identical to what...

As described in the subject, contrack.catch() segfaults with libnetfilter_conntrack 1.0.5 and version 0.6 of the egg. It occurs with the provided example events.py and conntrack.py, too.

Hi, I have cloned your project and want to use it. However, I'm stuck in using Filter. For example, in case I want to get the result like: "conntrack -L...

Pull request rework based on regit comments.

Attempts to fix Issue#4 (successfull) for the python native library. There is however still missing fixes: - Help the user to pass some of the c library parameters properly (by...