Land #7253, x64 xor encoder fix

Land fullmetalcache's fix for the x64 xor encoder
bug/bundler_fix
David Maloney 2016-09-30 14:28:10 -05:00
commit 72bd75e681
No known key found for this signature in database
GPG Key ID: DEDBA9DC3A913DB2
1 changed files with 8 additions and 0 deletions

View File

@ -24,6 +24,14 @@ class MetasploitModule < Msf::Encoder::Xor
}
)
end
# Indicate that this module can preserve some registers
# ...which is currently not true. This is a temp fix
# until the full preserve_registers functionality is
# implemented.
def can_preserve_registers?
true
end
def decoder_stub( state )