metasploit-framework/lib/msf/core/auxiliary/dos.rb

19 lines
194 B
Ruby

module Msf
###
#
# This module provides methods for Denial of Service attacks
#
###
module Auxiliary::Dos
# Never include DoS modules in automated attacks
def autofilter
false
end
end
end