Sha256: 7a0b2ca29f9ab98c53b2ec698e9c29c99c706698125c71b78f6e910bb8f1de4c

Contents?: true

Size: 1.17 KB

Versions: 2

Compression:

Stored size: 1.17 KB

Contents

#!/usr/bin/env ruby
# -*- coding: binary -*-

require 'rex/post/meterpreter/channels/pool'
require 'rex/post/meterpreter/extensions/stdapi/tlv'

module Rex
module Post
module Meterpreter
module Channels
module Pools

###
#
# File
# ----
#
# This class represents a channel that is associated with a file
# on the remote half of the meterpreter connection.
#
###
class File < Rex::Post::Meterpreter::Channels::Pool

	##
	#
	# Factory
	#
	##

	#
	# This method returns an instance of a file pool channel that can be read
	# from, written to, seeked on, and other interacted with.
	#
	def File.open(client, name, mode = "r", perm = 0)
		return Channel.create(client, 'stdapi_fs_file',
				self, CHANNEL_FLAG_SYNCHRONOUS,
				[
					{
						'type'  => Rex::Post::Meterpreter::Extensions::Stdapi::TLV_TYPE_FILE_PATH,
						'value' => client.unicode_filter_decode( name )
					},
					{
						'type'  => Rex::Post::Meterpreter::Extensions::Stdapi::TLV_TYPE_FILE_MODE,
						'value' => mode + "b"
					},
				])
	end

	##
	#
	# Constructor
	#
	##

	# Initializes the file channel instance
	def initialize(client, cid, type, flags)
		super(client, cid, type, flags)
	end

end

end; end; end; end; end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
librex-0.0.68 lib/rex/post/meterpreter/channels/pools/file.rb
librex-0.0.66 lib/rex/post/meterpreter/channels/pools/file.rb