Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/msf/core/auxiliary/dos.rb
21537 views
1
# -*- coding: binary -*-
2
module Msf
3
4
###
5
#
6
# This module provides methods for Denial of Service attacks
7
#
8
###
9
10
module Auxiliary::Dos
11
12
13
# Never include DoS modules in automated attacks
14
def autofilter
15
false
16
end
17
18
end
19
end
20
21