Can anyone tell me how to see which system calls were executed in the program?
Printable View
Can anyone tell me how to see which system calls were executed in the program?
What program? What OS? Your question is a little generic there...
Sparc solaris 2.7
I am trying to analyze a buffer overflow exploit. One of my tasks is to generate a list of system calls that a normal program generated and a list of system calls that the exploit generated. The problem is that i have no clue how to find out which system calls were executed and in which order.
truss <process id> or
truss <path to execute>
Verrrrrry helpful ....
Neb