Audit.Mvc.Core 25.0.4

dotnet add package Audit.Mvc.Core --version 25.0.4
NuGet\Install-Package Audit.Mvc.Core -Version 25.0.4
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.Core" Version="25.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Audit.Mvc.Core --version 25.0.4
#r "nuget: Audit.Mvc.Core, 25.0.4"
#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.Core as a Cake Addin
#addin nuget:?package=Audit.Mvc.Core&version=25.0.4

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

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 net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Audit.Mvc.Core:

Repository Stars
thepirat000/Audit.NET
An extensible framework to audit executing operations in .NET and .NET Core.
Version Downloads Last updated
25.0.4 513 3/24/2024
25.0.3 457 3/13/2024
25.0.2 107 3/12/2024
25.0.1 240 2/28/2024
25.0.0 1,492 2/16/2024
24.0.1 152 2/12/2024
24.0.0 87 2/12/2024
23.0.0 2,860 12/14/2023
22.1.0 130 12/9/2023
22.0.2 295 12/1/2023
22.0.1 2,736 11/16/2023
22.0.0 1,073 11/14/2023
21.1.0 961 10/9/2023
21.0.4 196 9/15/2023
21.0.3 1,482 7/9/2023
21.0.2 201 7/6/2023
21.0.1 2,016 5/27/2023
21.0.0 881 4/15/2023
20.2.4 2,113 3/27/2023
20.2.3 292 3/17/2023
20.2.2 249 3/14/2023
20.2.1 341 3/11/2023
20.2.0 291 3/7/2023
20.1.6 1,990 2/23/2023
20.1.5 756 2/9/2023
20.1.4 2,555 1/28/2023
20.1.3 1,592 12/21/2022
20.1.2 4,268 12/14/2022
20.1.1 386 12/12/2022
20.1.0 428 12/4/2022
20.0.4 1,251 11/30/2022
20.0.3 4,161 10/28/2022
20.0.2 2,318 10/26/2022
20.0.1 666 10/21/2022
20.0.0 1,302 10/1/2022
19.4.1 2,141 9/10/2022
19.4.0 637 9/2/2022
19.3.0 6,077 8/23/2022
19.2.2 1,393 8/11/2022
19.2.1 894 8/6/2022
19.2.0 2,333 7/24/2022
19.1.4 2,935 5/23/2022
19.1.3 618 5/22/2022
19.1.2 1,518 5/18/2022
19.1.1 4,106 4/28/2022
19.1.0 3,291 4/10/2022
19.0.7 2,284 3/13/2022
19.0.6 876 3/7/2022
19.0.5 4,385 1/28/2022
19.0.4 1,473 1/23/2022
19.0.3 1,528 12/14/2021
19.0.2 443 12/11/2021
19.0.1 2,170 11/20/2021
19.0.0 827 11/11/2021
19.0.0-rc.net60.2 879 9/26/2021
19.0.0-rc.net60.1 213 9/16/2021
18.1.6 8,619 9/26/2021
18.1.5 1,553 9/7/2021
18.1.4 544 9/6/2021
18.1.3 668 8/19/2021
18.1.2 770 8/8/2021
18.1.1 598 8/5/2021
18.1.0 1,191 8/1/2021
18.0.1 607 7/30/2021
18.0.0 691 7/26/2021
17.0.8 2,029 7/7/2021
17.0.7 847 6/16/2021
17.0.6 630 6/5/2021
17.0.5 653 5/28/2021
17.0.4 745 5/4/2021
17.0.3 742 5/1/2021
17.0.2 764 4/22/2021
17.0.1 614 4/18/2021
17.0.0 2,956 3/26/2021
16.5.6 776 3/25/2021
16.5.5 616 3/23/2021
16.5.4 2,340 3/9/2021
16.5.3 566 2/26/2021
16.5.2 615 2/23/2021
16.5.1 640 2/21/2021
16.5.0 970 2/17/2021
16.4.5 676 2/15/2021
16.4.4 1,124 2/5/2021
16.4.3 857 1/27/2021
16.4.2 698 1/22/2021
16.4.1 642 1/21/2021
16.4.0 711 1/11/2021
16.3.3 718 1/8/2021
16.3.2 679 1/3/2021
16.3.1 572 12/31/2020
16.3.0 593 12/30/2020
16.2.1 2,126 12/27/2020
16.2.0 8,671 10/13/2020
16.1.5 733 10/4/2020
16.1.4 1,949 9/17/2020
16.1.3 1,258 9/13/2020
16.1.2 694 9/9/2020
16.1.1 1,087 9/3/2020
16.1.0 818 8/19/2020
16.0.3 715 8/15/2020
16.0.2 917 8/9/2020
16.0.1 698 8/8/2020
16.0.0 647 8/7/2020
15.3.0 1,786 7/23/2020
15.2.3 2,907 7/14/2020
15.2.2 7,540 5/19/2020
15.2.1 1,044 5/12/2020
15.2.0 712 5/9/2020
15.1.1 695 5/4/2020
15.1.0 1,261 4/13/2020
15.0.5 5,657 3/18/2020
15.0.4 937 2/28/2020
15.0.3 683 2/26/2020
15.0.2 3,132 1/20/2020
15.0.1 814 1/10/2020
15.0.0 1,056 12/17/2019
14.9.1 2,747 11/30/2019
14.9.0 713 11/29/2019
14.8.1 750 11/26/2019
14.8.0 1,046 11/20/2019
14.7.0 2,071 10/9/2019
14.6.6 724 10/8/2019
14.6.5 1,229 9/27/2019
14.6.4 838 9/21/2019
14.6.3 5,177 8/12/2019
14.6.2 792 8/3/2019
14.6.1 819 8/3/2019
14.6.0 780 7/26/2019
14.5.7 1,174 7/18/2019
14.5.6 29,346 7/10/2019
14.5.5 6,704 7/1/2019
14.5.4 890 6/17/2019
14.5.3 860 6/5/2019
14.5.2 767 5/30/2019
14.5.1 1,195 5/28/2019
14.5.0 2,287 5/24/2019
14.4.0 1,615 5/22/2019
14.3.4 844 5/14/2019
14.3.3 825 5/9/2019
14.3.2 875 4/30/2019
14.3.1 888 4/27/2019
14.3.0 869 4/24/2019
14.2.3 3,133 4/17/2019
14.2.2 856 4/10/2019
14.2.1 5,876 4/5/2019
14.2.0 891 3/16/2019
14.1.1 966 3/8/2019
14.1.0 2,417 2/11/2019
14.0.4 986 1/31/2019
14.0.3 985 1/22/2019
14.0.2 1,354 12/15/2018
14.0.1 1,160 11/29/2018
14.0.0 1,019 11/19/2018
13.3.0 1,668 11/16/2018
13.2.2 1,014 11/15/2018
13.2.1 1,006 11/13/2018
13.2.0 1,060 10/31/2018
13.1.5 1,052 10/31/2018
13.1.4 1,015 10/25/2018
13.1.3 1,248 10/18/2018
13.1.2 1,327 9/12/2018
13.1.1 2,392 9/11/2018
13.1.0 1,033 9/11/2018
13.0.0 7,068 8/29/2018
12.3.6 1,101 8/29/2018
12.3.5 2,387 8/22/2018
12.3.4 1,087 8/21/2018
12.3.3 25,872 8/21/2018
12.3.2 1,142 8/20/2018
12.3.1 1,107 8/20/2018
12.3.0 1,056 8/20/2018
12.2.2 2,933 8/15/2018
12.2.1 1,242 8/9/2018
12.2.0 1,115 8/8/2018
12.1.11 3,698 7/30/2018
12.1.10 1,202 7/20/2018
12.1.9 1,273 7/10/2018
12.1.8 1,098 7/2/2018
12.1.7 1,127 6/7/2018
12.1.6 1,205 6/4/2018
12.1.5 1,186 6/2/2018
12.1.4 1,216 5/25/2018
12.1.3 2,567 5/16/2018
12.1.2 1,227 5/15/2018
12.1.1 1,350 5/14/2018
12.1.0 1,273 5/9/2018
12.0.7 1,204 5/5/2018
12.0.6 1,323 5/4/2018
12.0.5 1,160 5/3/2018
12.0.4 1,375 4/30/2018
12.0.3 1,325 4/30/2018
12.0.2 1,173 4/27/2018
12.0.1 1,238 4/25/2018
12.0.0 1,160 4/22/2018
11.2.0 1,142 4/11/2018
11.1.0 1,328 4/8/2018
11.0.8 1,370 3/26/2018
11.0.7 1,288 3/20/2018
11.0.6 1,967 3/7/2018
11.0.5 1,220 2/22/2018
11.0.4 1,337 2/14/2018
11.0.3 1,239 2/12/2018
11.0.2 1,225 2/9/2018
11.0.1 1,256 1/29/2018
11.0.0 1,248 1/15/2018
10.0.3 1,290 12/29/2017
10.0.2 1,208 12/26/2017
10.0.1 1,262 12/18/2017
10.0.0 1,256 12/18/2017