When using system() calls in Perl, do you have to escape the shell args, or is that done automatically?
The arguments will be user input, so I want to make sure this isn't exploitable.
|
2
|
|||
|
|
|
If you use If you need to read the output or send input to the command, |
||||||||||
|
|
|
Doesn't look like it.
But if you only use 1 argument, you will need to.
|
||||||||||||
|
|
|
On Windows, the situation is a bit nastier. Basically, all Win32 programs receive one long command-line string -- the shell (usually The problem is, in general, you don't know how a given program will parse its command line. Many programs are compiled with some version of MSVC++, whose quirky parsing rules are described here, but many others are compiled with different compilers that use different conventions. This is compounded by the fact that So, the safest approach for escaping arguments on Windows is:
|
||||||||
|