
* Update sugar to new things * Fixes * tiny * fix qemu * Fix cmplog * taplo fmt * Fix cmplog forkserver sugar, clippy * clip * clip
10 lines
256 B
Python
10 lines
256 B
Python
import pylibafl.sugar as sugar
|
|
import ctypes
|
|
import platform
|
|
|
|
print("Starting to fuzz from python!")
|
|
fuzzer = sugar.InProcessBytesCoverageSugar(
|
|
input_dirs=["./in"], output_dir="out", broker_port=1337, cores=[0, 1]
|
|
)
|
|
fuzzer.run(lambda b: print("foo"))
|