What is ILDASM and Obfuscator in .NET?

What are ILDASM and Obfuscator in NET?

- ILDASM (Intermediate Language Disassembler)
- De-Compilation is the process of getting the source code from the assembly.
- ILDASM is a de-compiler provided by Microsoft.
- This ILDASM converts an assembly to instructions from which source code can be obtained.
- ILDASM is MSIL Disassmbler.
- This take a portable executable (PE), which consists of MSIL code, and creates a text file which can then be used as an input for ILASM.exe, which is MSIL assembler.
- ILDASM can parse any .Net dll or exe and shows information in human readable form. It displays MSIL, namespaces, types and interfaces. It's normally used to examine assemblies and understand what the assembly is capable of.

- Obfuscated code
- It is source code or intermediate language that is very hard to read and understand.
- An obfuscator is a medium of making a program difficult to understand.
- The way the code runs remains unaffected although the obfuscator makes it harder to hack the code and hijack the program.
- Obfuscator is a tool to protect .Net assemblies and exe files.
- The tool renames all possible symbols, types, interfaces, namespaces etc into meaningless values and removes all unnecessary information.
- This reduces the size of the assemblies and also helps in protecting the code.
- It's normally used to protect the assemblies from exposing information for reverse engineering.
Explain how Obfuscator works in .NET - C#.NET
Explain how Obfuscator works in NET - Obfuscators protect the source code from being hacked...
What is an Exception in .NET?
What is an Exception in .NET? - Exceptions are errors that occur during the runtime of a program...
What are Custom Exceptions? Why do we need them? - C#.NET
What are Custom Exceptions? Why do we need them? - Custom Exceptions are user defined exceptions...
Post your comment