fix comments
git-svn-id: file:///home/svn/framework3/trunk@10995 4d416f70-5f16-0410-b530-b9f4589650daunstable
parent
089ace9726
commit
9fb0e1a0bb
|
@ -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'] || ''
|
||||
|
|
|
@ -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'] || ''
|
||||
|
|
|
@ -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'] || ''
|
||||
|
|
Loading…
Reference in New Issue