Files
metasploit-gs/lib/msf/base/sessions/meterpreter_mipsbe_linux.rb
T
2021-01-05 14:59:46 +00:00

30 lines
398 B
Ruby

# -*- coding: binary -*-
module Msf
module Sessions
###
#
# This class creates a platform-specific meterpreter session type
#
###
class Meterpreter_mipsbe_Linux < Msf::Sessions::Meterpreter
def supports_ssl?
false
end
def supports_zlib?
false
end
def initialize(rstream, opts={})
super
self.base_platform = 'linux'
self.base_arch = ARCH_MIPSBE
end
end
end
end