libhat-sharp 0.2.0

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

libhat-sharp

C# bindings for libhat, a high-performance game hacking library.

Notes

  • Currently only includes the pattern scanning functionality of libhat (libhat_c only implements pattern scanning)
  • Supports Windows only, x86 and x64
  • Requires .NET 8, support for .NET Standard 2.0 will be added later
  • Linux support will be added in the future

Installation

The library is available on NuGet: https://www.nuget.org/packages/libhat-sharp/

You can install it using the following command: dotnet add package libhat-sharp

Usage

using Hat;

// Parse a pattern's string representation to an array of bytes at runtime
Pattern pattern = new Pattern("48 8D 05 ? ? ? ? E8");

// Create a scanner object for a section in a specific module
Process process = /* ... */;
Scanner scanner = new Scanner(process.MainModule, ".text");

// ...or for a specific memory region
nint start = /* the start of the memory region you want to scan */;
uint size = /* ... */;
Scanner scanner = new Scanner(start, size);

// A span can also be used
Span<byte> buffer = /* ... */;
Scanner scanner = new Scanner(buffer);

// Scan for this pattern using your CPU's vectorization features
ScanResult? result = scanner.FindPattern(pattern);

// Get the address pointed at by the pattern
nint address = result!.Address;

// Resolve an RIP relative address at a given offset
// 
//   | signature matches here
//   |        | relative address located at +3
//   v        v
//   48 8D 05 BE 53 23 01    lea  rax, [rip+0x12353be]
//
nint relativeAddress = result!.Relative(3);
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
0.2.0 206 10/6/2024
0.1.2 148 10/5/2024
0.1.1 144 10/4/2024

- Updated to latest libhat release
           - Added missing summary for ScanResult class