-
Notifications
You must be signed in to change notification settings - Fork 91
timeout support #7
Comments
Open a file, dup stdin, copy the payload of the harness each time to the file, call the routine that takes the fd as input. frida-fuzzer is an API fuzzer, use the same tricks valid for a libFuzzer harness. |
I can do it in c, but have difficult to do it in javascript. C code: lseek(0, 0, SEEK_SET); |
well, I use LD_PRELOAD to use the c lib. It seems that the frida-fuzzer doesn't support timeout? I saw my target function hang there without exit. |
Yeah timeouts are not already implemented. WIP |
in js you have the frida-fs lib to interact with the filesystem |
I introduced a partial solution with 188d9c1. |
Hi,
AFL programs normally read input from stdin, is it possible for the frida-fuzzer to spawn the program on host and write to the stdin on target in order the test program can continue from read(0...)?
The text was updated successfully, but these errors were encountered: