Land #5532 : Fix #5531, the stage_payload method does not take arguments

Fixes #5531
bug/bundler_fix
OJ 2015-06-14 09:45:30 +10:00
commit 77f506c0c8
No known key found for this signature in database
GPG Key ID: D5DC61FB93260597
1 changed files with 2 additions and 1 deletions

View File

@ -138,7 +138,8 @@ module Msf::Payload::Stager
if stage_assembly and !stage_assembly.empty? if stage_assembly and !stage_assembly.empty?
raw = build(stage_assembly, stage_offsets) raw = build(stage_assembly, stage_offsets)
else else
raw = stage_payload(opts).dup # Options get ignored by the stage_payload method
raw = stage_payload
end end
# Substitute variables in the stage # Substitute variables in the stage