RailsCasts Pro episodes are now free!
Learn more or hide this
GitHub User: notinlist
SERIOUS SECURITY PROBLEM
In function call_rake() you have some shell escaping problem.
call_rake()
args = options.map { |n, v| "#{n.to_s.upcase}='#{v}'" }
The variable v must be escaped properly. This is a security vulnerability. Consider replacing the video, or adding overlay to it with the correct solution!
v
SERIOUS SECURITY PROBLEM
In function
call_rake()
you have some shell escaping problem.The variable
v
must be escaped properly. This is a security vulnerability. Consider replacing the video, or adding overlay to it with the correct solution!