代码搜索:execve
找到约 549 项符合「execve」的源代码
代码结果 549
www.eeworm.com/read/354175/3079346
lds i386-linux.elf.execve-fold.lds
/* i386-linux.elf.execve-fold.lds --
This file is part of the UPX executable compressor.
Copyright (C) 2000-2007 John F. Reiser
All Rights Reserved.
UPX and the UCL library are free sof
www.eeworm.com/read/354175/3079364
s i386-bsd.elf.execve-fold.s
/*
; i386-bsd.elf.execve-fold.S -- linkage to C code to process Elf binary
;
; This file is part of the UPX executable compressor.
;
; Copyright (C) 2000-2007 John F. Reiser
; All Rights Reserved.
www.eeworm.com/read/354175/3079367
s i386-linux.elf.execve-entry.s
/*
; i386-linux.elf.execve-entry.S -- Linux program entry point & decompressor (kernel exec)
;
; This file is part of the UPX executable compressor.
;
; Copyright (C) 1996-2007 Markus Franz Xaver J
www.eeworm.com/read/354175/3079378
s i386-bsd.elf.execve-entry.s
/*
; i386-bsd.elf.execve-entry.S -- BSD program entry point & decompressor (kernel exec)
;
; This file is part of the UPX executable compressor.
;
; Copyright (C) 1996-2007 Markus Franz Xaver Johan
www.eeworm.com/read/354175/3079387
s i386-linux.elf.execve-fold.s
/*
; i386-linux.elf.execve-fold.S -- linkage to C code to process Elf binary
;
; This file is part of the UPX executable compressor.
;
; Copyright (C) 2000-2007 John F. Reiser
; All Rights Reserve
www.eeworm.com/read/354175/3079394
c i386-bsd.elf.execve-main.c
/* i386-bsd.elf.execve-main.c -- generic stub loader for *BSD using execve()
This file is part of the UPX executable compressor.
Copyright (C) 1996-2007 Markus Franz Xaver Johannes Oberhumer
www.eeworm.com/read/354175/3079402
c i386-linux.elf.execve-main.c
/* i386-linux.elf.execve-main.c -- generic stub loader for Linux using execve()
This file is part of the UPX executable compressor.
Copyright (C) 1996-2007 Markus Franz Xaver Johannes Oberhume
www.eeworm.com/read/354175/3079424
h i386-bsd.elf.execve-fold.h
/* i386-bsd.elf.execve-fold.h
created from i386-bsd.elf.execve-fold.bin, 1031 (0x407) bytes
This file is part of the UPX executable compressor.
Copyright (C) 1996-2007 Markus Franz Xaver Jo
www.eeworm.com/read/374989/9376296
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/365209/9875113
c 1.c
#include
#include
int main(int argc,char *argv[])
{
pid_t child;
child=fork();
if(child==0)
{
char *a[]={"ls -l",0};
char *b[]={"PATH=/bin"};
execve("/bin/ls",a,