metasploit-framework/lib/rex/post/meterpreter/channels/pools/file.rb

58 lines
1006 B
Ruby
Raw Normal View History

#!/usr/bin/ruby
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
#
##
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' => 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