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.)
|
|
If you do
Then the second argument, will be sent as an argument, it will not be executed. |
|||||
|
|
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?
Or use a Ruby Logger.
|
|||
|