The Wayback Machine - https://web.archive.org/web/20201013044822/https://github.com/topics/scapy
Skip to content
#

scapy

Here are 259 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 scapy 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 scapy topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.