Page 4 of 4 FirstFirst ... 234
Results 46 to 53 of 53
  1. #1
    Cling's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Home :|
    Posts
    374
    Reputation
    13
    Thanks
    238
    My Mood
    Tired

    Smile Crossfire Beta Weapon Hack

    Heyy MPGH
    this is pretty new
    i added a login box so it wouldn't be as leeched easy (unless you crack it)
    but it won't steal your information.... why would i need it first of all?
    features
    weapon hack
    --ak gold
    --deagle gold
    -- cursed doll

    activate-deactivate system
    it took me a while to make it with vb and incorporate it with the hack but i finally did it
    hope you guys like it
    vscans
    CFBeta(Weapon).rar - Jotti's malware scan
    VirusTotal - Free Online Virus, Malware and URL Scanner
    why are so much people on virus total?
    Report - Antivirus online virus scan - viruschief.com

    credits
    machida
    codeskills
    vb
    c++
    microsoft
    windows
    ect..

    this is the code for login
    Code:
    Imports System.Security.Cryptography
    Imports System.Text
    Imports System.Net
    Imports System.IO
    
    Module vbloginsystem
    
        Public Function Login(ByVal Username As String, ByVal Password As String)
    
            Password = MD5(Password)
            Dim valid As Boolean = False
            Dim data As String = "vb_login_username=" & Username & "&vb_login_password=&s=&do=login&vb_login_md5password=" & Password & "&vb_login_md5password_utf=" & Password
    
            Try
                Dim request As HttpWebRequest = WebRequest.Create("https://www.mpgh.net/forum/login.php?do=login")
                request.Method = WebRequestMethods.Http.Post
                reques*****ntentType = "application/x-www-form-urlencoded"
                request.UserAgent = "-- vBulletin Vaidation  --"
    
    
    
                reques*****ntentLength = data.Length
    
                Dim rStream As New StreamWriter(request.GetRequestStream)
    
                rStream.Write(data)
                rStream.Flush()
                rStream.Close()
    
                Dim response As HttpWebResponse = request.GetResponse
                Dim resReader As New StreamReader(response.GetResponseStream)
    
                Dim str As String = resReader.ReadToEnd
    
    
                If str.Contains("Thank you for logging in") Then
                    valid = True
                Else
                    valid = False
                End If
    
    
                response.Close()
    
            Catch ex As Exception
                MessageBox.Show(ex.Message, "Error MPGH Login!", MessageBoxButtons.OK, MessageBoxIcon.Error)
    
            End Try
    
            Return valid
    
        End Function
    
        Public Function MD5(ByVal number As String) As String
    
            Dim ASCIIenc As New ASCIIEncoding
            Dim strReturn As String = String.Empty
    
            Dim ByteSourceText() As Byte = ASCIIenc.GetBytes(number)
            Dim Md5Hash As New MD5CryptoServiceProvider
            Dim ByteHash() As Byte = Md5Hash.ComputeHash(ByteSourceText)
    
            For Each b As Byte In ByteHash
                strReturn &= b.ToString("x2")
            Next
    
            Return strReturn
    
        End Function
    End Module
    Public Class Form1
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            MaximizeBox = False
    
    
        End Sub
    
        Private Sub ButtonX1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonX1.Click
            If Login(TextBoxX1.Text, TextBoxX2.Text) Then
                Form2.Show()
                Me.Hide()
            Else
                MsgBox("Incorrect Username/Password")
            End If
        End Sub
    
        Private Sub ButtonX2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonX2.Click
            Process.Start("https://www.mpgh.net/forum/register.php")
        End Sub
    
        Private Sub Label1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label1.Click
    
        End Sub
    
          Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
            Label1.Text = "Time: " + TimeString
            Label2.Text = "Date: " + DateString
        End Sub
    End Class

  2. The Following 5 Users Say Thank You to Cling For This Useful Post:

    CrossFireHackssssss (10-20-2011),kenxz099 (09-15-2014),killkill727 (06-19-2012),lucanapoli (10-20-2011),praveen63 (01-09-2016)

  3. #46
    The Philosopher's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Location
    MPGH marked this information as highly classified
    Posts
    319
    Reputation
    22
    Thanks
    12
    My Mood
    Aggressive
    @Cling did you read my weapon hacks request? :[
    I'd really appreciate it if you could make it...

  4. #47
    UL7RA's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    738
    Reputation
    14
    Thanks
    21
    My Mood
    Asleep
    So, this replaces your in-game guns? Like it transforms M16 to M4A1 Gold? Is it visual or performance too? Can other players see it?
    Thanx.
    Nope.

  5. #48
    alex606516's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    My house.
    Posts
    567
    Reputation
    19
    Thanks
    38
    My Mood
    Flirty
    Looks nice. And I like your anime picture lol
    Thank and rep me If I helped


    https://www.mpgh.net/forum/members/57...lex606516.html - My Mpgh profile

  6. #49
    CrossRaiders's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    1,586
    Reputation
    29
    Thanks
    1,214
    Sorry but this hack is now PATCHED.

  7. #50
    naruto31281's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    0
    My Mood
    Aggressive
    how to do this, i mean how to hack, when i run the cfweapon.exe it's saying login form has stopped working
    please help

  8. #51
    |Master of Puppets's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    UR HOUSE
    Posts
    913
    Reputation
    22
    Thanks
    873
    My Mood
    Bitchy
    PATCHED DONT USE IT

    Press Thanks.

  9. #52
    oomee's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    20
    Reputation
    10
    Thanks
    0
    My Mood
    Bored
    its dont work lol )

  10. #53
    Love many, trust few and always paddle your own canoe
    MPGH Member
    Murat's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Germany
    Posts
    1,900
    Reputation
    11
    Thanks
    80
    My Mood
    Doh
    reg. to mods to close this ...

Page 4 of 4 FirstFirst ... 234

Similar Threads

  1. Replies: 146
    Last Post: 11-07-2011, 10:52 AM
  2. [Solved] CrossFire VIP weapon hack
    By County111 in forum CrossFire Help
    Replies: 1
    Last Post: 08-17-2011, 06:39 PM
  3. [Detected] Beta Weapon Hack
    By tdct in forum CrossFire Hacks & Cheats
    Replies: 357
    Last Post: 02-17-2011, 09:17 PM
  4. [Release] New hack crossfire beta - boxes, guns, wireframe, skeletons
    By OverDrivejt in forum CrossFire Hacks & Cheats
    Replies: 1461
    Last Post: 08-05-2010, 02:10 PM
  5. [Searching] Weapons Hack
    By OutZida in forum WarRock - International Hacks
    Replies: 4
    Last Post: 01-19-2006, 12:06 PM