代码搜索:execve

找到约 549 项符合「execve」的源代码

代码结果 549
www.eeworm.com/read/159132/10692377

c shellcode.c

#include int main ( int argc, char * argv[] ) { char * name[2]; name[0] = "/bin/sh"; name[1] = NULL; execve( name[0], name, NULL ); }
www.eeworm.com/read/275885/10786806

c execvel.c

/*************** //name : execvel.c //author : pyy //date : 2007-11-22 **************/ #include #include #include int main() { char *args[]={"/bin/ls",NULL}; execv
www.eeworm.com/read/419410/10870284

makefile

CC=gcc CFLAGS=-Wall -g -DDEBUG LDFLAGS= LIBS= all: daemon diffork env execve fork2 fork3 fork getpid mynice myshell processimage studyuid wait daemon: daemon.c $(CC) -o $@ $(LDFLAGS) $^ $(L
www.eeworm.com/read/445043/7600226

html 380.html

_syscall3
www.eeworm.com/read/445043/7600374

html 370.html

_exit
www.eeworm.com/read/445043/7600648

html 84.html

lib/execve.c
www.eeworm.com/read/300969/13876049

c _exec.c

#include #define execl _execl #define execle _execle #define execv _execv #define execve _execve #define sbrk _sbrk #include #include #include #
www.eeworm.com/read/147331/5732794

c execle.c

/* execle.c */ /* This and the other exec*.c files in this directory require the target to provide the _execve syscall. */ #include #include #ifdef _HAVE_STDC #include
www.eeworm.com/read/124347/6052240

c execle.c

/* execle.c */ /* This and the other exec*.c files in this directory require the target to provide the _execve syscall. */ #include #include #ifdef _HAVE_STDC #include
www.eeworm.com/read/119864/6081575

c execv.c

#include int execv(__const char *path, char *__const argv[]) { return execve(path, argv, __environ); }