Land #11894, Note deprecated DIAL protocol in chromecast_youtube

This commit is contained in:
Jacob Robles
2019-05-29 12:51:43 -05:00
committed by Metasploit
parent 977566be64
commit 974e5d5750
2 changed files with 8 additions and 2 deletions
@@ -2,9 +2,11 @@ This module plays (by default) ["Epic sax guy 10 hours"](https://www.youtube.com
Naturally, audio should be cranked to 11 before running this module.
Only the deprecated DIAL protocol is supported by this module. Casting via the newer CASTV2 protocol is unsupported at this time.
## Verification Steps
1. Do: ```use auxiliary/scanner/http/chromecast_webserver ```
1. Do: ```use auxiliary/admin/chromecast/chromecast_youtube```
2. Do: ```set RHOST [IP]```
3. Do: ```run```
@@ -11,6 +11,9 @@ class MetasploitModule < Msf::Auxiliary
'Name' => 'Chromecast YouTube Remote Control',
'Description' => %q{
This module acts as a simple remote control for Chromecast YouTube.
Only the deprecated DIAL protocol is supported by this module.
Casting via the newer CASTV2 protocol is unsupported at this time.
},
'Author' => ['wvu'],
'References' => [
@@ -48,7 +51,8 @@ class MetasploitModule < Msf::Auxiliary
when 200
print_status('Stopping video')
when 404
print_error("Couldn't #{action.name.downcase} video")
print_error('Target no longer supports casting via the DIAL protocol. ' \
'CASTV2 is not supported by this module at this time.')
end
end