mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00
check that image bytes are actually an image
This commit is contained in:
parent
f17023ecad
commit
55cfc44776
@ -1,4 +1,5 @@
|
|||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Net;
|
using System.Net;
|
||||||
using System.Net.Http;
|
using System.Net.Http;
|
||||||
@ -18,6 +19,15 @@ namespace Bit.Icons.Controllers
|
|||||||
AllowAutoRedirect = false,
|
AllowAutoRedirect = false,
|
||||||
AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate
|
AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate
|
||||||
});
|
});
|
||||||
|
static readonly List<byte[]> _validImageData = new List<byte[]>
|
||||||
|
{
|
||||||
|
// png
|
||||||
|
new byte[] { 137, 80, 78, 71 },
|
||||||
|
// ico
|
||||||
|
new byte[] { 00, 00, 01, 00 },
|
||||||
|
// jpeg
|
||||||
|
new byte[] { 255, 216, 255 }
|
||||||
|
};
|
||||||
private readonly IMemoryCache _memoryCache;
|
private readonly IMemoryCache _memoryCache;
|
||||||
private readonly IDomainMappingService _domainMappingService;
|
private readonly IDomainMappingService _domainMappingService;
|
||||||
private readonly IconsSettings _iconsSettings;
|
private readonly IconsSettings _iconsSettings;
|
||||||
@ -60,6 +70,11 @@ namespace Bit.Icons.Controllers
|
|||||||
}
|
}
|
||||||
|
|
||||||
var image = await response.Content.ReadAsByteArrayAsync();
|
var image = await response.Content.ReadAsByteArrayAsync();
|
||||||
|
if(!_validImageData.Any(d => d.SequenceEqual(image.Take(d.Length))))
|
||||||
|
{
|
||||||
|
return new NotFoundResult();
|
||||||
|
}
|
||||||
|
|
||||||
icon = new Icon
|
icon = new Icon
|
||||||
{
|
{
|
||||||
Image = image,
|
Image = image,
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"iconsSettings": {
|
"iconsSettings": {
|
||||||
"bestIconBaseUrl": "https://icons.better-idea.org",
|
"bestIconBaseUrl": "https://besticon-demo.herokuapp.com",
|
||||||
"cacheHours": 24,
|
"cacheHours": 24,
|
||||||
"cacheSizeLimit": null
|
"cacheSizeLimit": null
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user