diff --git a/documentation/modules/auxiliary/admin/chromecast/chromecast_youtube.md b/documentation/modules/auxiliary/admin/chromecast/chromecast_youtube.md index 0c31240ea7..2277b6ebe7 100644 --- a/documentation/modules/auxiliary/admin/chromecast/chromecast_youtube.md +++ b/documentation/modules/auxiliary/admin/chromecast/chromecast_youtube.md @@ -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``` diff --git a/modules/auxiliary/admin/chromecast/chromecast_youtube.rb b/modules/auxiliary/admin/chromecast/chromecast_youtube.rb index 4d1f9670aa..eef843f2b8 100644 --- a/modules/auxiliary/admin/chromecast/chromecast_youtube.rb +++ b/modules/auxiliary/admin/chromecast/chromecast_youtube.rb @@ -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