Land #5676, print_status with ms14_064

bug/bundler_fix
Mo Sadek 2015-07-10 14:40:49 -05:00
commit 3347b90db7
1 changed files with 2 additions and 0 deletions

View File

@ -375,6 +375,7 @@ end function
# It should be \r\n . # It should be \r\n .
vbs = Msf::Util::EXE.to_exe_vbs(data).gsub(/\x0a/, "\r\n") vbs = Msf::Util::EXE.to_exe_vbs(data).gsub(/\x0a/, "\r\n")
print_status("Sending VBS stager")
send_response(cli, vbs) send_response(cli, vbs)
else else
# The VBS technique is only for Windows XP. So if a non-XP system is requesting it, # The VBS technique is only for Windows XP. So if a non-XP system is requesting it,
@ -382,6 +383,7 @@ end function
send_not_found(cli) send_not_found(cli)
end end
else else
print_status("Sending exploit...")
send_exploit_html(cli, get_html) send_exploit_html(cli, get_html)
end end
end end