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/encoder/nonalpha.rb
Views: 11784
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