fuzzing: tools for stress testing arbitrary applications.
------------------------------------------------------------

Stress testing of applications can be done in lots of different ways.
This package provides an easy to use tool to stress test applications which 
take files
as parameters. Editors, image viewers, and many more classes of apps come to 
mind.

The stress test is based on a given set of files, binary or text. Those files 
are taken
randomly and some bytes are modified also randomly (fuzzing). Then the 
application gets
executed with the fuzzed file. Repeating this over and over again stresses the 
robustness
for defective input data of the application.

Tutorial and API documentation can be found on ReadTheDocs: 
http://fuzzing.readthedocs.org/.

fuzzing works with Python 3 (3.3, 3.4, and PyPy3 tested).

What's new?
--------------

Now you can run your tests in multiple processes. Test results are combined and 
printed.


New features:

* Run multiple tests in parallel on multiple processors. Number of processors 
and processes is configurable.
* Test statistics of the processes are merged and printed.

API changes:

* FuzzExecutor.stats returns an instance of TestStatCounter, not a simple dict 
anymore.

You may want to look into TestStatCounter and Status.
See also run_fuzzer.py for intended usage.

-------------------------------------------------------------------

Have fun breaking your apps ;-)

Regards,
Stefan
-- 
https://mail.python.org/mailman/listinfo/python-announce-list

        Support the Python Software Foundation:
        http://www.python.org/psf/donations/

Reply via email to