cpytraceafl icon indicating copy to clipboard operation
cpytraceafl copied to clipboard

CPython bytecode instrumentation and forkserver tools for fuzzing pure python and mixed python/c code using AFL

Results 3 cpytraceafl issues
Sort by recently updated
recently updated
newest added

Is there any steps to install or setup the tool. When I run the examples there are some error"ModuleNotFoundError: No module named 'cpytraceafl'" ,but I can't pip install cpyctraceafl. And...

i read "rewriter.py" source code, "builtins.compile" confused me ``` @functools.wraps(original_compile) def rewriting_compile(*args, **kwargs): ... builtins.compile = rewriting_compile ``` what i understand at first is "compile function has been hooked, when...

I was looking at tracehook_line_trace_hook in _tracehookmodule.c - the instrumentation you are doing is overly complex and therefore is very, very time consuming. if the bytecode offset is something that...