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
- Host: GitHub
- URL: https://github.com/zubux/pyfuzzer
- Owner: zuBux
- License: apache-2.0
- Created: 2015-11-12T17:17:35.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-11-14T11:46:07.000Z (over 10 years ago)
- Last Synced: 2025-04-12T02:52:04.827Z (about 1 year ago)
- Topics: fuzzing, python, zzuf
- Language: Python
- Size: 0 Bytes
- Stars: 5
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```