Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is possible to revert an ASP.NET pre-compilation?

I have created a web site, and i'll publish it...

I wanna know if anyone who get access to my FTP and download my pre-compiled website can "revert" the DLL compilation, and re-create my code behinds!

Is it possible?

If it is possible, how can i protect my code?

like image 490
renanleandrof Avatar asked Feb 25 '23 23:02

renanleandrof


1 Answers

It's possible to decompile your assemblies. There's not an 100% safe way to protect you code. You can obfuscate your assemblies. That will makes it harder, but it's still possible to to get your code.

like image 173
Martin Buberl Avatar answered Mar 12 '23 06:03

Martin Buberl