I would like to be able to fork child processes off (another arbitrary program), then pass syscalls to them with syscall(&SYS_x). From my understanding syscall will play with the parent process, but I need it on the child. I need to be able to use a lot of them, because I am writing a syscall fuzzer. Does anybody know how I can do this in perl? I've seen it done in C, with a program called trinity, but it doesn't have the functionality that I would like.
Thanks,
Marshall
(p.s. sorry if I am posting in the wrong section, I'm a newb to the forums.)