1

How does one go about safely write a temporary file to a location within an application server that is publicly accessible?

Woot4Moo
  • 889
  • 6
  • 10

2 Answers2

1

It depends on "safely". If you want to avoid read or write access from other users of the same machine, then you should rely on the access rights provided by the operating system (if the OS is hostile, then you already lost). On Unix-like systems, use the mkstemp() function, but take care to use an OS where the access rights are set sanely. E.g., with Linux, mkstemp() does things correctly beginning with glibc-2.07, but previous versions made the file readable and writeable by all users on the machine, which was inconvenient (the problem could be mitigated by doing a fchmod() immediately afterwards, but this was still vulnerable to a race condition).

Tom Leek
  • 168,808
  • 28
  • 337
  • 475
0

My recommendation would be to ensure that this temporary file is written outside of the webroot. This ensures that it cannot be accessed through a simple web browser call.

The rest is up to the OS as Tom points.

k1DBLITZ
  • 3,933
  • 14
  • 20