Correct camelCase of YouTube

This commit is contained in:
Tod Beardsley 2013-12-18 14:06:45 -06:00
parent ab69454f89
commit c4b8178663
No known key found for this signature in database
GPG Key ID: 1EFFB682ADB9F193
1 changed files with 4 additions and 4 deletions

View File

@ -11,11 +11,11 @@ class Metasploit3 < Msf::Post
def initialize(info={})
super( update_info( info,
'Name' => 'Multi Manage Youtube Broadcast',
'Name' => 'Multi Manage YouTube Broadcast',
'Description' => %q{
This module will broadcast a Youtube video on specified compromised systems. It will play
This module will broadcast a YouTube video on specified compromised systems. It will play
the video in the target machine's native browser in full screen mode. The VID datastore
option is the "v" parameter in a Youtube video's URL.
option is the "v" parameter in a YouTube video's URL.
},
'License' => MSF_LICENSE,
'Author' => [ 'sinn3r'],
@ -25,7 +25,7 @@ class Metasploit3 < Msf::Post
register_options(
[
OptString.new('VID', [true, 'The video ID to the Youtube video'])
OptString.new('VID', [true, 'The video ID to the YouTube video'])
], self.class)
end