Merge branch 'master' of https://github.com/OWASP/railsgoat
This commit is contained in:
@@ -14,6 +14,7 @@ class Benefits < ActiveRecord::Base
|
|||||||
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
|
||||||
|
rescue
|
||||||
end
|
end
|
||||||
|
|
||||||
=begin
|
=begin
|
||||||
|
|||||||
@@ -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, 'etc/passwd; 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
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ feature 'improper password hashing' do
|
|||||||
pending(:if => verifying_fixed?) {Digest::MD5.hexdigest(new_pass).should == @normal_user.password}
|
pending(:if => verifying_fixed?) {Digest::MD5.hexdigest(new_pass).should == @normal_user.password}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
=begin
|
||||||
scenario 'with md5 and salt' do
|
scenario 'with md5 and salt' do
|
||||||
pending unless @normal_user.has_attribute?('salt')
|
pending unless @normal_user.has_attribute?('salt')
|
||||||
new_pass = 'testpassword'
|
new_pass = 'testpassword'
|
||||||
@@ -22,4 +23,6 @@ feature 'improper password hashing' do
|
|||||||
@normal_user.save
|
@normal_user.save
|
||||||
pending(:if => verifying_fixed?) {Digest::MD5.hexdigest(@normal_user.salt + new_pass).should == @normal_user.password}
|
pending(:if => verifying_fixed?) {Digest::MD5.hexdigest(@normal_user.salt + new_pass).should == @normal_user.password}
|
||||||
end
|
end
|
||||||
|
=end
|
||||||
|
|
||||||
end
|
end
|
||||||
Reference in New Issue
Block a user