Geeks for your information
ILSpy review: a .NET decompiler - Printable Version

+- Geeks for your information (https://www.geeks.fyi)
+-- Forum: Software Reviews (https://www.geeks.fyi/forumdisplay.php?fid=74)
+--- Forum: Personal Software Reviews (https://www.geeks.fyi/forumdisplay.php?fid=76)
+--- Thread: ILSpy review: a .NET decompiler (/showthread.php?tid=4944)



ILSpy review: a .NET decompiler - Deep900 - 30 December 18

ILSpy homepage: https://github.com/icsharpcode/ILSpy

ILSpy is a freeware and simple .NET decompiler which can be used also for example for static malware analysis of .NET malware samples, because we can see the source code of loaded .NET assemblies.

When we open ILSpy we can see the main window:


[Image: leNoajk.png]


To load a .NET assembly simply click to "File" menu and we can also save code and reload the decompiler:

[Image: EArvhz8.png]

If we click on "View" we can sort assembly list by name and we can search in the source code.

[Image: d0iHXuZ.png]

If we click on "Help" menu we can check for new updates or look at "About" window.

[Image: bT3bfzc.png]

We can decompile C#, VB and IL assemblies:

[Image: 5MbLGsA.png]

In the options we can set decompile settings, like "Decompile anonymous methods", "Decompile async methods", etc.

An interesting option we can see is that we can also show/hide XML documentation of the source code.

[Image: PuC8Ivw.png]

We can also set text style of the source code:

[Image: xsLwwWb.png]

You can set text size, show line numbers in the source code, show metadata tokens, enable word wrap and choose the font.

ILSpy latest release: https://github.com/icsharpcode/ILSpy/releases


RE: ILSpy review: a .NET decompiler - jasonX - 11 January 19

Very nice there! Thanks for the review and info. There are tons of tools in GitHub and some really need more exposure!


RE: ILSpy review: a .NET decompiler - Deep900 - 19 January 19

(11 January 19, 20:52)jasonX Wrote: Very nice there! Thanks for the review and info. There are tons of tools in GitHub and some really need more exposure!

Yes, that's a very good tool to view source code of .NET malware samples!