The ptrace() system call provides a means by which a parent process may observe and control the execution of another process, and examine and change its core image and registers.
0
votes
0answers
31 views
Ptrace GETREGS return NULL registers
I tried this code (from http://www.linuxjournal.com/article/6100?page=0,1) :
#include <sys/ptrace.h>
#include <sys/reg.h>
#include <sys/types.h>
#include <sys/wait.h>
#include ...
0
votes
0answers
9 views
Disable ptrace on debian
Is there a way to disable ptrace on debian.
I would like to see if there is something similar to what is done here for ubuntu: http://software.intel.com/en-us/forums/topic/375990
0
votes
1answer
29 views
Finding start of main function with ptrace
I have a file scope kernel extension that informs a daemon when an application is launched. The daemon is required to pause the launched application at the beginning of its first instruction in ...
0
votes
1answer
14 views
ptrace(PTRACE_CONT) cannot resume just-attached processes
I am writing a program that needs to attach to other processes (which might be created by a previous instance of my program) and watch when they terminate.
If I keep my program running during the ...
1
vote
1answer
41 views
ptrace abnormal values returned in the registers
I've got an assignment and i have to use ptrace to trace the system calls of an application.
The problem is that when i am running the program it gives me some uncommon values, that i obtain from the ...
0
votes
1answer
47 views
Getting a zombie process after a ptrace signal sent
I am testing ptrace and signals.
The problem is that when I am forwarding a signal with sigaction and then senting the interrupt signal to the process via kill(pid, SIGKILL) and after the ...
1
vote
1answer
76 views
Why SIGINT is send to a child processand does nothing?
I am building a simple debugger for my university class and I have a problem in handling SIGINT.
What I want to do is when the debugger process (from now on PDB) takes a SIGINT signal passes that to ...
0
votes
2answers
40 views
Process stopped if executed in background
Below given code(process1) is similar to actaul scanrio. Im updating the global_data from another application using process id of the process1.
Because of getchar() in process1, when I run this ...
2
votes
1answer
66 views
Counting syscalls of a program and checking validity of the results with strace
I am using ptrace to count the syscalls of a program.
The problem is that given a program A, my program prints out the number of the syscalls made (open, close, read, write).
The results of my ...
2
votes
2answers
77 views
Check if an memory address is within the current process's stack space
I'm adding a feature to my debugger (I'm using Ptrace to manipulate the traced process as well as libbfd/libopcodes) to unwind the stack and determine if discrepancies exist between each CALL's ...
0
votes
0answers
26 views
Decoding ptrace Registers
I'm wondering where in the contents/members of
`struct user_regs_struct ur`
which is filled in by a call to
ptrace(PTRACE_GETREGS, pid, 0, &ur); // get registers
I can extract the ...
1
vote
1answer
61 views
why does ptrace singlestep return a too big instruction count when statically linking it?
So, I've already read this article Counting machine instructions of a process using PTRACE_SINGLESTEP, and i understand that dynamically linking a testprogram to my ptrace program will return an ...
0
votes
1answer
81 views
c, how to get the offset for for thread local variables using ptrace command?
Here we are trying to modify our own version of GDB to support multi-threaded environment.
Till now I could able to read the data associated with registers with respect to every thread but need to ...
0
votes
1answer
86 views
Can't attach child process in release build (Android)
I try to fork and then trace my child by calling ptrace(PTRACE_ATTACH, iChildPid, 0, 0) on Android:
- and get success when working with a debug build
- and get failure with a release build ...
-2
votes
1answer
133 views
Strength of anti-debugging technique [closed]
Having used to debug with tools like gdb etc, I have little knowledge about they get implemented. I am trying to implement an anti debugging technique in my program but having very little knowledge ...
0
votes
0answers
70 views
Tracing all threads spawned by a process
I am struggling to understand the behaviour of ptrace when the treaced process t1 invoke clone() and fork () and spawns another thread t2. According to the documentation t1 is stopped by the kernel ...
0
votes
1answer
147 views
Return value of mmap when using ptrace
I was learning how to use ptrace and I faced a strange problem:
I wrote a program:
#include <cstdio>
#include <sys/mman.h>
#include <string.h>
#include <errno.h>
int main()
...
4
votes
2answers
184 views
How can I read the memory of a process in python in linux?
I'm trying to use python and python ptrace to read the memory of an external process. I need to work entirely in python, and I've been trying to read and print out the memory of a process in linux.
...
0
votes
0answers
94 views
Memory debugger with ptrace
I would like to expand an existing tool with the functionality of a memory debugger (just leak detection).
I know that some memory debuggers work by replacing malloc/free and keeping track of what ...
4
votes
1answer
214 views
Tracing syscalls of a process and all forked processes
I'm using ptrace to trace the syscalls of a process. After forking the process, I use PTRACE_TRACEME to start trace the the process. The code looks like this:
while (true) {
int status;
int ...
0
votes
1answer
262 views
How to use ptrace(2) to change behaviour of syscalls?
Are there any guides or examples (especially ARM ones) or libraries of using ptrace to affect execution of other process? For example, to make it believe that some data is appeared on file descriptor ...
4
votes
1answer
228 views
Using ptrace from multithreaded applications
I want to use ptrace to check what system calls a program spawned by my program makes. I started out from this tutorial as it was explained in an answer to my previous question. I modified the code by ...
0
votes
1answer
175 views
Ptrace and memory allocation
I have been playing a while with ptrace. I followed some tutorials like this one or this one. So far, when I have a ptrace-d child process, I am able to:
Detect system calls and browse the ...
7
votes
2answers
212 views
How to prevent a system call from being executed with ptrace
I'm working on a Ideone-like system where untrusted user code must run in sandboxed mode.
For this I've been looking the possibilities of ptrace for a first layer of protection. However, after a few ...
0
votes
1answer
98 views
Why this ptrace error?
I'm just testing read and write memory via ptrace() call, but when I run the code shown below, I got an error like this.
Processkey() : 0x80481240
readmem pid 3950
Original opcode : 0x4641682b
...
0
votes
1answer
142 views
linux ptrace() get function information
i want to catch information from user defined function using ptrace() calls.
but function address is not stable(because ASLR).
how can i get another program's function information like gdb ...
1
vote
2answers
369 views
Read/Write memory on OS X 10.8.2 with vm_read and vm_write
This is my code that works only on Xcode (version 4.5):
#include <stdio.h>
#include <mach/mach_init.h>
#include <mach/mach_vm.h>
#include <sys/types.h>
#include ...
-3
votes
2answers
192 views
Linux user-space ELF loader after fork extremely strange behavior
Consider the following code (revisited to compile due to public demand :):
#include <assert.h>
#include <signal.h>
#include <stdio.h>
#include <syscall.h>
#include ...
1
vote
2answers
206 views
C and execve(3) arguments
I'm working on a project that basically does the same thing as strace(1) using ptrace(). Basically we have a controller.c program that takes an executable as an argument and it outputs any system ...
0
votes
0answers
133 views
Is it possible to use PTRACE_SETREGS to change the execution sequence of a process?
Is it possible to use PTRACE_SETREGS to change the execution sequence of a process?
I'm saving the process register file at a point of the process execution and I want to use it later to set the ...
3
votes
1answer
321 views
Is utrace project dead?
I was trying to use stap to trace a userspace executable, as advised by this answer:
http://stackoverflow.com/a/324709/368507
To do this, kernel must have utrace patch, but i can't find any utrace ...
4
votes
1answer
536 views
Cancel a system call with ptrace()
For some security purpose, I use ptrace to get the syscall number, and if it's a dangerous call (like 10 for unlink), I want to cancel this syscall.
Here's the source code for the test program del.c. ...
0
votes
1answer
115 views
ptrace with request PTRACE_POKETEXT fails
i'm trying to inject code in a traced process...i'm able to read correctly registers (PTRACE_GETREGS) and also PTRACE_PEEKTEXT works...i've verified with GDB. However if i call ptrace with ...
1
vote
1answer
215 views
how to get correct orig_eax value when stopped in syscall?
I'm attaching to a process with ptrace(PTRACE_ATTACH...) while it is in a syscall (like nanosleep()). I can use PTRACE_GETREGS to get the register contents, and eip is at expected location (in ...
1
vote
0answers
103 views
Why does this sendmsg() call I injected via ptrace not work?
I am trying to inject commands into a process I own - specifically, I'm currently trying to pass a file descriptor of the ptraced process to the ptracing process. I successfully created a unix domain ...
0
votes
0answers
70 views
ptrace watchpoint on register
I am writing a C-Program with some debugging functionality.
I need to set a breakpoint on register access of the ptraced process.
What is the best way to do that?
3
votes
1answer
336 views
(ORIG_EAX*4) in ptrace calls
I was going through an article here and was trying out the code snippet I have copied out below :-
#include <sys/ptrace.h>
#include <sys/types.h>
#include <sys/wait.h>
#include ...
1
vote
3answers
1k views
How to trace a process for system calls?
I am trying to code a program that traces itself for system calls. I am having a difficult time making this work. I tried calling a fork() to create an instance of itself (the code), then monitor the ...
0
votes
2answers
518 views
Reading ELF String Table on Linux from C
I want to write a program which reads the string table of a binary. Binary is in ELF running on REDHAT linux 32.
I did the following -
Read the Elf Header
Read all the sections
Below is the ...
0
votes
1answer
122 views
Why does strace following a different execution flow?
I am referring the following article learning symbolic link attacks:
struct stat st;
FILE * fp;
if (argc != 3) {
fprintf (stderr, "usage : %s file message\n", argv [0]);
...
2
votes
1answer
196 views
Get the return value with ptrace using SINGLESTEP
I'm working on a little debugger under Linux 64bits and I'm having trouble looking for syscall's return value,
I'm testing RIP value, I mean I do a PEEK_USERDATA and ptrace give me the opcode in ...
4
votes
2answers
249 views
CreateRemoteThread in Linux
I am using CreateRemoteThread in Windows and would like to know if the same thing is possible in Linux. Is it possible to do this in Linux?
1
vote
0answers
80 views
PT_CONTINUE returns 'Operation not supported' on iOS
I want writer a small debugger using ptrace on iOS jailbreaking.
Now i could attach the other process successfully,but then 'PTRACE(PT_CONTINUE, m_tid, (caddr_t)1, data)' always returns 'Operation ...
3
votes
1answer
813 views
ptrace_detach, SIGINT and trace/breakpoint trap (core dumped)
I'm trying to trace a program while it is running: with ptrace(PTRACE_ATTACH, ...), ptrace(PTRACE_SINGLESTEP, ...), etc..
Everything seems to be fine, but when I quit my tracing program with CTRL-C, ...
0
votes
3answers
292 views
How to get a char* with ptrace
I am currently developing a tool in which I have to trace a program to know his system calls. For the moment, I am able to get numeric parameters of syscalls but I can't get properly address to the ...
0
votes
0answers
142 views
Capturing the arguments of execve system call
I am trying to use ptrace and capture the arguments that are getting passed to a execve system call. But when I use PTRACE_GETREGS and try to get the arguments for SYS_execve I am getting 0 for all ...
1
vote
1answer
87 views
What are ‘I Space’ and ‘D Space’ on osx and the difference between them
In sys/ptrace.h, i saw something like:
@define PT_READ_I 1 /* read world in child's I space*/
@define PT_READ_D 2 /* read world in child's D space*/
@define PT_READ_U 3 /* read world in child's ...
0
votes
1answer
351 views
ptrace PTRACE_ATTACH failure - Linux permissions of user owned process
Why do I need to run as root (not r00t_)?
// main()
scan.scanProcessOffset(10838, 0x7f8c14000000); // proper pid and offset
void MemoryMapper::scanProcessOffset(unsigned int procId, unsigned long ...
1
vote
1answer
576 views
Retrieving system calls with Ptrace, stopping after first one
I am trying to retrieve all of the numbers of system calls and eventually the names of the system calls called by a give program using ptrace. I am on a 64 bit system so I am using the ORIG_RAX * 8 ...
0
votes
1answer
175 views
Linux C++ ptrace — Map all cells of a child processes memorys
I have a linked list similar to this:
class MemoryCell
{
protected:
unsigned char* _address; // the address offset (in another process)
unsigned int _size; // the size of this memory block
...
