1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-11-05 14:57:30 +01:00

some cleanup, moving things around, fixing crap

git-svn-id: file:///home/svn/incoming/trunk@2681 4d416f70-5f16-0410-b530-b9f4589650da
This commit is contained in:
Spoon M 2005-07-09 17:09:46 +00:00
parent 5f18b24e8b
commit c62c46a3cd
2 changed files with 43 additions and 27 deletions

View File

@ -12,6 +12,11 @@ require 'Msf/Core/Module/Platform'
class Msf::Module::PlatformList
attr_accessor :platforms
#
# Transformation method, just accept an array or a single entry.
# This is just to make defining platform lists in a module more
# convenient, skape's a girl like that.
#
def self.transform(src)
if (src.kind_of?(Array))
from_a(src)
@ -20,44 +25,25 @@ class Msf::Module::PlatformList
end
end
#
# Create an instance from an array
#
def self.from_a(ary)
instance = self.new
instance.from_a(ary) if (ary)
return instance
self.new(*ary)
end
#
# Constructor, takes the entries are arguments
#
def initialize(*args)
self.platforms = [ ]
from_a(args) if (args.length)
from_a(args)
end
def empty?
return platforms.empty?
end
def from_a(ary)
ary.each { |a|
if a.kind_of?(String)
platforms << Msf::Module::Platform.find_platform(a)
elsif a.kind_of?(Range)
b = Msf::Module::Platform.find_platform(a.begin)
e = Msf::Module::Platform.find_platform(a.end)
children = b.superclass.find_children
r = (b::Rank .. e::Rank)
children.each { |c|
platforms << c if r.include?(c::Rank)
}
else
platforms << a
end
}
end
def names
platforms.map { |m| m.name.split('::')[3 .. -1].join(' ') }
end
@ -146,5 +132,30 @@ class Msf::Module::PlatformList
# XXX what's a better exception to throw here?
raise RuntimeError, "No more expansion possible", caller
end
#
# Hey skape, I don't see much the point of this. Why can't we just do it through
# the constructor? It doesn't make any sense otherwise...
#
def from_a(ary)
ary.each { |a|
if a.kind_of?(String)
platforms << Msf::Module::Platform.find_platform(a)
elsif a.kind_of?(Range)
b = Msf::Module::Platform.find_platform(a.begin)
e = Msf::Module::Platform.find_platform(a.end)
children = b.superclass.find_children
r = (b::Rank .. e::Rank)
children.each { |c|
platforms << c if r.include?(c::Rank)
}
else
platforms << a
end
}
end
end

View File

@ -20,6 +20,11 @@ class Msf::Module::PlatformList::UnitTest < Test::Unit::TestCase
assert_equal([ 'Windows X86 XP SP2' ], Msf::Module::PlatformList.new('winxpsp2').names)
end
def test_transform
assert_equal([ 'Windows X86 XP SP2' ], Msf::Module::PlatformList.transform('winxpsp2').names)
assert_equal([ 'Windows X86 XP SP2' ], Msf::Module::PlatformList.transform(['winxpsp2']).names)
end
def test_all
assert_equal( [ Msf::Module::Platform ], Msf::Module::PlatformList.new('').platforms)
end