prototypical

git-svn-id: file:///home/svn/incoming/trunk@2505 4d416f70-5f16-0410-b530-b9f4589650da
unstable
Matt Miller 2005-05-22 07:30:03 +00:00
parent a130617de0
commit 4e3e97d83d
2 changed files with 10 additions and 10 deletions

View File

@ -15,8 +15,8 @@ module Msf
class ModuleSet < Hash
def initialize(type)
self.module_type = type
self.full_names = {}
self.ambiguous_names = {}
self.short_names = {}
end
# Create an instance of the supplied module by its name
@ -27,9 +27,9 @@ class ModuleSet < Hash
caller)
end
# If not by full name, then by short name, or so sayeth the spider
# If not by short name, then by full name, or so sayeth the spider
if ((klass = self[name]) == nil)
klass = short_names[name]
klass = full_names[name]
end
# Otherwise, try to create it
@ -47,18 +47,18 @@ class ModuleSet < Hash
if (self[short_name])
ambiguous_names << short_name
else
short_names[short_name] = module_class
self[short_name] = module_class
end
self[full_name] = module_class
full_names[full_name] = module_class
end
attr_reader :module_type
attr_reader :module_type, :full_names
protected
attr_writer :module_type
attr_accessor :ambiguous_names, :short_names
attr_writer :module_type, :full_names
attr_accessor :ambiguous_names
end

View File

@ -13,8 +13,8 @@ framework = Msf::Framework.new
framework.modules.add_module_path('/home/mmiller/msf/rubyhacks/prototype/Modules')
framework.encoders.each_module { |name|
puts "got encoder #{name}"
framework.encoders.each { |name, mod|
puts "got encoder #{name} => #{mod}"
}
encoder = framework.encoders.create('JmpCallAdditive')