$cleaned_up = escapeshellarg($directory);
system("ls $cleaned_up");
Now, if the user passes "/tmp;cat /etc/passwd",
the command that's actually run is:
ls '/tmp;cat /etc/passwd'
The easiest way to avoid the shell is to do the work of whatever
program you're trying to call. Built-in functions
are likely to be more secure than anything involving the shell.
 |  |  |
12.6. PHP Code |  | 12.8. Security Redux |