Skip to content

Commit d16d316

Browse files
committed
Fixes mssql_findandsampledata & ms11_006_creat esizeddibsection
[FixRM:7987] [FixRM:7986]
2 parents 73aa14c + 57b7e4e commit d16d316

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

modules/auxiliary/admin/mssql/mssql_findandsampledata.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ def sql_statement()
382382
save_loot="yes"
383383
column_data.each { |row|
384384
0.upto(7) { |col|
385-
row[col] = row[col].strip.to_
385+
row[col] = row[col].strip.to_s
386386
}
387387
}
388388
print_line(" ")

modules/exploits/windows/fileformat/ms11_006_createsizeddibsection.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
##
77

88
require 'msf/core'
9+
require 'rex/ole'
10+
require 'rex/ole/util'
911

1012
class Metasploit3 < Msf::Exploit::Remote
1113
Rank = GreatRanking

0 commit comments

Comments
 (0)