[Python-Dev] Play with fuzzing (original) (raw)
"Martin v. Löwis" martin at v.loewis.de
Mon Jul 7 06:38:48 CEST 2008
- Previous message: [Python-Dev] Play with fuzzing
- Next message: [Python-Dev] __module__ not found on ported Python
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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
- Previous message: [Python-Dev] Play with fuzzing
- Next message: [Python-Dev] __module__ not found on ported Python
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]