LinuxCommandLibrary

monodis

disassembles

TLDR

Disassemble .NET assembly

$ monodis [assembly.dll]
copy
Show assembly metadata
$ monodis --assembly [assembly.dll]
copy
Show type definitions
$ monodis --typedef [assembly.dll]
copy
Output to file
$ monodis [assembly.dll] > [output.il]
copy

SYNOPSIS

monodis [options] assembly

DESCRIPTION

monodis disassembles .NET assemblies (DLL/EXE) to CIL (Common Intermediate Language) text. Part of the Mono framework. Used for debugging, reverse engineering, and understanding .NET bytecode.

PARAMETERS

--assembly

Show assembly table.
--typedef
Show type definitions.
--typeref
Show type references.
--methoddef
Show method definitions.
--method name
Disassemble specific method.
--output file
Output to file.
--mscorlib
Reference mscorlib for disassembly.

SEE ALSO

monop(1), ilasm(1)

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community