up vote 1 down vote favorite
share [g+] share [fb]

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?
link|improve this question

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. – Andrew Dalke Nov 5 '09 at 16:07
feedback

2 Answers

up vote 6 down vote accepted

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

Use that instead.

link|improve this answer
Thanks. I don't suppose this creates a big security risk if I get a name using NamedTemporaryFile and supply it to QPrinter. – Georg Schölly Nov 5 '09 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 '09 at 13:14
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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