Click here to Skip to main content
15,889,281 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
Let's say that I find a Asp.NET website on the internet and I want to find out the source code, is it possible? For example, can I find out the e-mails which is being used to send a message to a user on the website through the source code?

What I have tried:

Research, but people have not talked about this topic very much.
Posted
Comments
ZurdoDev 1-Dec-17 14:11pm    
The email is not likely stored in the website code but rather in a config file or database so even if you could, you likely won't find what you are looking for.
KajLao 1-Dec-17 14:18pm    
Oh I see. Is it possible to decompile the site? =)
ZurdoDev 1-Dec-17 14:24pm    
Sort of. Google for decompile .net assembly.

1 solution

If you're looking at the site from the browser-side, no it's not possible. The server will not give you the original .ASPX files or the .DLL's behind the site.

You'll have to get those files from the server over SMB. Good luck with that.

Once you have the .DLL's, they can be reversed back to some semblance of the original source, using .NET Reflector or similar.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900