Fluxzy.Core 1.35.24

Prefix Reserved
dotnet add package Fluxzy.Core --version 1.35.24
                    
NuGet\Install-Package Fluxzy.Core -Version 1.35.24
                    
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="Fluxzy.Core" Version="1.35.24" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Fluxzy.Core" Version="1.35.24" />
                    
Directory.Packages.props
<PackageReference Include="Fluxzy.Core" />
                    
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 Fluxzy.Core --version 1.35.24
                    
#r "nuget: Fluxzy.Core, 1.35.24"
                    
#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 Fluxzy.Core@1.35.24
                    
#: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=Fluxzy.Core&version=1.35.24
                    
Install as a Cake Addin
#tool nuget:?package=Fluxzy.Core&version=1.35.24
                    
Install as a Cake Tool

Fluxzy.Core

A fast, fully streamed MITM engine for intercepting, recording, and modifying HTTP/1.1, HTTP/2, WebSocket, and gRPC traffic over plain or TLS-secured channels.

This package is used under the hood by Fluxzy Desktop, a cross-platform HTTP debugger, and Fluxzy CLI.

Key Features

  • Intercept HTTP/1.1, HTTP/2, WebSocket, and gRPC traffic
  • Act as a system-wide proxy
  • Export sessions as HTTP Archive (HAR) or Fluxzy Archive
  • Choice of TLS providers: .NET native or BouncyCastle
  • Impersonate JA4 fingerprints and custom HTTP/2 settings

Traffic Modification

  • Add, remove, or modify request and response headers
  • Transform request and response bodies
  • Mock or substitute request and response bodies
  • Forward, redirect, spoof DNS, or abort connections
  • Inject HTML snippets into responses
  • Serve a static directory
  • Provide custom TLS certificates per host

Browse all built-in actions and filters.

Supported Proxy Protocols

Protocol Description
HTTP CONNECT Standard forward proxy tunneling for HTTPS traffic
SOCKS5 Full SOCKS5 support with no-auth and username/password authentication
Reverse Proxy Secure (TLS) and plain HTTP modes for backend service proxying
System Proxy Transparent system-wide interception via OS proxy settings

Quick Start

var fluxzySetting = FluxzySetting.CreateDefault(IPAddress.Any, 44344);

fluxzySetting
    .ConfigureRule()
    .WhenAny()
    .Do(new AddResponseHeaderAction("x-fluxzy", "Captured by Fluxzy"));

await using var proxy = new Proxy(fluxzySetting);
var endpoints = proxy.Run();

Console.WriteLine($"Fluxzy is running on {endpoints.First().Address}:{endpoints.First().Port}");
Console.ReadKey();

More examples in the examples directory.

Documentation

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 is compatible.  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.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Fluxzy.Core:

Package Downloads
Fluxzy.Core.Pcap

Extensions for Fluxzy.Core that enables raw network packet capture with PCAPNG format.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.35.24 100 4/9/2026
1.35.20 151 4/1/2026
1.35.16 170 3/23/2026
1.35.5-gc1a14969f2 104 3/19/2026
1.35.1 96 4/1/2026
1.34.1 814 1/19/2026
1.33.15 174 1/16/2026
1.33.10 233 1/7/2026
1.33.6-alpha-g1e97f7adf9 117 1/7/2026
1.33.4-alpha 127 1/2/2026
1.32.2 206 1/2/2026
1.32.1 141 1/2/2026
1.31.32 246 12/25/2025
1.31.24 679 12/10/2025
1.31.22-alpha-gbff473a33d 445 12/10/2025
1.31.19-alpha-g5272e8fbf1 469 12/9/2025
1.31.18-alpha-gf6dfaa163e 487 12/8/2025
1.30.26 845 9/27/2025
1.30.25 547 8/26/2025
1.30.24 377 8/25/2025
Loading failed