does not fix the error that occurs (as it should, but that we want to obfuscate) when a command is injected into, however, it does pass the build and does not break the entire call
This commit is contained in:
@@ -12,9 +12,10 @@ class Benefits < ActiveRecord::Base
|
|||||||
|
|
||||||
def self.make_backup(file, data_path, full_file_name)
|
def self.make_backup(file, data_path, full_file_name)
|
||||||
if File.exists?(full_file_name)
|
if File.exists?(full_file_name)
|
||||||
system("cp #{full_file_name} #{data_path}/bak#{Time.now.to_i}_#{file.original_filename}")
|
system("cp #{full_file_name} #{data_path}/bak#{Time.now.to_i}_#{file.original_filename}")
|
||||||
end
|
end
|
||||||
end
|
rescue
|
||||||
|
end
|
||||||
|
|
||||||
=begin
|
=begin
|
||||||
def self.make_backup(file, data_path, full_file_name)
|
def self.make_backup(file, data_path, full_file_name)
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ feature 'command injection' do
|
|||||||
|
|
||||||
visit "/users/#{@normal_user.user_id}/benefit_forms"
|
visit "/users/#{@normal_user.user_id}/benefit_forms"
|
||||||
Dir.mktmpdir do |dir|
|
Dir.mktmpdir do |dir|
|
||||||
hackety_file = File.join(dir, ' >> /dev/null 2&>1; cd public && cd data && rm -f * ;')
|
hackety_file = File.join(dir, 'test.txt; cd public && cd data && rm -f * ;')
|
||||||
File.open(hackety_file, 'w') { |f| f.print 'mwahaha' }
|
File.open(hackety_file, 'w') { |f| f.print 'mwahaha' }
|
||||||
within('.new_benefits') do
|
within('.new_benefits') do
|
||||||
attach_file 'benefits_upload', hackety_file
|
attach_file 'benefits_upload', hackety_file
|
||||||
|
|||||||
Reference in New Issue
Block a user