2006-06-15 15:52:01 +00:00
|
|
|
module Msf
|
|
|
|
|
|
|
|
###
|
|
|
|
#
|
|
|
|
# This module provides methods for Denial of Service attacks
|
|
|
|
#
|
|
|
|
###
|
|
|
|
|
|
|
|
module Auxiliary::Dos
|
|
|
|
|
|
|
|
|
2008-11-18 19:56:03 +00:00
|
|
|
# Never include DoS modules in automated attacks
|
|
|
|
def autofilter
|
|
|
|
false
|
|
|
|
end
|
2006-06-15 15:52:01 +00:00
|
|
|
|
|
|
|
end
|
2008-11-18 19:56:03 +00:00
|
|
|
end
|