vote up 1 vote down star

I considered using tmpnam to set the output file name of a QPrinter. But the Python documentation recommends against using it.

os.tmpnam()

Return a unique path name that is reasonable for creating a temporary file. ... Applications are responsible for properly creating and managing files created using paths returned by tmpnam(); no automatic cleanup is provided.

Warning

Use of tmpnam() is vulnerable to symlink attacks; consider using tmpfile() (section File Object Creation) instead.

Windows: Microsoft’s implementation of tmpnam() always creates a name in the root directory of the current drive, and that’s generally a poor location for a temp file (depending on privileges, you may not even be able to open a file using this name).

  • Is this really insecure if my application doesn't need any special privileges?
  • What are secure alternatives considering that I can only set a path as the output file name of the QPrinter?
flag

Security depends on the environment. In a hostile environment it could mean that someone else can get access to the data created by QPrinter. As you read here, on Windows it could mean that you can't get a writable tmpnam. Since tempfile is so easy to use and does the right thing, just use it. – dalke Nov 5 at 16:07

2 Answers

vote up 6 vote down check

Please read http://docs.python.org/library/tempfile.html

Use that instead.

link|flag
docs.python.org/library/… in particular – NicDumZ Nov 5 at 11:25
Thanks. I don't suppose this creates a big security risk if I get a name using NamedTemporaryFile and supply it to QPrinter. – gs Nov 5 at 12:41
I'm not sure what you're supposing. tempfile has the most secure temporary files. It doesn't really require a supposition; that's what the claim is. Is there some further question? Some clarification you need? – S.Lott Nov 5 at 13:14
vote up 0 vote down

Depending on how your QPrinter deals with a file that already exists, you could use QTemporaryFile to create a file, then close the file and keep the reference to the QTemporaryFile object around until you are done with it. (This will also clean up the file for you when you destroy the object.)

link|flag

Your Answer

Get an OpenID
or

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