mirror of
				https://gitea.invidious.io/iv-org/invidious
				synced 2025-06-05 23:29:12 +02:00 
			
		
		
		
	Merge pull request #2891 from SamantazFox/check-host-param
video_playback: Check "host" parameter validity
This commit is contained in:
		@@ -14,12 +14,18 @@ module Invidious::Routes::VideoPlayback
 | 
			
		||||
    end
 | 
			
		||||
 | 
			
		||||
    if query_params["host"]? && !query_params["host"].empty?
 | 
			
		||||
      host = "https://#{query_params["host"]}"
 | 
			
		||||
      host = query_params["host"]
 | 
			
		||||
      query_params.delete("host")
 | 
			
		||||
    else
 | 
			
		||||
      host = "https://r#{fvip}---#{mns.pop}.googlevideo.com"
 | 
			
		||||
      host = "r#{fvip}---#{mns.pop}.googlevideo.com"
 | 
			
		||||
    end
 | 
			
		||||
 | 
			
		||||
    # Sanity check, to avoid being used as an open proxy
 | 
			
		||||
    if !host.matches?(/[\w-]+.googlevideo.com/)
 | 
			
		||||
      return error_template(400, "Invalid \"host\" parameter.")
 | 
			
		||||
    end
 | 
			
		||||
 | 
			
		||||
    host = "https://#{host}"
 | 
			
		||||
    url = "/videoplayback?#{query_params}"
 | 
			
		||||
 | 
			
		||||
    headers = HTTP::Headers.new
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user