6

What exactly does execve() do? I've tried looking at the documentation (http://linux.die.net/man/2/execve) but given that I'm very new to linux and this sort of programming it doesn't make a lot of sense. What I want to do is be able to execute this command:

nc -l -p someport -e /bin/sh 

Can I do something like the following (where someport is a number such as 4444)

char *command[2]; command[0] = "nc -l -p someport -e /bin/sh" execve(command[0], name, NULL); 

2 Answers 2

19

execve asks the operating system to start executing a different program in the current process.

Chances are pretty decent that you want execvp or execlp instead -- you haven't mentioned anything about wanting to provide the environment for the child, but from the looks of things you probably do want the path searched to find the executable you're using.

Sign up to request clarification or add additional context in comments.

3 Comments

This is not fully correct. fork or clone create a new "child" process from a "parent" process. execve replaces the current context of a process with a new one (without creating a new process). There currently (as far as I am aware) is no single syscall in Linux that both spawns a new process and executes a new program in this process---you need at least 2 syscalls.
my comment is mostly about the terminology: "replaces the current process with a new process". The man page states the following: One sometimes sees execve() (and the related functions described in exec(3)) described as "executing a new process" (or similar). This is a highly misleading description: there is no new process; many attributes of the calling process remain unchanged (in particular, its PID). All that execve() does is arrange for an existing process (the calling process) to execute a new program.
@peachykeen: Fair enough--I've edited (though I entertain some doubts about its importance--somebody asking about the basic idea of what exec* is unlikely to care about details at this level).
9

Correct usage is

extern char * const environ[]; char * const command[] = {"nc", "-l", "-p", "porthere", "-e", "/bin/sh", NULL}; execve("/usr/bin/nc", command, environ); 

You must use a full pathname, not a short name such as "nc" (more precisely: no PATH search is done, the pathname must be an actual existing file), and you must split arguments into separate strings beforehand. You also need to propagate the environment somehow, either via the extern environ mentioned in the above snippet or as obtained from the third parameter of main(); the latter is slightly more standards-blessed but may be more painful to pass around as needed.

3 Comments

Am I correct in assuming there should be a comma after "porthere"?
Sorry, yes, that was a typo. Fixing.
the answer below is so much better

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.