Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/msf/base/simple/encoder.rb
21551 views
1
# -*- coding: binary -*-
2
module Msf
3
module Simple
4
5
###
6
#
7
# A simplified encoder wrapper. Currently there is no simplification
8
# required. This is here because stuff is there.
9
#
10
###
11
module Encoder
12
include Module
13
end
14
15
end
16
end
17
18