fix comments

git-svn-id: file:///home/svn/framework3/trunk@10995 4d416f70-5f16-0410-b530-b9f4589650da
unstable
Joshua Drake 2010-11-11 22:19:34 +00:00
parent 089ace9726
commit 9fb0e1a0bb
3 changed files with 6 additions and 6 deletions

View File

@ -36,7 +36,7 @@ module Metasploit3
'Platform' => 'bsd',
'Arch' => ARCH_X86))
# Register adduser options
# Register exec options
register_options(
[
OptString.new('CMD', [ true, "The command string to execute" ]),
@ -44,7 +44,7 @@ module Metasploit3
end
#
# Dynamically builds the adduser payload based on the user's options.
# Dynamically builds the exec payload based on the user's options.
#
def generate_stage
cmd = datastore['CMD'] || ''

View File

@ -34,7 +34,7 @@ module Metasploit3
'Platform' => 'linux',
'Arch' => ARCH_X86))
# Register adduser options
# Register exec options
register_options(
[
OptString.new('CMD', [ true, "The command string to execute" ]),
@ -42,7 +42,7 @@ module Metasploit3
end
#
# Dynamically builds the adduser payload based on the user's options.
# Dynamically builds the exec payload based on the user's options.
#
def generate_stage
cmd = datastore['CMD'] || ''

View File

@ -35,7 +35,7 @@ module Metasploit3
'Platform' => 'osx',
'Arch' => ARCH_X86))
# Register adduser options
# Register exec options
register_options(
[
OptString.new('CMD', [ true, "The command string to execute" ]),
@ -43,7 +43,7 @@ module Metasploit3
end
#
# Dynamically builds the adduser payload based on the user's options.
# Dynamically builds the exec payload based on the user's options.
#
def generate
cmd = datastore['CMD'] || ''