Audit.Mvc 26.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Audit.Mvc --version 26.0.0                
NuGet\Install-Package Audit.Mvc -Version 26.0.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Audit.Mvc" Version="26.0.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Audit.Mvc --version 26.0.0                
#r "nuget: Audit.Mvc, 26.0.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Audit.Mvc as a Cake Addin
#addin nuget:?package=Audit.Mvc&version=26.0.0

// Install Audit.Mvc as a Cake Tool
#tool nuget:?package=Audit.Mvc&version=26.0.0                

Audit.Mvc

MVC Actions Audit Extension for Audit.NET library. (An extensible framework to audit executing operations in .NET).

Generate Audit Trails for MVC actions. Supporting Asp NET Core Mvc.

Audit.Mvc / Audit.Mvc.Core provides the infrastructure to log interactions with MVC applications. It can record action methods calls to controllers and razor pages.

Install

NuGet Packages

NuGet Status NuGet Count

NuGet Status NuGet Count

To install the ASP.NET package run the following command on the Package Manager Console:

PM> Install-Package Audit.Mvc

To install the Asp Net Core package:

PM> Install-Package Audit.Mvc.Core

IMPORTANT NOTE

Previously, it was possible to employ the Audit.Mvc package for ASP.NET Core MVC or vice versa.

However, starting from version 23, the Audit.Mvc package is now exclusively designed for ASP.NET Framework MVC, whereas the Audit.Mvc.Core package is exclusively tailored for ASP.NET Core MVC.

Please upgrade your references accordingly.

Usage

MVC Controllers

Decorate the MVC Actions or Controllers you want to audit with [Audit] action filter.

For example:

public class HomeController : Controller
{
    [Audit]
    public ActionResult Index(int id, string name)
    {
      //...
      return View(new SomeViewModel() { Id = id, Name = name });
    }

    [Audit(EventType = "InsertOrderAction", IncludeHeaders = true, IncludeModel = true)]
    [HttpPost]
    public ActionResult TestPost(SomeViewModel model)
    {
      //...
    }
}

The [Audit] attribute cannot be used on razor pages, because action filters are not supported on razor pages.

Razor pages

To audit razor pages, include the AuditPageFilter on the filters collection on your startup code, for example:

public void ConfigureServices(IServiceCollection services)
{
    services.AddRazorPages()
        .AddMvcOptions(options =>
        {
            options.Filters.Add(new AuditPageFilter()
            {
                IncludeHeaders = true
            });
        });
}

Or you can apply the filter only to certain pages, for example for pages under /Movies path:

public void ConfigureServices(IServiceCollection services)
{
    services.AddRazorPages(options =>
    {
        options.Conventions.AddFolderApplicationModelConvention("/Movies", model => model.Filters.Add(new AuditPageFilter()
        {
            IncludeResponseBody = true
        }));
    });
}

Alternatively, if you want to setup the audit on a particular page and/or don't want to add the filter as a global filter, you can override the OnPageHandlerExecutionAsync on your page model and manually call the same method on an AuditPageFilter instance:

public class YourPageModel : PageModel
{
    private readonly AuditPageFilter _pageFilter = new AuditPageFilter() { IncludeHeaders = true };

    public override async Task OnPageHandlerExecutionAsync(PageHandlerExecutingContext context, PageHandlerExecutionDelegate next)
    {
        await _pageFilter.OnPageHandlerExecutionAsync(context, next);
    }
    // ...
}

Configuration

Output

The MVC audit events are stored using a Data Provider. You can use one of the available data providers or implement your own. Please refer to the data providers section on Audit.NET documentation.

Settings

The AuditAttribute can be configured with the following properties:

  • EventType: A string that identifies the event type. Can contain the following placeholders:
    • {controller}: replaced with the controller name (only for MVC).
    • {action}: replaced with the action method name (or the display name for razor pages).
    • {verb}: replaced with the HTTP verb used (GET, POST, etc).
    • {area}: replaced with the area name (only for razor pages).
    • {path}: replaced with the view path (only for razor pages).
  • IncludeHeaders: Boolean to indicate whether to include the Http Request Headers or not.
  • IncludeModel: Boolean to indicate whether to include the View Model or not.
  • IncludeRequestBody: Boolean to indicate whether to include or exclude the request body from the logs. Default is false. (Check following note)
  • IncludeResponseBody: Boolean to indicate whether to include response body or not. Default is false.
  • SerializeActionParameters: Boolean to indicate whether the action arguments should be pre-serialized to the audit event. Default is false.

To configure the output persistence mechanism please see Event Output Configuration.

NOTE

When IncludeRequestBody is set to true you may need to enable rewind on the request body stream, otherwise the controller won't be able to read the request body more than once (by default it's a forwand-only stream that can be read only once). You can enable rewind on your startup logic with the following startup code:

public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
    app.Use(async (context, next) => {
        context.Request.EnableBuffering();
        await next();
    });
}

Audit Ignore attribute

To selectively exclude certain controllers, action methods, action parameters or return values, you can decorate them with AuditIgnore attribute.

For example:

[Audit(IncludeHeaders = true, IncludeModel = true)]
public class AccountController : Controller
{
    [HttpGet]
    [AuditIgnore]
    public IEnumerable<string> GetAccounts()
    {
        // this action will not be audited
    }

    [HttpPost]
    public IEnumerable<string> PostAccount(string user, [AuditIgnore]string password)
    {
        // password argument will not be audited
    }

    [HttpGet]
    [return:AuditIgnore]
    public IEnumerable<string> GetSecrets(string user)
    {
        // the response body of this action will not be audited
    }
}

You can also decorate the razor pages classes, methods or arguments to be ignored on the audits:

public class IndexModel : PageModel
{
    [return:AuditIgnore]
    public IActionResult OnGet(string user)
    {
        // the response of this action will not be audited
    }

    [AuditIgnore]
    public void OnDelete(string user)
    {
        // this action will not be audited
    }

    public async Task<IActionResult> OnPostAsync([AuditIgnore]string password)
    {
        // password argument will not be audited
    }
}

Output details

The following table describes the Audit.Mvc output fields:

Field Name Type Description
TraceId string A unique identifier per request
HttpMethod string HTTP method (GET, POST, etc)
ControllerName string The controller name (or the area name for razor pages)
ActionName string The action name (or the display name for razor pages)
ViewName string The view name (if any)
ViewPath string View physical path (if any)
FormVariables Object Form-data input variables passed to the action
ActionParameters Object The action parameters passed
RequestBody BodyContent The request body (optional)
ResponseBody BodyContent The response body (optional)
UserName string Username on the HttpContext Identity
RequestUrl string URL of the request
IpAddress string Client IP address
ResponseStatusCode integer HTTP response status code
ResponseStatus string Response status description
Headers Object HTTP Headers (optional)
Model Object The model object returned by the controller (if any) (optional)
ModelStateValid boolean Boolean to indicate if the model is valid
ModelStateErrors string Error description when the model is invalid
RedirectLocation string The redirect location (if any)
Exception string The exception thrown details (if any)

BodyContent

Field Name Type Description
Type string The body type reported
Length long? The length of the body if reported
Value Object The body content

Customization

You can access the Audit Scope from the controller action by calling the Controller extension method GetCurrentAuditScope().

For example:

public class HomeController : Controller
{
    [Audit]
    public ActionResult Index(int id, string name)
    {
       //...
       var auditScope = this.GetCurrentAuditScope();
       auditScope.Comment("New comment from controller");
       auditScope.SetCustomField("TestField", Guid.NewGuid());
       //...
    }
}

See Audit.NET documentation about Custom Field and Comments for more information.

Output Sample for Get operation

HomeController.Index (GET) with params: id=1234567&name=test

{
    "EventType": "Home/Index (GET)",
    "Environment": {
        ...
    },
    "StartDate": "2016-08-22T18:31:14.6550924-05:00",
    "EndDate": "2016-08-22T18:31:23.1834012-05:00",
    "Duration": 8529,
    "Action": {
        "TraceId": "0HLFLQP4HGFAG_00000001",
        "HttpMethod": "GET",
        "ControllerName": "Home",
        "ActionName": "Index",
        "ViewName": "Index",
        "ViewPath": "~/Views/Home/Index.cshtml",
        "FormVariables": {},
        "ActionParameters": {
            "id": 1234567,
            "name": "test",
        },
        "UserName": "federico@mycompany.com",
        "RequestUrl": "/",
        "IpAddress": "127.0.0.1",
        "ResponseStatus": "200 OK",
        "ResponseStatusCode": 200,
        "ModelStateValid": true,
        "RedirectLocation": null
    }
}

Output Sample for Post operation

HomeController.TestPost (POST) with body: id=1234567&name=test

{
    "EventType": "InsertOrderAction",
    "Environment": {
        ...
    },
    "StartDate": "2016-08-22T18:31:00.0020036-05:00",
    "EndDate": "2016-08-22T18:31:15.1705128-05:00",
    "Duration": 15000,
    "Action": {
        "TraceId": "0HLFLQP4HGFAG_00000002",
        "HttpMethod": "POST",
        "ControllerName": "Home",
        "ActionName": "TestPost",
        "FormVariables": {
            "id": "1234567",
            "name": "test"
        },
        "ActionParameters": {
            "model": {
                "id": 1234567,
                "name": "test"
            }
        },
        "UserName": "federico@mycompany.com",
        "RequestUrl": "/Home/TestPost",
        "IpAddress": "::1",
        "ResponseStatus": "200 OK",
        "ResponseStatusCode": 200,
        "Headers": {
            "Cache-Control": "max-age=0",
            "Connection": "keep-alive",
            "Content-Length": "24",
            "Content-Type": "application/x-www-form-urlencoded",
            "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8",
            "Accept-Encoding": "gzip, deflate",
            "Accept-Language": "es-419,es;q=0.8",
            "Host": "localhost:37341",
            "Referer": "http://localhost:37341/",
            "User-Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743",
            "Origin": "http://localhost:37341",
            "Upgrade-Insecure-Requests": "1"
        },
        "ModelStateValid": false,
        "ModelStateErrors": {
            "Id": "The field Id must be between 0 and 9999."
        },
        "RedirectLocation": null
    }
}

MVC template (dotnet new)

If you are creating an ASP.NET Core MVC project from scratch, you can use the dotnet new template provided on the library Audit.Mvc.Template. This allows to quickly generate an audit-enabled MVC project that can be used as a starting point for your project or as a working example.

To install the template on your system, just type:

dotnet new -i Audit.Mvc.Template

Once you install the template, you should see it on the dotnet new templates list with the name mvcaudit as follows:

capture

You can now create a new project on the current folder by running:

dotnet new mvcaudit

This will create a new Asp.NET Core 2.1 project.

To get help about the options:

dotnet new mvcaudit -h

Contribute

If you like this project please contribute in any of the following ways:

  • Star this project on GitHub.
  • Request a new feature or expose any bug you found by creating a new issue.
  • Ask any questions about the library on StackOverflow.
  • Subscribe to and use the Gitter Audit.NET channel.
  • Support the project by becoming a Backer: Backer    
  • Spread the word by blogging about it, or sharing it on social networks: <p class="share-buttons"> <a href="https://www.facebook.com/sharer/sharer.php?u=https://nuget.org/packages/Audit.NET/&t=Check+out+Audit.NET" target="_blank"> <img width="24" height="24" alt="Share this package on Facebook" src="https://nuget.org/Content/gallery/img/facebook.svg" / > </a> <a href="https://twitter.com/intent/tweet?url=https://nuget.org/packages/Audit.NET/&text=Check+out+Audit.NET" target="_blank"> <img width="24" height="24" alt="Tweet this package" src="https://nuget.org/Content/gallery/img/twitter.svg" /> </a> </p>
  • Buy me a coffee via ko-fi: <br/>ko-fi
Product Compatible and additional computed target framework versions.
.NET Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Audit.Mvc:

Package Downloads
BuildingBlocks.Logging

Componente para geração de logs.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
27.1.1 79 10/28/2024
27.1.0 79 10/24/2024
27.0.3 109 9/25/2024
27.0.2 91 9/19/2024
27.0.1 135 9/4/2024
27.0.0 105 9/3/2024
26.0.1 138 8/22/2024
26.0.0 134 7/19/2024
25.0.7 119 7/4/2024
25.0.6 113 6/24/2024
25.0.5 799 6/18/2024
25.0.4 189 3/24/2024
25.0.3 527 3/13/2024
25.0.2 115 3/12/2024
25.0.1 133 2/28/2024
25.0.0 122 2/16/2024
24.0.1 148 2/12/2024
24.0.0 130 2/12/2024
23.0.0 1,724 12/14/2023
22.1.0 26,509 12/9/2023
22.0.2 11,978 12/1/2023
22.0.1 236 11/16/2023
22.0.0 131 11/14/2023
21.1.0 614 10/9/2023
21.0.4 22,251 9/15/2023
21.0.3 13,309 7/9/2023
21.0.2 224 7/6/2023
21.0.1 23,332 5/27/2023
21.0.0 1,201 4/15/2023
20.2.4 390 3/27/2023
20.2.3 401 3/17/2023
20.2.2 331 3/14/2023
20.2.1 305 3/11/2023
20.2.0 323 3/7/2023
20.1.6 406 2/23/2023
20.1.5 18,814 2/9/2023
20.1.4 407 1/28/2023
20.1.3 1,603 12/21/2022
20.1.2 4,093 12/14/2022
20.1.1 398 12/12/2022
20.1.0 397 12/4/2022
20.0.4 400 11/30/2022
20.0.3 2,422 10/28/2022
20.0.2 504 10/26/2022
20.0.1 529 10/21/2022
20.0.0 11,053 10/1/2022
19.4.1 5,580 9/10/2022
19.4.0 2,119 9/2/2022
19.3.0 3,119 8/23/2022
19.2.2 1,389 8/11/2022
19.2.1 881 8/6/2022
19.2.0 1,089 7/24/2022
19.1.4 1,393 5/23/2022
19.1.3 603 5/22/2022
19.1.2 695 5/18/2022
19.1.1 1,129 4/28/2022
19.1.0 726 4/10/2022
19.0.7 1,645 3/13/2022
19.0.6 1,596 3/7/2022
19.0.5 1,155 1/28/2022
19.0.4 859 1/23/2022
19.0.3 5,860 12/14/2021
19.0.2 507 12/11/2021
19.0.1 942 11/20/2021
19.0.0 587 11/11/2021
19.0.0-rc.net60.2 177 9/26/2021
19.0.0-rc.net60.1 213 9/16/2021
18.1.6 13,583 9/26/2021
18.1.5 1,279 9/7/2021
18.1.4 648 9/6/2021
18.1.3 1,147 8/19/2021
18.1.2 736 8/8/2021
18.1.1 616 8/5/2021
18.1.0 700 8/1/2021
18.0.1 709 7/30/2021
18.0.0 795 7/26/2021
17.0.8 829 7/7/2021
17.0.7 1,251 6/16/2021
17.0.6 790 6/5/2021
17.0.5 2,917 5/28/2021
17.0.4 2,940 5/4/2021
17.0.3 637 5/1/2021
17.0.2 21,200 4/22/2021
17.0.1 641 4/18/2021
17.0.0 731 3/26/2021
16.5.6 679 3/25/2021
16.5.5 665 3/23/2021
16.5.4 811 3/9/2021
16.5.3 715 2/26/2021
16.5.2 654 2/23/2021
16.5.1 644 2/21/2021
16.5.0 3,074 2/17/2021
16.4.5 628 2/15/2021
16.4.4 990 2/5/2021
16.4.3 1,116 1/27/2021
16.4.2 738 1/22/2021
16.4.1 755 1/21/2021
16.4.0 2,163 1/11/2021
16.3.3 682 1/8/2021
16.3.2 671 1/3/2021
16.3.1 667 12/31/2020
16.3.0 722 12/30/2020
16.2.1 736 12/27/2020
16.2.0 1,610 10/13/2020
16.1.5 817 10/4/2020
16.1.4 890 9/17/2020
16.1.3 847 9/13/2020
16.1.2 2,147 9/9/2020
16.1.1 802 9/3/2020
16.1.0 1,542 8/19/2020
16.0.3 852 8/15/2020
16.0.2 797 8/9/2020
16.0.1 895 8/8/2020
16.0.0 752 8/7/2020
15.3.0 62,464 7/23/2020
15.2.3 1,429 7/14/2020
15.2.2 3,379 5/19/2020
15.2.1 6,915 5/12/2020
15.2.0 854 5/9/2020
15.1.1 1,698 5/4/2020
15.1.0 941 4/13/2020
15.0.5 1,398 3/18/2020
15.0.4 1,070 2/28/2020
15.0.3 836 2/26/2020
15.0.2 3,414 1/20/2020
15.0.1 1,004 1/10/2020
15.0.0 1,333 12/17/2019
14.9.1 1,036 11/30/2019
14.9.0 841 11/29/2019
14.8.1 791 11/26/2019
14.8.0 893 11/20/2019
14.7.0 41,152 10/9/2019
14.6.6 844 10/8/2019
14.6.5 911 9/27/2019
14.6.4 960 9/21/2019
14.6.3 1,965 8/12/2019
14.6.2 973 8/3/2019
14.6.1 848 8/3/2019
14.6.0 905 7/26/2019
14.5.7 2,322 7/18/2019
14.5.6 1,516 7/10/2019
14.5.5 1,197 7/1/2019
14.5.4 1,113 6/17/2019
14.5.3 1,217 6/5/2019
14.5.2 878 5/30/2019
14.5.1 844 5/28/2019
14.5.0 966 5/24/2019
14.4.0 927 5/22/2019
14.3.4 5,179 5/14/2019
14.3.3 880 5/9/2019
14.3.2 1,123 4/30/2019
14.3.1 1,567 4/27/2019
14.3.0 5,759 4/24/2019
14.2.3 1,114 4/17/2019
14.2.2 1,139 4/10/2019
14.2.1 963 4/5/2019
14.2.0 1,393 3/16/2019
14.1.1 1,171 3/8/2019
14.1.0 1,451 2/11/2019
14.0.4 1,136 1/31/2019
14.0.3 1,119 1/22/2019
14.0.2 2,015 12/15/2018
14.0.1 1,211 11/29/2018
14.0.0 1,141 11/19/2018
13.3.0 1,238 11/16/2018
13.2.2 1,183 11/15/2018
13.2.1 1,820 11/13/2018
13.2.0 1,141 10/31/2018
13.1.5 1,143 10/31/2018
13.1.4 1,320 10/25/2018
13.1.3 1,203 10/18/2018
13.1.2 8,225 9/12/2018
13.1.1 1,217 9/11/2018
13.1.0 1,205 9/11/2018
13.0.0 8,475 8/29/2018
12.3.6 1,263 8/29/2018
12.3.5 1,229 8/22/2018
12.3.4 1,167 8/21/2018
12.3.3 25,995 8/21/2018
12.3.2 1,206 8/20/2018
12.3.1 1,260 8/20/2018
12.3.0 1,230 8/20/2018
12.2.2 1,387 8/15/2018
12.2.1 1,302 8/9/2018
12.2.0 1,276 8/8/2018
12.1.11 2,356 7/30/2018
12.1.10 1,239 7/20/2018
12.1.9 1,383 7/10/2018
12.1.8 1,277 7/2/2018
12.1.7 7,796 6/7/2018
12.1.6 2,770 6/4/2018
12.1.5 1,373 6/2/2018
12.1.4 1,550 5/25/2018
12.1.3 2,960 5/16/2018
12.1.2 1,377 5/15/2018
12.1.1 1,435 5/14/2018
12.1.0 1,391 5/9/2018
12.0.7 1,408 5/5/2018
12.0.6 1,505 5/4/2018
12.0.5 1,387 5/3/2018
12.0.4 1,453 4/30/2018
12.0.3 1,478 4/30/2018
12.0.2 1,295 4/27/2018
12.0.1 1,383 4/25/2018
12.0.0 1,336 4/22/2018
11.2.0 1,400 4/11/2018
11.1.0 1,987 4/8/2018
11.0.8 1,496 3/26/2018
11.0.7 1,386 3/20/2018
11.0.6 1,454 3/7/2018
11.0.5 8,539 2/22/2018
11.0.4 2,531 2/14/2018
11.0.3 1,483 2/12/2018
11.0.2 1,378 2/9/2018
11.0.1 1,445 1/29/2018
11.0.0 1,528 1/15/2018
10.0.3 1,546 12/29/2017
10.0.2 1,345 12/26/2017
10.0.1 1,300 12/18/2017
10.0.0 1,289 12/18/2017
9.3.0 1,416 12/17/2017
9.2.0 1,340 12/17/2017
9.1.3 1,339 12/5/2017
9.1.2 1,324 11/27/2017
9.1.1 1,344 11/21/2017
9.1.0 1,289 11/21/2017
9.0.1 1,276 11/11/2017
9.0.0 1,255 11/10/2017
8.7.0 1,431 11/9/2017
8.6.0 1,321 11/9/2017
8.5.0 4,147 10/3/2017
8.4.0 1,282 10/3/2017
8.3.1 1,448 9/8/2017
8.3.0 1,328 9/8/2017
8.2.0 1,297 9/4/2017
8.1.0 1,361 8/22/2017
8.0.0 1,446 8/19/2017
7.1.3 1,486 8/14/2017
7.1.2 1,355 8/2/2017
7.1.1 1,397 7/26/2017
7.1.0 3,793 7/5/2017
7.0.9 1,379 6/28/2017
7.0.8 1,408 6/19/2017
7.0.6 4,262 4/7/2017
7.0.5 1,596 3/21/2017
7.0.4 1,371 3/21/2017
7.0.3 1,385 3/20/2017
7.0.2 1,462 3/13/2017
7.0.0 1,480 3/1/2017
6.2.0 3,522 2/25/2017
6.1.0 1,401 2/14/2017
6.0.0 1,456 2/9/2017
5.3.0 1,279 2/5/2017
5.2.0 1,256 1/26/2017
5.1.0 1,404 1/19/2017
5.0.0 1,423 1/7/2017
4.11.0 1,359 1/5/2017
4.10.0 1,260 12/31/2016
4.9.0 1,257 12/26/2016
4.8.0 1,321 12/17/2016
4.7.0 1,347 12/8/2016
4.6.5 1,272 12/4/2016
4.6.4 1,310 11/25/2016
4.6.2 1,308 11/18/2016
4.6.1 1,269 11/15/2016
4.6.0 1,272 11/11/2016
4.5.9 1,511 11/2/2016
4.5.8 1,312 11/2/2016
4.5.7 1,304 10/26/2016
4.5.6 1,559 10/6/2016
4.5.5 1,291 10/3/2016
4.5.4 1,238 10/2/2016
4.5.3 1,261 9/30/2016
4.5.2 1,298 9/28/2016
4.5.1 1,277 9/28/2016
4.5.0 1,335 9/28/2016
4.4.0 1,432 9/23/2016
4.3.0 1,324 9/22/2016
4.2.0 1,504 9/19/2016
4.1.0 1,246 9/13/2016
4.0.1 1,255 9/9/2016
4.0.0 1,284 9/9/2016
3.6.0 1,283 9/7/2016
3.4.0 1,290 9/7/2016
3.3.0 1,227 9/4/2016
3.2.0 1,253 9/3/2016
3.1.0 1,252 9/2/2016
3.0.0 1,579 8/31/2016
2.5.0 1,287 8/27/2016
2.4.0 1,851 8/26/2016
2.3.0 1,266 8/23/2016
2.1.0 1,728 8/22/2016