DebugProbe.AspNetCore 1.5.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package DebugProbe.AspNetCore --version 1.5.0
                    
NuGet\Install-Package DebugProbe.AspNetCore -Version 1.5.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="DebugProbe.AspNetCore" Version="1.5.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DebugProbe.AspNetCore" Version="1.5.0" />
                    
Directory.Packages.props
<PackageReference Include="DebugProbe.AspNetCore" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DebugProbe.AspNetCore --version 1.5.0
                    
#r "nuget: DebugProbe.AspNetCore, 1.5.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.
#:package DebugProbe.AspNetCore@1.5.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=DebugProbe.AspNetCore&version=1.5.0
                    
Install as a Cake Addin
#tool nuget:?package=DebugProbe.AspNetCore&version=1.5.0
                    
Install as a Cake Tool

DebugProbe.AspNetCore

Debug HTTP traffic directly inside your ASP.NET Core pipeline.

DebugProbe Website


Why DebugProbe?

  • Inspect requests and responses in real time
  • No proxies or external tools
  • Built-in request tracing UI
  • Compare responses across environments
  • Minimal setup for ASP.NET Core applications

Install

dotnet add package DebugProbe.AspNetCore

Quick Start

builder.Services.AddDebugProbe();

app.UseDebugProbe();

Open:

http://localhost:{port}/debug

Optional Configuration

builder.Services.AddDebugProbe(options =>
{
    options.MaxEntries = 10;

    options.MaxBodyCaptureSizeKb = 256;

    options.AllowLocalCompareTargets = true;

    options.IgnorePaths =
    [
        "/api/auth/login",
        "/api/auth/refresh"
    ];
});

app.UseDebugProbe();

Features

  • Request and response inspection
  • Headers, query params, and body capture
  • Response comparison across environments
  • JSON formatting
  • Configurable body capture limits
  • Ignore noisy endpoints
  • Sensitive header masking

Security Defaults

Sensitive headers are automatically masked:

  • Authorization
  • Cookie
  • Set-Cookie

Localhost compare targets are blocked by default.


Production Usage

DebugProbe is intended primarily for development environments.

If used in production:

  • add authentication
  • restrict access
  • filter sensitive data

Documentation & Demo

Visit the website for:

  • latest screenshots
  • demos
  • guides
  • updates

https://debugprobe.dev


License

Apache License 2.0

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.6.2 91 6/7/2026
1.6.1 101 6/1/2026
1.6.0 102 5/29/2026
1.5.0 103 5/23/2026
1.5.0-preview.1 48 5/23/2026
1.4.1-preview.2 62 5/22/2026
1.4.1-preview.1 49 5/17/2026
1.4.0 104 5/16/2026
1.4.0-preview.2 50 5/16/2026
1.4.0-preview.1 53 5/12/2026
1.3.2 95 5/13/2026
1.3.1 97 5/11/2026
1.3.0 106 5/10/2026
1.3.0-preview.2 65 5/10/2026
1.3.0-preview.1 66 5/9/2026
1.2.2 96 5/6/2026
1.2.1 101 5/2/2026
1.2.0 94 5/2/2026
1.1.0 115 4/27/2026
1.0.0 103 4/20/2026
Loading failed