Sha256: 5030bec9abf324814eeb53af8fa4b42519fb82f923ec7b15d4e0696f7350bbb7

Contents?: true

Size: 855 Bytes

Versions: 43

Compression:

Stored size: 855 Bytes

Contents

#!/usr/bin/env ruby

require 'rex/post/meterpreter/client'
require 'rex/post/meterpreter/extensions/stdapi/constants'

module Rex
module Post
module Meterpreter
module Extensions
module Stdapi
module Sys
module ProcessSubsystem

###
#
# This class provides an input/output interface to an executed
# process' standard input and output.
#
###
class IO

	##
	#
	# Constructor
	#
	##

	#
	# Initializes the IO instance.
	#
	def initialize(process)
		self.process = process
	end

	#
	# Writes the supplied buffer to the standard input handle of the
	# executed process.
	#
	def write(buf)
		return process.channel.write(buf)
	end

	#
	# Reads data from the standard output handle of the executed process.
	#
	def read(length = nil)
		return process.channel.read(length)
	end

protected
	attr_accessor :process # :nodoc:

end

end; end; end; end; end; end; end

Version data entries

43 entries across 43 versions & 1 rubygems

Version Path
librex-0.0.4 lib/rex/post/meterpreter/extensions/stdapi/sys/process_subsystem/io.rb
librex-0.0.3 lib/rex/post/meterpreter/extensions/stdapi/sys/process_subsystem/io.rb
librex-0.0.1 lib/rex/post/meterpreter/extensions/stdapi/sys/process_subsystem/io.rb