Skip to content
#

packet-capture

Here are 150 public repositories matching this topic...

sarcasticmonkeys
sarcasticmonkeys commented Sep 8, 2020

If you call fuzz on a layer that contains a PacketField, that fuzz does not recurse down into a PacketField within the layer

class Foo(Packet):
    name='Foo'
    fields_desc=[
        int64("bar"),
    ]
    def extract_padding(self, s):
        return b'', s
        
class demo(Packet):
    name="demo"
    fields_desc = [ PacketField(name="foo",default=Foo(),cls=Foo)]
inst

Improve this page

Add a description, image, and links to the packet-capture topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the packet-capture topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.