Files
metasploit-gs/lib/msf/base/sessions/meterpreter_php.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
387 B
Ruby
Raw Normal View History

# -*- coding: binary -*-
2010-06-01 17:01:42 +00:00
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
2010-06-01 17:01:42 +00:00
def initialize(rstream, opts={})
super
self.base_platform = 'php'
2016-10-29 08:10:44 +10:00
self.base_arch = ARCH_PHP
2010-06-01 17:01:42 +00:00
end
end
end
end