fixed typo in simplified modules

git-svn-id: file:///home/svn/framework3/trunk@4465 4d416f70-5f16-0410-b530-b9f4589650da
This commit is contained in:
Matt Miller 2007-02-24 21:42:13 +00:00
parent 117d004e01
commit e8d036cac8
5 changed files with 9 additions and 4 deletions

View File

@ -23,7 +23,7 @@ module Auxiliary
# A string of comma separated option values that should be imported into # A string of comma separated option values that should be imported into
# the datastore. # the datastore.
# #
# Option # Options
# #
# A hash of values to be imported directly into the datastore. # A hash of values to be imported directly into the datastore.
# #

View File

@ -37,7 +37,7 @@ module Exploit
# A string of comma separated option values that should be imported into # A string of comma separated option values that should be imported into
# the datastore. # the datastore.
# #
# Option # Options
# #
# A hash of values to be imported directly into the datastore. # A hash of values to be imported directly into the datastore.
# #

View File

@ -18,7 +18,7 @@ module Module
def _import_extra_options(opts) def _import_extra_options(opts)
# If options were supplied, import them into the payload's # If options were supplied, import them into the payload's
# datastore # datastore
if (opts['Option']) if (opts['Options'])
self.datastore.import_options_from_hash(opts['Options']) self.datastore.import_options_from_hash(opts['Options'])
elsif (opts['OptionStr']) elsif (opts['OptionStr'])
self.datastore.import_options_from_s(opts['OptionStr']) self.datastore.import_options_from_s(opts['OptionStr'])

View File

@ -7,6 +7,9 @@ require 'rex/socket'
require 'rex/proto/dcerpc/client' require 'rex/proto/dcerpc/client'
require 'rex/proto/dcerpc/handle' require 'rex/proto/dcerpc/handle'
begin
require 'flexmock'
class Rex::Proto::DCERPC::Client::UnitTest < Test::Unit::TestCase class Rex::Proto::DCERPC::Client::UnitTest < Test::Unit::TestCase
Klass = Rex::Proto::DCERPC::Client Klass = Rex::Proto::DCERPC::Client
@ -482,3 +485,6 @@ read = [
def test_write def test_write
end end
end end
rescue LoadError
end

View File

@ -1,5 +1,4 @@
require 'test/unit' require 'test/unit'
require 'flexmock'
# DEFAULTS # DEFAULTS
module Rex module Rex