Reverse engineering?

  • Thread starter Thread starter Paulo
  • Start date Start date
P

Paulo

Can be restored the asp.net C# 2.0 VS 2005 project source code by doing
something on bin\project.dll ???

Many thanks!
 
Unless the code has been *really* well obfuscated,
and even if it has been, probably, there's many decompilers
available which can spit out source code for an assembly.

Read this article by Scott Mitchell, which explains how to use Reflector :
http://aspnet.4guysfromrolla.com/articles/080404-1.aspx

....and here's a couple of articles about using ILDASM :
http://msdn.microsoft.com/en-us/magazine/cc301368.aspx
http://msdn.microsoft.com/en-us/library/aa309387(VS.71).aspx



Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
 
Yes. For example, Lutz Roeder's Reflector product, along with one of the
"generate files" add-ins, will allow you to decompile source code (including
a Visual Studio project file) from any assembly.
-Peter
 
Back
Top