FileTypeChecker.Web is easy to use yet powerfull library that will help you to secure your web applications and validate all files that are provided by external sources. With this library you will recive access to some additional validation attributes that will enable you to easily allow or forbid certain types of files in your controllers or input models. For example you can restrict your users to be able to upload only images or only archives just by setting an attribute into your method or class.
Have you ever had a requirement to validate the type of the file that a user provided? How do you do that? How do you validate that the file type is allowed? How do you protect your application from malicious file? It is standard practice to use the FileSystemInfo class provided by Microsoft and its Extension property for this kind of job, but is that enough? The answer is simple - No! This is why this small but powerfull library comes to help you.
FileTypeChecker uses files "magic numbers" to identify the type. According to Wikipedia this term ("magic numbers") was used for a specific set of 2-byte identifiers at the beginnings of files, but since any binary sequence can be regarded as a number, any feature of a file format which uniquely distinguishes it can be used for identification. This approach offers better guarantees that the format will be identified correctly, and can often determine more precise information about the file. See more about Magic Numbers
You can install this library using NuGet into your project.
Install-Package File.TypeChecker.Web
or by using dotnet CLI
dotnet add package File.TypeChecker.Web
All validation attributes should be used over IFormFile interface and can be used in a class over property or with method parameter.
- AllowImages: This validation attribute will restrict IFormFile to be only image format like jpg, gif, bmp, png and tiff
- AllowArchives: This validation attribute will restrict IFormFile to be only archive.
- AllowDocuments: This validation attribute will restrict IFormFile to be only document.
- AllowedTypes: This validation attribute will allow you to specify what types of file you want to receive from user. We advice you to use FileExtension class to specify the extension string.
- ForbidExecutables: This validation attribute will forbid your users to upload executable files.
- ForbidTypes: This validation attribute will allow you to specify what types of file you don't want to recive from user. We advice you to use FileExtension class to specify the extension string.
[HttpPost]
public IActionResult UploadFiles([AllowImages] IFormFile imageFile, [AllowArchives] IFormFile archiveFile)
{
// Some cool code here ...
}
using FileTypeChecker.Web.Attributes;
public class InputModel
{
[AllowImages]
public IFormFile FirstFile { get; set; }
[AllowArchives]
public IFormFile SecondFile { get; set; }
[AllowedTypes(FileExtension.Bitmap)]
public IFormFile ThirdFile { get; set; }
[ForbidExecutables]
public IFormFile FourthFile { get; set; }
[ForbidTypes(FileExtension.Doc)]
public IFormFile FifthFile { get; set; }
}
If you are interested in finding more samples please use our wiki page.
FileTypeChecker.Web is able to identify more than 22 different types but also you are able to register your own types.
public class Startup
{
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
// More registration here ...
services.AddFileTypesValidation(typeof(InputModel).Assembly);
}
}
For more information please visit our wiki page
- If you like this library, ⭐️ the repository and show it to your friends!
- If you find this library usefull and it helps you please consider to support the project, you can do by buying me a cup of coffee.