A simple DFF (differential fuzzing framework).
This fuzzer framework only supports Linux and macOS, not Windows. This is because it uses Unix Domain Sockets and Shared Memory segments for interprocess communication.
There are two limits whcih must be increased to support 100 MiB segements.
shmmax-- the max shared memory segment size.shmall-- total shared memory size in pages.
sudo sysctl -w kernel.shmmax=104857600
sudo sysctl -w kernel.shmall=256000sudo sysctl -w kern.sysv.shmmax=104857600
sudo sysctl -w kern.sysv.shmall=256000See the examples.
See the examples.