Get email password from WPF application

user3719173

i am building a wpf application and in my code there is an email sent with email details as username and password.

SmtpClient smtp = new SmtpClient("smtp.gmail.com", 587);
NetworkCredential basicCredential = new NetworkCredential("username", "password");
smtp.Credentials = basicCredential;
smtp.EnableSsl = true;
smtp.Send(mail);

is ther any way that the application user can get my email account details? if yes is there any way to prevent it?

DevEstacion

Yes they can probably get it by using .Net Reflector like dotPeek

You can prevent .Net Reflection though i haven't used it by using Obfuscators that'll hide .Net implementation details.

Obfuscator:

Obfuscation is the process of renaming this meta-data in an Assembly so that it is no longer useful to a hacker but remains usable to the machine for executing the intended operations. It does not modify the actual instructions or mask them from observation by a hacker.

Here are a list of .Net Obfuscators, research them well and look through the ups and downs of using one.

List if obfuscators for .NET

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

GitHub Authentication from a WPF Application using Username & Password

From Dev

Get username, password and email from a form and create database row with it

From Dev

Get user input from a textbox in a WPF application

From Dev

Get exit from WPF application in command shell

From Dev

Can we get email and password from authentication from Azure AD B2C

From Dev

how to drag and save outlook email into WPF application

From Dev

Sample WebService url to get and post values like email and password from android

From Dev

Open email from my application

From Dev

Open email from my application

From Dev

How to get application name in WPF

From Dev

C# Application Store Email/Password Safely / Not Hardcoded

From Dev

Open Outlook from WPF Application

From Dev

Open Outlook from WPF Application

From Dev

How to get response to email which sent by an application?

From Dev

Get name from session['email']

From Dev

Get extension from an email address

From Dev

How to get the recipients from email

From Dev

Get email information from IMAP

From Dev

Is it possible to get UserId and password of installed application?

From Dev

Is it possible to get UserId and password of installed application?

From Dev

Get windows user password in a Windows Forms application

From Dev

Get password from a user with UserManager

From Dev

Get password from R console

From Dev

Mksapi to get password from preferences

From Dev

Passing parameters from WPF application to another WPF application?

From Dev

Get error Changing a user's email/password in Firebase 3 for Android

From Dev

Meteor: How to get account password reset token only, no email

From Dev

Firebase/Swift 2 - How to get an authenticated users password and email

From Dev

Get error Changing a user's email/password in Firebase 3 for Android

Related Related

  1. 1

    GitHub Authentication from a WPF Application using Username & Password

  2. 2

    Get username, password and email from a form and create database row with it

  3. 3

    Get user input from a textbox in a WPF application

  4. 4

    Get exit from WPF application in command shell

  5. 5

    Can we get email and password from authentication from Azure AD B2C

  6. 6

    how to drag and save outlook email into WPF application

  7. 7

    Sample WebService url to get and post values like email and password from android

  8. 8

    Open email from my application

  9. 9

    Open email from my application

  10. 10

    How to get application name in WPF

  11. 11

    C# Application Store Email/Password Safely / Not Hardcoded

  12. 12

    Open Outlook from WPF Application

  13. 13

    Open Outlook from WPF Application

  14. 14

    How to get response to email which sent by an application?

  15. 15

    Get name from session['email']

  16. 16

    Get extension from an email address

  17. 17

    How to get the recipients from email

  18. 18

    Get email information from IMAP

  19. 19

    Is it possible to get UserId and password of installed application?

  20. 20

    Is it possible to get UserId and password of installed application?

  21. 21

    Get windows user password in a Windows Forms application

  22. 22

    Get password from a user with UserManager

  23. 23

    Get password from R console

  24. 24

    Mksapi to get password from preferences

  25. 25

    Passing parameters from WPF application to another WPF application?

  26. 26

    Get error Changing a user's email/password in Firebase 3 for Android

  27. 27

    Meteor: How to get account password reset token only, no email

  28. 28

    Firebase/Swift 2 - How to get an authenticated users password and email

  29. 29

    Get error Changing a user's email/password in Firebase 3 for Android

HotTag

Archive