Files
metasploit-gs/lib/msf/core/exploit/tftp.rb
T

38 lines
563 B
Ruby
Raw Normal View History

# -*- coding: binary -*-
2010-05-26 22:39:56 +00:00
require 'rex/proto/tftp'
2010-05-26 22:39:56 +00:00
module Msf
###
#
# This mixin provides a TFTPServer
#
###
module Exploit::TFTPServer
2013-08-30 16:28:33 -05:00
def initialize(info = {})
super
@tftp = nil
end
def start_service(tag, exe)
@tftp = Rex::Proto::TFTP::Server.new
@tftp.register_file(tag, exe)
vprint_status("Starting TFTP server to host \"#{tag}\" (#{exe.length} bytes)")
2013-08-30 16:28:33 -05:00
@tftp.start
add_socket(@tftp.sock)
@tftp
end
def stop_service
vprint_status("Stopping TFTP server")
2013-08-30 16:28:33 -05:00
@tftp.stop
end
attr_accessor :tftp
2010-05-26 22:39:56 +00:00
end
end