jwilk / python-afl

American Fuzzy Lop fork server and instrumentation for pure-Python code
https://jwilk.net/software/python-afl
MIT License
350 stars 33 forks source link

Provide py-afl-cmin #6

Closed jabdoa2 closed 7 years ago

jabdoa2 commented 7 years ago

Would it be possible to have a python wrapper for afl-cmin as well? This would be very useful for effective fuzzing.

jwilk commented 7 years ago

So bare afl-cmin doesn't work, because it naively checks the binary for instrumentation:

[-] Error: binary '/usr/bin/python' doesn't appear to be instrumented.

I added py-afl-cmin in 5b773d706015b7d4a53d60ff0407aa21b35e632b.

jwilk commented 7 years ago

Fixed in python-afl 0.6.

jabdoa2 commented 7 years ago

Thanks