Tagged Questions
4
votes
2answers
524 views
Counting machine instructions of a process using PTRACE_SINGLESTEP
on a Linux machine, I am using ptrace with the PTRACE_SINGLESTEP parameter to count the number of machine instructions of a program. I followed this article: ...
4
votes
1answer
1k views
Is there something like linux ptrace syscall in Windows XP/2003?
Reading http://stackoverflow.com/questions/864839/monitoring-certain-system-calls-done-by-a-process I'm wondering about a Windows equivalent to the ptrace syscall or a programatically workaround.
I ...
3
votes
3answers
1k views
can you use multiple threads to ptrace an application?
I am writing a GUI oriented debugger which targets Linux primarily, but I plan ports to other OSes in the future. Because the GUI must stay interactive at all times, I have a few threads handling ...
1
vote
2answers
432 views
Looking for a way to trap CPUID instructions
I am looking for a neat way to trap and fiddle with the CPUID instruction of Linux processes. Played around with ptrace() and patching all cpuid opcodes in all executable mmap'ed regions that are ...
0
votes
0answers
24 views
Behaviour of traced process (ptrace) depending on parent process further execution
I'm currently trying to program a debugger in C usin ptrace() syscall on Linux Mint (I know it's unefficient to use ptrace but for the sake of practice ... )
Now here is the situation ->
I've forked ...
0
votes
1answer
269 views
ptrace attach to vsftpd hangs
I am trying to ptrace a vsftpd server process on linux to be able to get control whenever vsftpd process makes a system call. I start the vsftpd process and pass this process id as command line to the ...