psyscall icon indicating copy to clipboard operation
psyscall copied to clipboard

Linux syscall() injection

Results 2 psyscall issues
Sort by recently updated
recently updated
newest added

``` [[email protected]:[PL]:/mnt/storage/home/kmeaw/psyscall]$ make cc -g -Wall -std=c89 -pedantic -c -o psyscall.o psyscall.c psyscall.c:21:43: error: dereferencing pointer to incomplete type ‘struct user’ #define PT_REGS (sizeof(((struct user *)0)->regs)/sizeof(unsigned long)) ^ psyscall.c:29:12: note:...

I want to adapt your code to a static linked executable. I see why you want to use libc for your project (portability). However I was wondering if there is...