bluekrabsetw is a C++ library that simplifies interacting with ETW. It allows for any number of traces and providers to be enabled and for client code to register for event notifications from these traces. bluekrabsetw originates from the krabsetw c++ library and seeks to improve and include capabilities that have not yet been included in the former library.
bluekrabsetw also provides code to simplify parsing generic event data into strongly typed data types.
Threathunters.BlueKrabsetw.Native.ETW is a C++ CLI (.NET) wrapper around bluekrabsetw. It provides the same functionality as bluekrabsetw to .NET applications.
The following capabilities have been integrated into the solution alongside the original krabsetw C++ library:
Provider Enhanced Runtime Capabilities:
- Supports enabling and disabling providers dynamically to adapt to changing requirements. This includes: Provider Addition, Removal, and Update Functionality
Session Enhanced Runtime Capabilities:
- todo
Decoupling of Functionality to Allow Better Control of Sessions:
- Provides improved modularity and flexibility, making it easier to manage and control Sessions.
Improved Pre-Filtering Mechanisms:
- Optimizes data processing by allowing more efficient filtering before data is collected.
These enhancements extend the core features of the original krabsetw C++ library, providing a more robust and flexible solution.
- An ETW Primer.
- Simple examples can be found in the
examples
folder. - Please refer to KrabsExample.md and LobstersExample.md for detailed examples.
- SampleKrabsCSharpExe is a non-trivial example demonstrating how to manage the trace objects.
- Using Message Analyzer to find new ETW event sources.
bluekrabsetw
andThreathunters.BlueKrabsetw.Native.ETW
only support x64. No effort has been made to support x86.bluekrabsetw
andThreathunters.BlueKrabsetw.Native.ETW
are only supported on Windows 7 or Windows 2008R2 machines and above.- Throwing exceptions in the event handler callback or krabsetw or Microsoft.O365.Security.Native.ETW will cause the trace to stop processing events.
- The call to "start" on the trace object is blocking so thread management may be necessary.
- The Visual Studio solution is krabs\krabs.sln.
- When building a native code binary using the
bluekrabsetw
package, please refer to the compilation readme for notes about theTYPEASSERT
andNDEBUG
compilation flags.
NuGet packages are available both for the krabsetw C++ headers and the Microsoft.O365.Security.Native.ETW .NET library:
- https://www.nuget.org/packages/Microsoft.O365.Security.Native.ETW/
- https://www.nuget.org/packages/Microsoft.O365.Security.Native.ETW.Debug/ (for development - provides type asserts)
- https://www.nuget.org/packages/Microsoft.O365.Security.Krabsetw/
For verifying the .NET binaries, you can use the following command:
sn -T Microsoft.O365.Security.Native.ETW.dll
The expected output is:
Microsoft (R) .NET Framework Strong Name Utility Version 4.0.30319.0
Copyright (c) Microsoft Corporation. All rights reserved.
Public key token is 31bf3856ad364e35
Please feel free to file issues through GitHub for bugs and feature requests and we'll respond to them as quickly as we're able.