Sha256: d83c97b1289821c62aa890043af0c30d48405698f653c11aa791504abff13db0
Contents?: true
Size: 540 Bytes
Versions: 15
Compression:
Stored size: 540 Bytes
Contents
# -*- coding: binary -*- module Rex module Post module Meterpreter ### # # Base class for all extensions that holds a reference to the # client context that they are part of. Each extension also has a defined # name through which it is referenced. # ### class Extension # # Initializes the client and name attributes. # def initialize(client, name) self.client = client self.name = name end # # The name of the extension. # attr_accessor :name protected attr_accessor :client # :nodoc: end end; end; end
Version data entries
15 entries across 15 versions & 3 rubygems