19 lines
217 B
Ruby
19 lines
217 B
Ruby
# -*- coding: binary -*-
|
|
|
|
module Msf
|
|
|
|
###
|
|
#
|
|
# This class provides common options for certain alphanumeric encoders.
|
|
#
|
|
###
|
|
class Encoder::NonAlpha < Msf::Encoder
|
|
|
|
def initialize(info)
|
|
super(info)
|
|
end
|
|
|
|
end
|
|
|
|
end
|