vusec / vuzzer64

This implements a 64-bit version of vusec/vuzzer fuzzing tool.
Apache License 2.0
175 stars 51 forks source link

can vuzzer fuzzing a binary whose input is given by command line? #28

Closed lzyxdu closed 1 year ago

lzyxdu commented 1 year ago

Suppose I have a binary BIN and a input file IP1, and command to run BIN is : ./BIN IP1 I follow the command given by wikiHOWTO.md: python runfuzzer.py -s '/PATH_TO_vuzzer-code/bin/BIN %s IP1' -i 'datatemp/IPs/' -w 'idafiles/BIN.pkl' -n 'idafiles/BIN.names' -o '0x00000000' It seems vuzzer keeps using IP1 as input all the time. So, can vuzzer fuzzing a binary whose input is given by command line? If vuzzer can, how to do that?

lzyxdu commented 1 year ago

I think %s is the placeholder for input file.