I need to pickle a scapy packet. Most of the time this works, but sometimes the pickler complains about a function object. As a rule of thumb: ARP packets pickle fine. Some UDP packets are problematic.
|
feedback
|
|
My solution (as inspired by the scapy mailing list) is as follows:
Anywhere I wish to pass a | |||
feedback
|
|
(This is more for reference, so no votes expected) The Scapy list scapy.ml@secdev.org is well-monitored and tends to be very responsive. If you don't get answers here, try there as well. | |||||||
feedback
|
|
If by pickle you mean generically serialize you can always use the pcap import/export methods: rdpcap and wrpcap.
Or you could start up your process and grab the packets in another process. If there is some pattern you can match, say a known port or source IP tcpdump will work:
You can then read the generated pcap in as above:
| |||||||||||
feedback
|
|
You can monkeypatch the
| |||||||
feedback
|
|
I've tested everything and I finally decided to go for a trimmed down version of the Picklable solution. I create a tuple with the [pkt.time,str(packet)] I shuffle around my tasks... | |||
feedback
|
|
Helmut, Try exporting the packet to a string by simply
Then pickle the string in the normal way Later unpickle the string to retrieve the string Lastly turn the string back into a packet making sure you start the packet with the first layer Ether() or IP() or whatever..
Let me know how it works out.. dc | ||||
|
feedback
|
multiprocessingmodule. It requires objects to be pickleable if you want to transfer them through aQueue. – Helmut Nov 16 '10 at 12:22