A coverage-guided fuzzer for Python and Python extensions based on libFuzzer
91
A fuzzing harness for testing JSON parsing functionality with selective module instrumentation.
json module from instrumentation to avoid affecting the standard library @test@generates
The fuzzer must instrument imported application modules while excluding standard library modules. All imports that need instrumentation must occur after instrumentation is configured.
def TestOneInput(data: bytes) -> None:
"""
Fuzzing entry point that tests JSON parsing.
Args:
data: Raw bytes from the fuzzer to be tested
"""
passProvides Python fuzzing capabilities with import instrumentation support.
Install with Tessl CLI
npx tessl i tessl/pypi-atherisevals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10