Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
2 votes
1 answer
2k views

../sysdeps/i386/i686/multiarch/strcpy.c: No such file or directory

I'm trying to debug a program with gdb and when I set a breakpoint and continue on the strcpy() function. I get the following response: frinto@kali:~/Documents/theclang/programs/helloworld$ gcc -fno-...
user avatar
1 vote
3 answers
2k views

return to libc works in gdb but not when running alone

I am trying return to libc trick with the following simple code: #define SYSTEM_CALL_ADDR 0xb7ec5e50 /*my system call addr*/ #define EXIT_CALL_ADDR 0xb7ebbb80 /*my exit call addr*/ char shell[] = ...
iceagle's user avatar
  • 1,537