Files
metasploit-gs/lib/msf/core/auxiliary/timed.rb
T
Ramon de C Valle f124597a56 Code cleanups
git-svn-id: file:///home/svn/framework3/trunk@5773 4d416f70-5f16-0410-b530-b9f4589650da
2008-10-19 21:03:39 +00:00

39 lines
571 B
Ruby

module Msf
###
#
# This module provides methods for time-limited modules
#
###
module Auxiliary::Timed
require 'timeout'
#
# Initializes an instance of a timed module
#
def initialize(info = {})
super
register_options(
[
OptInt.new('RUNTIME', [ true, "The number of seconds to run the test", 5 ] )
], Auxiliary::Timed)
end
#
# The command handler when launched from the console
#
def run
secs = datastore['RUNTIME']
print_status("Running module for #{secs} seconds...")
begin
timeout(secs) { self.run_timed }
rescue Timeout::Error
end
end
end
end