To escape the string to be used as shell argument we use the function escapeshellarg() in PHP. Does Perl have an equivalent function ?
|
|
|
Best practice:
|
|||||||||
|
|
Perl can match the following stated function:
like this:
|
|||
|
|
|
I have to agree with @daxim. But there are some circumstances where you can't use this like passing a command over a socket to a program that isn't perl or doesn't have IPC module available. I also looked at the regexp given by @axeman and that seems a bit complex to me. I could be wrong, but I think you don't need to escape backslashes in single quoted strings for a command. So, you could just do this:
If anyone has any reason, why this may be insecure, I would like to know. I have tested it using any kind of trickery I could think of to make the shell execute arbitrary code, without success, which makes me think this regexp is the same as the PHP implementation. In the PHP implementation, it states that all it does is: adds single quotes around a string and quotes/escapes any existing single quotes. Which is the only thing this regexp does. Thoughts? |
|||||
|
|
Daxim mentioned it before in answere just avoid shell interpolation. For completeness i would like to say there is quotemeta() (perldoc -f quotmeta) and you can use \Q (begin quoting) \E (end quoting) in Regular Expressions. |
|||||||||
|