You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a type of programs whose behaviour depend to which name they are. busybox is a good example, only one file is real ELF file and others are just symlink to it.
In this scenario, it's important for fuzzer to keep the original ELF filename, otherwise desired program behaviour will not be triggered and fuzzed.
I want to fuzz infotocap, which is a symlink to tic
But tfuzz actually runs: (which means it has been renamed to infotocap_tfuzz)
There is a type of programs whose behaviour depend to which name they are.
busyboxis a good example, only one file is real ELF file and others are just symlink to it.In this scenario, it's important for fuzzer to keep the original ELF filename, otherwise desired program behaviour will not be triggered and fuzzed.
I want to fuzz
infotocap, which is a symlink toticBut tfuzz actually runs: (which means it has been renamed to
infotocap_tfuzz)Could you consider this type of program? Thanks~