module Rex::Post::Meterpreter::InboundPacketHandler
Mixin that provides stubs for handling inbound packets
Public Instance Methods
request_handler(client, packet)
click to toggle source
Stub request handler that returns false by default.
# File lib/rex/post/meterpreter/inbound_packet_handler.rb, line 16 def request_handler(client, packet) return false end
response_handler(client, packet)
click to toggle source
Stub response handler that returns false by default.
# File lib/rex/post/meterpreter/inbound_packet_handler.rb, line 23 def response_handler(client, packet) return false end