2012-06-29 05:18:28 +00:00
|
|
|
# -*- coding: binary -*-
|
2006-04-21 12:31:11 +00:00
|
|
|
require 'msf/core'
|
|
|
|
|
|
|
|
module Msf
|
|
|
|
|
|
|
|
###
|
|
|
|
#
|
|
|
|
# This class provides common options for certain alphanumeric encoders.
|
|
|
|
#
|
|
|
|
###
|
|
|
|
class Encoder::NonAlpha < Msf::Encoder
|
|
|
|
|
2013-08-30 21:28:33 +00:00
|
|
|
def initialize(info)
|
|
|
|
super(info)
|
|
|
|
end
|
2011-11-20 01:01:19 +00:00
|
|
|
|
2006-04-21 12:31:11 +00:00
|
|
|
end
|
|
|
|
|
2011-11-20 01:01:19 +00:00
|
|
|
end
|