diff options
author | sr55 <[email protected]> | 2016-07-29 20:57:50 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2016-07-29 20:58:01 +0100 |
commit | f1e44bfa9c90651d06f491cc5a843741bdcfbb47 (patch) | |
tree | 33dc7963efd41168d342e16f37b0a4e97362afa0 /win/CS/HandBrakeWPF/Services | |
parent | 7dee9f06d4afbab013108a4b34c264904017acc7 (diff) |
WinGui: Enhance the security of our update checker. It can no longer access URL's that are not *.handbrake.fr if served with a compromised appcast.
Diffstat (limited to 'win/CS/HandBrakeWPF/Services')
-rw-r--r-- | win/CS/HandBrakeWPF/Services/UpdateService.cs | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/win/CS/HandBrakeWPF/Services/UpdateService.cs b/win/CS/HandBrakeWPF/Services/UpdateService.cs index e5c97126f..6a8885a07 100644 --- a/win/CS/HandBrakeWPF/Services/UpdateService.cs +++ b/win/CS/HandBrakeWPF/Services/UpdateService.cs @@ -93,6 +93,7 @@ namespace HandBrakeWPF.Services {
try
{
+ // Figure out which appcast we want to read.
string url =
VersionHelper.Is64Bit() || Environment.Is64BitOperatingSystem
? Constants.Appcast64
@@ -108,20 +109,32 @@ namespace HandBrakeWPF.Services var currentBuild = HandBrakeUtils.Build;
- // Initialize variables
- WebRequest request = WebRequest.Create(url);
+ // Fetch the Appcast from our server.
+ HttpWebRequest request = (HttpWebRequest) WebRequest.Create(url);
+ request.AllowAutoRedirect = false; // We will never do this.
WebResponse response = request.GetResponse();
- var reader = new AppcastReader();
- // Get the data, convert it to a string, and parse it into the AppcastReader
+ // Parse the data with the AppcastReader
+ var reader = new AppcastReader();
reader.GetUpdateInfo(new StreamReader(response.GetResponseStream()).ReadToEnd());
// Further parse the information
string build = reader.Build;
-
int latest = int.Parse(build);
int current = currentBuild;
+ // Security Check
+ // Verify the download URL is for handbrake.fr and served over https.
+ // This prevents a compromised appcast download tricking the GUI into downloading a file, or accessing another website or local network resource.
+ Uri uriResult;
+ bool result = Uri.TryCreate(reader.DownloadFile, UriKind.Absolute, out uriResult) && uriResult.Scheme == Uri.UriSchemeHttps;
+ if (!result || (uriResult.Host != "handbrake.fr" && uriResult.Host != "download.handbrake.fr"))
+ {
+ callback(new UpdateCheckInformation { NewVersionAvailable = false, Error = new Exception("The HandBrake update service is currently unavailable.") });
+ return;
+ }
+
+ // Validate the URL from the appcast is ours.
var info2 = new UpdateCheckInformation
{
NewVersionAvailable = latest > current,
|