Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
2k views

Python port forwarding/multiplexing server

I would like to make server that listen on UDP port 162 (SNMP trap) and then forwards this traffic to multiple clients. Also important is that the source port & address stays same (address ...
6
votes
2answers
2k views

Packet mangling utilities besides iptables?

I'm looking for a linux utility that can alter the payloads of network packets based on a set of rules. Ideally, I'd use iptables and the netfilter kernel module, but they don't support generic ...
1
vote
1answer
290 views

Packet modification with netfilter queue?

I'm currently trying to use codes with libnetfilter_queue in userspace to modify packets that were queued in the NFQUEUE target in iptables. However I have little idea as to how to go about doing it. ...
1
vote
0answers
61 views

Can Winsock LSP on a router modify forwarded packets?

If a Windows machine acts like a router (gateway) for others, will Winsock LSP filters that are installed on it be able to capture/mangle traffic of those machines? If no, which technologies are ...
1
vote
1answer
450 views

LSP packet modify

anybody care to share some insights on how to use LSP for packet modifying ? I am using the non IFS subtype and I can see how (pseudo?) packets first enter WSPRecv. But how do I modify them ? My ...
1
vote
2answers
247 views

Library to Perform Link-Layer Packet Modification

Is there a library out there that will allow me to perform link-layer packet modification for both incoming and outgoing packets? Basically I want to do some transformations to a packet (for eg. ...
0
votes
0answers
50 views

Reinjecting packets

I'm trying to reroute packets using libnetfilter. So far I can send the packets to NFQUEUE and can modify the packet using the libnetfilter API (From the INPUT table). However I don't have any idea on ...
0
votes
2answers
1k views

Issue reading packets from a pcap file. dpkt module. What gives?

I am running the following test script to try to read packets from a sample .pcap file I have downloaded. It won't seem to run. I have all of the modules, but no examples seem to be running. import ...