Files
metasploit-gs/modules/auxiliary/server/tftp.rb
T

79 lines
1.9 KiB
Ruby
Raw Normal View History

2010-07-08 23:34:33 +00:00
##
2017-07-24 06:26:21 -07:00
# This module requires Metasploit: https://metasploit.com/download
2013-10-15 13:50:46 -05:00
# Current source: https://github.com/rapid7/metasploit-framework
2010-07-08 23:34:33 +00:00
##
require 'rex/proto/tftp'
2014-03-07 10:41:18 -06:00
require 'tmpdir'
2010-07-08 23:34:33 +00:00
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Auxiliary
2013-08-30 16:28:54 -05:00
include Msf::Exploit::Remote::TFTPServer
include Msf::Auxiliary::Report
2010-07-08 23:34:33 +00:00
2013-08-30 16:28:54 -05:00
def initialize
super(
'Name' => 'TFTP File Server',
'Description' => %q{
This module provides a TFTP service
},
2014-03-07 10:41:18 -06:00
'Author' => [ 'jduck', 'todb' ],
2013-08-30 16:28:54 -05:00
'License' => MSF_LICENSE,
'Actions' =>
[
[ 'Service' ]
],
'PassiveActions' =>
[
'Service'
],
'DefaultAction' => 'Service'
)
2010-07-08 23:34:33 +00:00
2013-08-30 16:28:54 -05:00
register_options(
[
OptAddress.new('SRVHOST', [ true, "The local host to listen on.", '0.0.0.0' ]),
OptPort.new('SRVPORT', [ true, "The local port to listen on.", 69 ]),
2014-03-07 10:52:45 -06:00
OptPath.new('TFTPROOT', [ true, "The TFTP root directory to serve files from", Dir.tmpdir ]),
OptPath.new('OUTPUTPATH', [ true, "The directory in which uploaded files will be written.", Dir.tmpdir ])
])
2013-08-30 16:28:54 -05:00
end
2010-07-08 23:34:33 +00:00
def srvhost
datastore['SRVHOST'] || '0.0.0.0'
end
def srvport
datastore['SRVPORT'] || 69
end
2013-08-30 16:28:54 -05:00
def run
print_status("Starting TFTP server on #{srvhost}:#{srvport}...")
2010-07-08 23:34:33 +00:00
@tftp = Rex::Proto::TFTP::Server.new(
srvport,
srvhost,
{}
)
2010-07-08 23:34:33 +00:00
@tftp.set_tftproot(datastore['TFTPROOT'])
print_status("Files will be served from #{datastore['TFTPROOT']}")
2010-07-08 23:34:33 +00:00
@tftp.set_output_dir(datastore['OUTPUTPATH'])
print_status("Uploaded files will be saved in #{datastore['OUTPUTPATH']}")
2010-07-08 23:34:33 +00:00
2013-08-30 16:28:54 -05:00
# Individual virtual files can be served here -
#@tftp.register_file("ays", "A" * 2048) # multiple of 512 on purpose
2010-07-08 23:34:33 +00:00
2013-08-30 16:28:54 -05:00
@tftp.start
add_socket(@tftp.sock)
2010-07-08 23:34:33 +00:00
2013-08-30 16:28:54 -05:00
# Wait for finish..
while @tftp.thread.alive?
sleep 3
2013-08-30 16:28:54 -05:00
end
2010-07-08 23:34:33 +00:00
2013-08-30 16:28:54 -05:00
vprint_status("Stopping TFTP server")
@tftp.stop
end
2010-07-08 23:34:33 +00:00
end