module Msf
module Sessions
class Meterpreter_x64_Win < Msf::Sessions::Meterpreter
def initialize(rstream, opts={})
super
self.base_platform = 'windows'
self.base_arch = ARCH_X64
end
def lookup_error(code)
Msf::WindowsError.description(code)
end
def supports_ssl?
false
end
end
end
end