Cleaned up Array.join call

bug/bundler_fix
Sebastiano Di Paola 2014-04-11 19:22:01 +02:00
parent 55ec969bd9
commit 83fe1cec65
1 changed files with 1 additions and 1 deletions

View File

@ -297,7 +297,7 @@ class Metasploit3 < Msf::Auxiliary
if datastore['STOREDUMP']
pattern = datastore['DUMPFILTER']
if pattern
match_data = heartbeat_data.scan(pattern).join('')
match_data = heartbeat_data.scan(pattern).join
else
match_data = heartbeat_data
end