software fuzzer-Collection of common programming errors
fuzzer, security, input, fieldould like to make a software fuzzer but I don’t exactly how.
What I want to do os that I want to open the a program with my fuzzer and the fuzzer should find the all the functions on the application that takes input and then try to write a string that I provide the fuzzier with at the beginning.
The fuzzer should write that string in all input functions in the program and it should notify me when the program crashes because of a specific input in a function. For example, when the fuzzier injected a long string of A’s into a field called artist name, and the program crashed, I want to get an output that has in it the field name the value. That caused the crash and the report of windows if provided.
I know the application so big bit just give me some main steps I should read about or some API’s I should use. I will write the program with C#. I can also write it with C++ and python but I think it would be easier on C#. What do you think guys?