19 lines
208 B
Ruby
19 lines
208 B
Ruby
|
require 'msf/core'
|
||
|
|
||
|
module Msf
|
||
|
|
||
|
###
|
||
|
#
|
||
|
# This class provides common options for certain alphanumeric encoders.
|
||
|
#
|
||
|
###
|
||
|
class Encoder::NonAlpha < Msf::Encoder
|
||
|
|
||
|
def initialize(info)
|
||
|
super(info)
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
end
|