metasploit-framework/lib/lab/modifier/dos_modifier.rb

15 lines
205 B
Ruby

# This assumes you're on a recent ubuntu
# TODO - enforce this, or split it out...
module Lab
module Modifier
module Dos
def ping(target)
run_command("ping #{filter_input(target)}")
end
end
end
end