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