vote up 2 vote down star
1

Is there anything in the standard library, or can anyone provide a recipe to escape anything going as an argument to a shell command?

For example, to ensure that it can be passed to the echo command:

>>> import os
>>> os.system('echo "2')
sh: Syntax error: Unterminated quoted string

I would like to escape the "2 string somehow. And there are various other example characters that it hates: "()><' and there are probably even more...

I can manually escape the things, but I need a function to do it to arbitrary input.

Edit: Just for the record, because there is some confusion: No I cannot use subprocess.Popen, I am invoking something in a third party application which uses subprocess.Popen(shell=True..). No I cannot change that application, and no I most certainly do not want to change that application. It uses the shell's features, and they are useful in this domain. Therefore, voting up an answer that says "Just use subprocess.Popen" is totally wrong, and ignores the question.

flag

Added to the question so no one else accidentally answers the question as asked, only to get downvoted. – Grant Feb 11 at 21:10

3 Answers

vote up 5 vote down check

This question is a duplicate of http://stackoverflow.com/questions/35817/whats-the-best-way-to-escape-ossystem-calls-in-python

link|flag
vote up 0 vote down

oops, posted to wrong place--how do i delete?

link|flag
You should have a "delete" link at the bottom of your post (between "edit" and "flag"). – sth Oct 30 at 2:27
vote up 7 vote down

You don't have to use a shell, so you don't have to escape:

from subprocess import Popen
command = ["/bin/echo", '"2', "'3", "< /dev/sda"]

proc = Popen(command, shell=False)
proc.communicate()

Shell escaping is VERY diffucult to do right when security counts.

link|flag
No, I have to use a shell. I don't control how things are run, merely what I can pass to the shell command. – Ali A Feb 11 at 20:59
Yes, it seems very difficult, which is why I am asking for help. – Ali A Feb 11 at 20:59
@Ali - the point is that if you use subprocess.Popen instead of os.system() then you don't need to escape the arguments, you can pass them as a list and use shell=False so no interpolation occurs. If your requirements are different somehow, update the question so people can answer more effectively. – Jay Feb 12 at 17:33
Jay: no the point is that I am passing it to another application over which I have zero control. I did try to explain this in the question. That application is designed to use the shell, in fact it uses the shell's features. – Ali A Feb 14 at 21:21
Jay: Yes, normally I would agree with you, and of course in that situation I wouldn't need to ask the question, I would just use sp.Popen, but the fact that I have to ask the question should be indication enough. – Ali A Feb 14 at 21:23

Your Answer

Get an OpenID
or

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