CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

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