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/encoder/nonalpha.rb
Views: 1904
1
# -*- coding: binary -*-
2
3
module Msf
4
5
###
6
#
7
# This class provides common options for certain alphanumeric encoders.
8
#
9
###
10
class Encoder::NonAlpha < Msf::Encoder
11
12
def initialize(info)
13
super(info)
14
end
15
16
end
17
18
end
19
20