From 7145e80b4f78cff5ed5fee04d4c4d53daaa0e077 Mon Sep 17 00:00:00 2001 From: Maxim Andreev Date: Wed, 13 Jan 2016 11:51:12 +0300 Subject: [PATCH] avformat/hls: forbid all protocols except http(s) & file Signed-off-by: Michael Niedermayer --- libavformat/hls.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libavformat/hls.c b/libavformat/hls.c index cd6450178d..8063afcfdd 100644 --- a/libavformat/hls.c +++ b/libavformat/hls.c @@ -610,6 +610,10 @@ static int open_url(HLSContext *c, URLContext **uc, const char *url, AVDictionar { AVDictionary *tmp = NULL; int ret; + const char *proto_name = avio_find_protocol_name(url); + // only http(s) & file are allowed + if (!av_strstart(proto_name, "http", NULL) && !av_strstart(proto_name, "file", NULL)) + return AVERROR_INVALIDDATA; av_dict_copy(&tmp, c->avio_opts, 0); av_dict_copy(&tmp, opts, 0);