Page 1 of 4 123 ... LastLast
Results 1 to 15 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
    <b>Downloadable Files</b> Downloadable Files

  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. #2
    KoNJugAcija-X's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    Croatia ( Hrvatska)
    Posts
    135
    Reputation
    10
    Thanks
    12
    Good job... but pls if u ever make it again make golden m4

  4. #3
    006B's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    54
    Reputation
    10
    Thanks
    78
    Sory this not laglowed here.........no systm lik this in pub!

  5. #4
    Bernard's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    Purgatory
    Posts
    26,364
    Reputation
    3488
    Thanks
    3,546
    My Mood
    Lurking
    umm nice release glad u released a hack too
    Rep. Power: 126

    Minion: 11/28/12-3/15/14

  6. #5
    Cling's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Home :|
    Posts
    374
    Reputation
    13
    Thanks
    238
    My Mood
    Tired
    where does it say no system like that?
    i'm trying to prevent leeching
    it i can show you the code for it

  7. #6
    006B's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    54
    Reputation
    10
    Thanks
    78
    i kno more than you (BR TYPE OFF). AUTH SYSTEM on any pub here is not allowed :|. I tried with beta releases back in G-force and dave and everyone told me not allowed. Just passing you info!

  8. #7
    Cling's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Home :|
    Posts
    374
    Reputation
    13
    Thanks
    238
    My Mood
    Tired
    Quote Originally Posted by 006B View Post
    i kno more than you (BR TYPE OFF). AUTH SYSTEM on any pub here is not allowed :|. I tried with beta releases back in G-force and dave and everyone told me not allowed. Just passing you info!
    you were in g-force? what's your name then? :|
    and i provided the login code//
    you certainly don't know more english than me.

  9. #8
    006B's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    54
    Reputation
    10
    Thanks
    78
    Quote Originally Posted by Cling View Post
    you were in g-force? what's your name then? :|
    and i provided the login code//
    you certainly don't know more english than me.
    Ironically, I do. See, I am diagnosed with EBD, (EXCESSIVE BR DISORDER), and I can't help from firing off like a BR at times. Kind of like Mason with the numbers in BO .

    Anyways, if you didn't know.. I am the leader..lol coming back from a break.. so yea, I'm telling you source or not these system is not allowed in any pub...

  10. #9
    ranjith20015's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    I JUST LOVE MY COUNTRY
    Posts
    107
    Reputation
    10
    Thanks
    17
    My Mood
    Amazed
    GOOD HACK CLING IT'S GOOD IF U DO THE 1HIT KILL ZM WITH NO RELOAD AND WALL HAK
    I LOVE MPGH !

  11. #10
    Cling's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Home :|
    Posts
    374
    Reputation
    13
    Thanks
    238
    My Mood
    Tired
    Quote Originally Posted by 006B View Post
    Ironically, I do. See, I am diagnosed with EBD, (EXCESSIVE BR DISORDER), and I can't help from firing off like a BR at times. Kind of like Mason with the numbers in BO .

    Anyways, if you didn't know.. I am the leader..lol coming back from a break.. so yea, I'm telling you source or not these system is not allowed in any pub...
    that's better ._.
    i'd rather not pay attention to someone who sounds like a br...
    if it gets taken down i will fix it

  12. #11
    iHOP's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    YGEntertainment /gewd
    Posts
    641
    Reputation
    10
    Thanks
    80
    My Mood
    Cynical
    Nice Hack @Cling
    Really like it
    Last edited by iHOP; 10-17-2011 at 08:05 PM.






  13. #12
    chriszx10's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    RENO 911
    Posts
    315
    Reputation
    10
    Thanks
    12
    My Mood
    Amazed
    Tiz Iz Tight yo
    WHUSENDMETORAGECRYEACHTIMEIDOSOMETHINGMPGH?

  14. #13
    Hero's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    memes
    Posts
    40,134
    Reputation
    4764
    Thanks
    9,674
    Approved...
    [] [] [] [][]

    Editor from 06•14•2011 • 2014
    Donator since 09•16•2011
    Minion from 10•10•2011 • 01•06•2011
    Minion+ from 01•06•2012 • 08•08•2012
    Moderator from 08•08•2012 • 10•06•2012
    Global Moderator from 10•06•2012 • 12•05•2017
    Staff Administrator from 12•05•2017 • 05•01•2019
    Trusted Member since 07•13•2019
    Global Moderator since 09•11•2020




  15. The Following User Says Thank You to Hero For This Useful Post:

    Cling (10-18-2011)

  16. #14
    chriszx10's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    RENO 911
    Posts
    315
    Reputation
    10
    Thanks
    12
    My Mood
    Amazed
    Lol thx hero...
    WHUSENDMETORAGECRYEACHTIMEIDOSOMETHINGMPGH?

  17. #15
    M0stD0p3's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Kansas City
    Posts
    74
    Reputation
    10
    Thanks
    4
    My Mood
    Relaxed
    thanks this is awesome









Page 1 of 4 123 ... LastLast

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