Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How secure are Resources in .NET?

Tags:

.net

resources

How hard would it be to retrieve embedded resources from a .NET application, from outside the application itself? Even if the resources are compressed and trivially encrypted, how difficult is it to retrieve them using a tool? (I am not concerned with the protection of the data per se, just the methods of retrieval of the resource itself)


EDIT:

I think my question was misunderstood, it was less about the encryption and more about the retrieval, other than reflector, what else can be used?

like image 842
Kyle Rosendo Avatar asked Mar 10 '10 19:03

Kyle Rosendo


1 Answers

It is trivial to retrieve resources from a compiled .NET DLL using tools like the .NET Reflector or .NET Resourcer.

like image 136
Paul Williams Avatar answered Oct 11 '22 13:10

Paul Williams