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/util/dot_net_deserialization/formatters.rb
Views: 11784
1
module Msf
2
module Util
3
module DotNetDeserialization
4
module Formatters
5
6
7
NAMES = [
8
:BinaryFormatter,
9
:LosFormatter,
10
:SoapFormatter
11
]
12
13
end
14
end
15
end
16
end
17
18