SharpDisasm 1.1.5

There is a newer version of this package available.
See the version list below for details.
dotnet add package SharpDisasm --version 1.1.5
NuGet\Install-Package SharpDisasm -Version 1.1.5
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="SharpDisasm" Version="1.1.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SharpDisasm --version 1.1.5
#r "nuget: SharpDisasm, 1.1.5"
#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 SharpDisasm as a Cake Addin
#addin nuget:?package=SharpDisasm&version=1.1.5

// Install SharpDisasm as a Cake Tool
#tool nuget:?package=SharpDisasm&version=1.1.5

SharpDisam is a disassembler written in C# able to decode the x86 and x86-64 instruction set architectures.

It features:
* a full C# port of the libudis86 C library
* a set of simple C# classes wrapping the udis86 API
* support for x86 16-bit, 32-bit and 64-bit instruction set architectures
* support for outputting in Intel and AT&T syntax
* support for all x86 and x86-64 (AMD64) General purpose and System instructions.
* support for the following ISA extensions:
  - MMX, FPU (x87), AMD 3DNow
  - SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AES,
  - AMD-V, INTEL-VMX, SMX
* instructions are defined in an XML document that is consumed by a T4 template to generate opcode tables for performance.
* the XML instructions document is exactly the same as that found within the udis86 project. The generated C# opcode tables is also very similar except in syntax to those generated by the Python script in the libudis86 C-library.
* able to decode more than 4 million 64-bit instructions per second (with an average instruction size of 7-bytes)

Usage: https://sharpdisasm.codeplex.com/documentation

Product Compatible and additional computed target framework versions.
.NET Framework net35 is compatible.  net40 is compatible.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on SharpDisasm:

Package Downloads
libReloaded

The main library for the development of Reloaded Mod Loader Modifications. Provides you with JIT X86/64 Assembly, Memory Buffers, X86/64 Function Calling, X86/64 Function Hooking, X86/64 Custom Function Hooking (Usercall/Userpurge), X86/64 Function Pointers, Virtual Function Table Hooking/Calling, Native Array Utilities, Pattern/Signature Scanning, Reading/Writing Memory, Memory Page Management, Easy DLL Injector, Thread Management and more.

ERC.Net-x86

ERC.Net is a collection of tools designed to assist in debugging Windows application crashes. ERC.Net supports both 64 and 32 bit applications, can parse DLL/EXE headers, identify compile time flags such as ASLR, DEP and SafeSEH, generate non repeating patterns, generate platform specific egg hunters, identify process information such as loaded modules and running threads, read the TEB of a specific thread, assist with identifying numerous types of memory vulnerabilities and has numerous other use cases.

ERC.Net-x64

ERC.Net is a collection of tools designed to assist in debugging Windows application crashes. ERC.Net supports both 64 and 32 bit applications, can parse DLL/EXE headers, identify compile time flags such as ASLR, DEP and SafeSEH, generate non repeating patterns, generate platform specific egg hunters, identify process information such as loaded modules and running threads, read the TEB of a specific thread, assist with identifying numerous types of memory vulnerabilities and has numerous other use cases.

GitHub repositories (7)

Showing the top 5 popular GitHub repositories that depend on SharpDisasm:

Repository Stars
ashmind/SharpLab
.NET language playground
Squalr/Squalr
Squalr Memory Editor - Game Hacking Tool Written in C#
CCob/BeaconEye
Hunts out CobaltStrike beacons and logs operator command output
kkokosa/Tune
The Ultimate .NET Experiment
microsoft/OSSGadget
Collection of tools for analyzing open source packages.
Version Downloads Last updated
1.1.11 66,091 5/24/2018
1.1.9 1,722 12/28/2017
1.1.5 3,319 2/6/2016
1.0.2 1,396 7/11/2015

1.1.5
1. Use of unsafe replaced with an assembly code reader interface
1.0.2
1. Full port of udis86 C-library into C#
2. Wrapper class Disassembler for those not familiar with the libudis86 C-library