Files
metasploit-gs/lib/lab/modifier/test_modifier.rb
T

17 lines
273 B
Ruby
Raw Normal View History

2011-07-29 18:23:20 +00:00
# This assumes you're on a recent ubuntu
# TODO - enforce this, or split it out...
module Lab
module Modifier
module Test
def install_nmap
run_command("sudo apt-get install nmap")
end
def nmap(options)
run_command("nmap #{filter_input(options)}")
end
end
end
end