Class: Rex::Post::Meterpreter::Extension
- Inherits:
-
Object
- Object
- Rex::Post::Meterpreter::Extension
- Defined in:
- lib/rex/post/meterpreter/extension.rb
Overview
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.
Direct Known Subclasses
ClientCore, Rex::Post::Meterpreter::Extensions::Android::Android, Rex::Post::Meterpreter::Extensions::Espia::Espia, Rex::Post::Meterpreter::Extensions::Extapi::Extapi, Rex::Post::Meterpreter::Extensions::Incognito::Incognito, Rex::Post::Meterpreter::Extensions::Kiwi::Kiwi, Rex::Post::Meterpreter::Extensions::Lanattacks::Lanattacks, Rex::Post::Meterpreter::Extensions::Mimikatz::Mimikatz, Rex::Post::Meterpreter::Extensions::NetworkPug::NetworkPug, Rex::Post::Meterpreter::Extensions::Priv::Priv, Rex::Post::Meterpreter::Extensions::Sniffer::Sniffer, Rex::Post::Meterpreter::Extensions::Stdapi::Stdapi
Instance Attribute Summary collapse
-
#name ⇒ Object
The name of the extension.
Instance Method Summary collapse
-
#initialize(client, name) ⇒ Extension
constructor
Initializes the client and name attributes.
Constructor Details
#initialize(client, name) ⇒ Extension
Initializes the client and name attributes.
19 20 21 22 |
# File 'lib/rex/post/meterpreter/extension.rb', line 19 def initialize(client, name) self.client = client self.name = name end |
Instance Attribute Details
#name ⇒ Object
The name of the extension.
27 28 29 |
# File 'lib/rex/post/meterpreter/extension.rb', line 27 def name @name end |