我的项目的某个库中有以下代码,该代码在 Sideqik Worker 上执行:
def self.generate_pdf(report)
file_name = report['r_file'].gsub('.ric', '')
path = "#{Rails.root}/report_files"
java_cmd = "./fileprint_linux.sh"
if %w(development test).include?(Rails.env)
command = "cd #{path}; sh #{java_cmd} silent #{report.r_file.path}"
else
temp = Tempfile.new("#{file_name}.tmp")
File.open(temp.path, 'wb') { |f| f.write(open(report.r_file.url).read) }
command = "cd #{path}; sh #{java_cmd} silent #{temp.path}"
end
stdin, stdout, stderr = Open3.popen3(command.shellescape)
if stderr.read.blank?
.......
end
end
当我在项目上运行 Brakeman (3.2.1) 时,我收到以下安全警告:
Possible command injection near line 21: Open3.popen3(("cd #{"#{Rails.root}/report_files"}; sh #{"./fileprint_linux.sh"} silent #{report.r_file.path}" or "cd #{"#{Rails.root}/report_files"}; sh #{"./fileprint_linux.sh"} silent #{Tempfile.new("#{report["r_file"].gsub(".ric", "")}.tmp").path}"))
它突出了这部分,我猜这会导致警告:
report['r_file'].gsub('.ric', '')
警告还链接到此页面以获取有关警告的更多信息,但我没有找到处理它的方法:http: //brakemanscanner.org/docs/warning_types/command_injection/
我试图在查看其他帖子和页面时找到解决方案,但没有运气,因此这篇文章。
我应该如何处理这种情况来修复 Brakeman 报告的这个潜在漏洞?
提前致谢!