2006-05-08 15:04:50 +00:00
|
|
|
require 'msf/core'
|
|
|
|
|
|
|
|
module Msf
|
|
|
|
|
|
|
|
###
|
|
|
|
#
|
|
|
|
# This class provides common options for certain alphanumeric encoders.
|
|
|
|
#
|
|
|
|
###
|
|
|
|
class Encoder::NonUpper < Msf::Encoder
|
|
|
|
|
|
|
|
def initialize(info)
|
|
|
|
super(info)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2008-10-19 21:03:39 +00:00
|
|
|
end
|