Files
metasploit-gs/lib/msf/core/auxiliary/dos.rb
T
HD Moore 6c240e14b1 Disbale DoS modules from automation
git-svn-id: file:///home/svn/framework3/trunk@5948 4d416f70-5f16-0410-b530-b9f4589650da
2008-11-18 19:56:03 +00:00

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