#!/usr/bin/ruby require 'Rex/Post/Meterpreter/Channel' module Rex module Post module Meterpreter module Channels ### # # Pool # ---- # # This class acts as a base class for all channels that are classified # as 'pools'. This means that only one side of the channel, typically # the client half, acts on the other half of the channel. Examples # of pools come in the form of files where the remote side never sends # any unrequested data. # # Another key distinction of Pools is that they, in general, support # the DIO mode 'seek' which allows for changing the position, or offset, # into the channel. # ### class Pool < Rex::Post::Meterpreter::Channel class <