An open API service indexing awesome lists of open source software.

https://github.com/zubux/pyfuzzer

Quick 'n' dirty file format fuzzer utilizing zzuf mutation techniques
https://github.com/zubux/pyfuzzer

fuzzing python zzuf

Last synced: 10 months ago
JSON representation

Quick 'n' dirty file format fuzzer utilizing zzuf mutation techniques

Awesome Lists containing this project

README

          

# pyfuzzer
A file-format fuzzer for Windows, utilising [pyZZUF] (https://github.com/nezlooy/pyZZUF) for input mutation and [WinAppDbg] (http://winappdbg.sourceforge.net/) for crash detection. It was created for demostrational purposes, for the second part of a tutorial on basic fuzzing concepts which was never completed.

## Usage

pyfuzzer expects the following options:

* -i : Input testcase folder
* -t : Target filetype. Searches the input folder for a matching testcase
* -p : Path of the target executable

Example :

```
python pyfuzzer.py -i C:\Users\user\testcases -t mp4 -p C:\Program Files\TargetPlayer\player.exe
```