Updated using limhof-r7 advice

bug/bundler_fix
shellster 2013-08-21 16:43:10 -07:00
parent 86a83391fd
commit a6e5e9c61d
1 changed files with 52 additions and 32 deletions

View File

@ -839,9 +839,11 @@ require 'digest/sha1'
hash_sub[:func_name2] = var_base + (var_base_idx+=1).to_s hash_sub[:func_name2] = var_base + (var_base_idx+=1).to_s
# The wrapper makes it easier to integrate it into other macros # The wrapper makes it easier to integrate it into other macros
templateFile = File.open(File.join("data", "templates", "scripts", "to_exe_vba.vb.template") , "rb") template_pathname = Metasploit::Framework.root.join("data", "templates", "scripts", "to_exe_vba.vb.template")
template = templateFile.read
templateFile.close template_pathname.open("rb") do |f|
template = f.read
end
hash_sub[:data] = "" hash_sub[:data] = ""
@ -891,9 +893,11 @@ require 'digest/sha1'
hash_sub[:bytes] << " _\r\n" if (idx > 1 and (idx % maxbytes) == 0) hash_sub[:bytes] << " _\r\n" if (idx > 1 and (idx % maxbytes) == 0)
end end
templateFile = File.open(File.join("data", "templates", "scripts", "to_vba.vb.template") , "rb") template_pathname = Metasploit::Framework.root.join("data", "templates", "scripts", "to_vba.vb.template")
template = templateFile.read
templateFile.close template_pathname.open("rb") do |f|
template = f.read
end
return template % hash_sub return template % hash_sub
end end
@ -935,14 +939,20 @@ require 'digest/sha1'
hash_sub[:init] = "" hash_sub[:init] = ""
hash_sub[:init] << "Do\r\n" if persist if(persist)
hash_sub[:init] << "Do\r\n"
hash_sub[:init] << "#{hash_sub[:var_func]}\r\n" hash_sub[:init] << "#{hash_sub[:var_func]}\r\n"
hash_sub[:init] << "WScript.Sleep #{delay * 1000}\r\n" if persist hash_sub[:init] << "WScript.Sleep #{delay * 1000}\r\n"
hash_sub[:init] << "Loop\r\n" if persist hash_sub[:init] << "Loop\r\n"
else
hash_sub[:init] << "#{hash_sub[:var_func]}\r\n"
end
templateFile = File.open(File.join("data", "templates", "scripts", "to_exe_vbs.vb.template") , "rb") template_pathname = Metasploit::Framework.root.join("data", "templates", "scripts", "to_exe_vbs.vb.template")
template = templateFile.read
templateFile.close template_pathname.open("rb") do |f|
template = f.read
end
return template % hash_sub return template % hash_sub
end end
@ -974,9 +984,11 @@ require 'digest/sha1'
hash_sub[:var_shellcode] = lines.join("") hash_sub[:var_shellcode] = lines.join("")
templateFile = File.open(File.join("data", "templates", "scripts", "to_exe_asp.asp.template") , "rb") template_pathname = Metasploit::Framework.root.join("data", "templates", "scripts", "to_exe_asp.asp.template")
template = templateFile.read
templateFile.close template_pathname.open("rb") do |f|
template = f.read
end
return template % hash_sub return template % hash_sub
end end
@ -1002,10 +1014,11 @@ require 'digest/sha1'
hash_sub[:shellcode] << "\\x#{exe[byte].to_s(16)}" hash_sub[:shellcode] << "\\x#{exe[byte].to_s(16)}"
end end
template_pathname = Metasploit::Framework.root.join("data", "templates", "scripts", "to_exe_aspx.aspx.template")
templateFile = File.open(File.join("data", "templates", "scripts", "to_exe_aspx.aspx.template") , "rb") template_pathname.open("rb") do |f|
template = templateFile.read template = f.read
templateFile.close end
return template % hash_sub return template % hash_sub
end end
@ -1033,9 +1046,11 @@ require 'digest/sha1'
end end
hash_sub[:shellcode] = lines.join("") + "\r\n\r\n" hash_sub[:shellcode] = lines.join("") + "\r\n\r\n"
templateFile = File.open(File.join("data", "templates", "scripts", "to_win32pe_psh_net.ps1.template") , "rb") template_pathname = Metasploit::Framework.root.join("data", "templates", "scripts", "to_win32pe_psh_net.ps1.template")
template = templateFile.read
templateFile.close template_pathname.open("rb") do |f|
template = f.read
end
return template % hash_sub return template % hash_sub
end end
@ -1064,9 +1079,11 @@ require 'digest/sha1'
hash_sub[:shellcode] = lines.join("") + "\r\n\r\n" hash_sub[:shellcode] = lines.join("") + "\r\n\r\n"
templateFile = File.open(File.join("data", "templates", "scripts", "to_win32pe_psh_net.ps1.template") , "rb") template_pathname = Metasploit::Framework.root.join("data", "templates", "scripts", "to_win32pe_psh_net.ps1.template")
template = templateFile.read
templateFile.close template_pathname.open("rb") do |f|
template = f.read
end
return template % hash_sub return template % hash_sub
end end
@ -1209,9 +1226,12 @@ require 'digest/sha1'
] ]
}) })
templateFile = File.open(File.join("data", "templates", "scripts", "to_jsp_war.war.template") , "rb")
template = templateFile.read template_pathname = Metasploit::Framework.root.join("data", "templates", "scripts", "to_jsp_war.war.template")
templateFile.close
template_pathname.open("rb") do |f|
template = f.read
end
return self.to_war(template % hash_sub, opts) return self.to_war(template % hash_sub, opts)
end end