Remove unecessary print from #generate in payloads.

bug/bundler_fix
joev 2013-09-25 00:10:59 -05:00 committed by joev
parent 801dda2b09
commit cd98c4654d
2 changed files with 2 additions and 10 deletions

View File

@ -37,11 +37,7 @@ module Metasploit3
# Constructs the payload
#
def generate
# Future proof for PrependEncoder
ret = super + command_string
# For copy-paste to files or other sessions
vprint_good(ret)
return ret
super + command_string
end
#

View File

@ -34,11 +34,7 @@ module Metasploit3
# Constructs the payload
#
def generate
# Future proof for PrependEncoder
ret = super + command_string
# For copy-paste to files or other sessions
vprint_good(ret)
return ret
super + command_string
end
#