[Python-Dev] Play with fuzzing (original) (raw)

"Martin v. Löwis" martin at v.loewis.de
Mon Jul 7 06:38:48 CEST 2008


I wrote a fuzzing "framework" called Fusil and this week I wrote a fuzzer for Python. The idea is quite simple: for a module, - list all functions, classes and class methods - call a function with random arguments (of random types) - instanciate a class with random arguments - if the class is created correctly, call methods with random arguments

I was already wondering how you found out all these things. It's quite amazing!

Thanks, Martin



More information about the Python-Dev mailing list