Giter Site home page Giter Site logo

magicnumbers-validator's Introduction

Static Badge Nuget

About

MagicNumbers is a .NET library for file binary header validation against file extension. This package determines if the received file has the original extension or if it has been changed, by matching binary header data for every extension provided by MagicNumbers wiki.

Package name Description .NET NuGet
File.Validator Base file validator for regular use Static Badge Nuget
File.Validator.Web .NET Core REST API Middleware and annotations for MVC controllers Static Badge Nuget

Getting started

Base Package

dotnet add package File.Validator --version 1.0.0

.NET MVC

dotnet add package File.Validator.Web --version 1.0.0

Usage

Base package

Using isValidExtension from the FileValidator class required File.Validator package. By providing the binary stream, and expected extension, you can determine whether file data matches, that extension.

var extension = "exe";
var stream = new MemoryStream();

bool isValid = FileValidator.isValidExtension(stream, extension);

MVC REST API

File.Validator.Web provides one additional middleware for automatic file validation before request finalization. IApplicationBuilder interface extension from FileExtensionValidatorMiddlewareExtension should be used to register the middleware with UseFileValidation.

Note

To use annotations, middleware should be registered after endpoing routing middleware.

// Program.cs
app.UseRouting();
app.UseFileValidation();

Using controller annotations requires File.Validator.Web.Annotations.

Annotation Description Parameter
AllowedOnlyExtensions If extension NOT IN list, expect unauthorized. (still do validation) string[]
IgnoredExtensions If extension in list, skip file validation string[]
RejectedExtensions If extension IN list, expect unauthorized. (Do not do validation) string[]
[AllowedOnlyExtensions(new string[] {"pdf"})]
public IActionResult Index(IFormFile formFile)
{
    return View();
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.