Files
metasploit-gs/lib/msf/core/auxiliary/dos.rb
T
Tab Assassin 7e5e0f7fc8 Retab lib
2013-08-30 16:28:33 -05:00

20 lines
220 B
Ruby

# -*- coding: binary -*-
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