CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/msf/core/auxiliary/dos.rb
Views: 1904
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