isstac / kelinci

AFL-based fuzzing for Java
Apache License 2.0
231 stars 53 forks source link

build a driver #14

Closed xlpgit closed 5 years ago

xlpgit commented 5 years ago

I want to know how to "build a driver".

yannicnoller commented 5 years ago

Hi @xlpgit, have you checked the examples in the repository? The main methods in the example classes represent the drivers. They parse the input file and call the actual method of interest in the application. Writing a driver is not difficult, it just means to have these two parts (input parsing and application calling).

Best, Yannic