Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Uber simple example to illustrate the point:

$message = $_POST['message'];

$fp = fopen("log.txt", "a");
fwrite($fp, $message);

fclose($fp);

Should I be sanitizing user input for the $_POST['message'] variable?

I understand prepared statements (for database sanitization) and htmlentities (if I were outputting the POST message back to the screen at some time) but in this case, the input is simply sitting in a log file that will be read by a small PHP script (via fopen())

Is the answer dependent on how it will be read? For example if I do open the log file via fopen() it should be htmlentities, and if I plan to download the log file and read it with Excel (for filtering purposes), there is nothing to be done?

share|improve this question
This doesn't come up very much, but I suppose someone could post the binary contents of a virus. – Explosion Pills Jan 28 at 4:27
1  
I think for logical reasons it is better to sanitize it. You don't want someone to be allowed to even just "store" malicious content on your server. If it is there, it may be wrongly used one way or another – Ø Hanky Panky Ø Jan 28 at 4:45
3  
If the user puts newlines or some other separator character in the input, it could cause issues when you try to parse the log later. And, if the user decides to upload a lot of data, he could fill your disk space pretty quickly. – nneonneo Jan 28 at 5:20
1  
Regardless of files, tampering, hooking, malware, your neighbor having sex in the other room, etc. you should always sanitize all user input. – H2CO3 Jan 28 at 5:33
1  
What do you do with the data when reading it later? – Gumbo Jan 28 at 5:44
show 14 more comments

1 Answer

You should sanitize user input, but how is entirely dependent on what the input is for. "Sanitizing" refers to the idea of making sure input is safe or sane for a particular use. The term cannot be more specific until you settle on use cases.

You don't need to worry about the PHP reading/writing functions like fopen(). Be concerned with steps that actually parse or analyze the input. Some possible examples:

  • If a file will be displayed in a basic log reader, you might need to make sure that each input is limited to a certain length and doesn't contain line breaks or your chosen field delimiter, and the beginning of each line is a valid time stamp.
  • If a file will be displayed in a web browser, you might need to make sure inputs do not include scripts or links to other resources (like an IMG tag).
  • Excel files would have similar concerns regarding line length, time stamps, and delimiters. You don't have to worry about someone including executable code as long as Excel will be parsing the file as text. (Also, modern Excel versions give you warnings about included macros before running them.)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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