I have this code (ASP.net VB.net):
Dim xx As Net.Mail.SmtpClient
xx.Credentials = New Net.NetworkCredential("username","password")
I'm not very sure but would the password stored there be ridiculously easy for a hacker to get?
If it was a standard windows form app, something like net reflector get the password with the click of a button, so how do I make it more secure?
Thanks