Module: Rex::Post::Meterpreter::InboundPacketHandler
- Defined in:
- lib/rex/post/meterpreter/inbound_packet_handler.rb
Overview
Mixin that provides stubs for handling inbound packets
Instance Method Summary collapse
-
#request_handler(client, packet) ⇒ Object
Stub request handler that returns false by default.
-
#response_handler(client, packet) ⇒ Object
Stub response handler that returns false by default.
Instance Method Details
#request_handler(client, packet) ⇒ Object
Stub request handler that returns false by default.
18 19 20 |
# File 'lib/rex/post/meterpreter/inbound_packet_handler.rb', line 18 def request_handler(client, packet) return false end |
#response_handler(client, packet) ⇒ Object
Stub response handler that returns false by default.
25 26 27 |
# File 'lib/rex/post/meterpreter/inbound_packet_handler.rb', line 25 def response_handler(client, packet) return false end |