In an information security lab I'm working on, I've been tasked with executing multiple commands with a single call to "system()" (written in C, running on Fedora). What is the syntax that will allow me to execute more than command through system()? (The idea being you could execute arbitrary commands through a program running on a remote computer, if the program interacts with the OS through the system() call.)

I.e.:

char command[] = "????? \r\n"; system(command);

Any tips would be great! Thanks.

link|improve this question

54% accept rate
Unless you are running on Windows, the carriage return (\r) is likely to cause trouble rather than give a benefit. You should be able to separate commands by newlines - or semi-colons as others have suggested. – Jonathan Leffler Nov 1 '08 at 0:55
In terms of security, allowing remote programs to execute arbitrary commands is a fraught process, in general. It is least serious if the program locally runs with the privileges of the remote user; if it runs with any sort of elevated privileges, it is dire. – Jonathan Leffler Nov 1 '08 at 0:57
feedback

3 Answers

up vote 5 down vote accepted

That depends on the shell being invoked to execute the commands, but in general most shells use ; to separate commands so something like this should work:

command1; command2; command3

[EDIT]

As @dicroce mentioned, you can use && instead of ; which will stop execution at the first command that returns a non-zero value. This may or may not be desired (and some commands may return non-zero on success) but if you are trying to handle commands that can fail you should probably not string multiple commands together in a system() call as you don't have any way of determining where the failure occured. In this case your best bet would either be to execute one command at a time or create a shell script that performs the appropriate error handling and call that instead.

link|improve this answer
feedback

Use && between your commands. It has the advantage that it only continues executing commands as long as they return successful error codes. Example:

"cd /proc && cat cpuinfo"

link|improve this answer
feedback

One possibility comes immediately to mind. You could write all the commands to a script then run it with:

system ("cmd.exe /c \"x.cmd\"");

or, now that I've noticed you're running on Fedora:

system ("x.sh");
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.