Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to do the following securely

system "echo '#{params[:message]}' > /dev/log"

What is the proper way for escaping arguments when calling a native command?

(Example evil input: '; rm -Rf *; echo 'I won.)

share|improve this question
The focus is the proper escaping not the proper logging. That is just an example. – Notinlist May 10 '11 at 10:48

2 Answers

up vote 11 down vote accepted

If you do

system "echo", params[:message]

Then the second argument, will be sent as an argument, it will not be executed.

share|improve this answer
1  
Excellent answer. I have to accept it and post a new question if I want to get a solution for my original problem. – Notinlist May 10 '11 at 10:57

Best not to trust any input you have not written yourself when shelling out. I wouldn't even use a system call do do this.

How about opening the file as append-only and writing directly to it?

File.open('/dev/log', 'a') do |f|
  f.write params[:message]
end

Or use a Ruby Logger.

require 'logger'

log = Logger.new('/dev/log')
log.debug params[:message]
share|improve this answer
Thank you for the answer, but the focus is not on the logging but the escaping. It was just a random example. – Notinlist May 10 '11 at 10:47

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.