Page 3 of 3 FirstFirst 123
Results 31 to 45 of 45
  1. #31
    dnj$nda94manbdw's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    World Of Network...
    Posts
    1,343
    Reputation
    88
    Thanks
    1,148
    My Mood
    Angelic
    SUP I NEED HELP ON SOMETHING DO YOU HAVE SKYPE?
    Quote Originally Posted by -[I]fLuX View Post
    Thx for fast approve

  2. #32
    Roseraie's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    1
    My Mood
    Tired
    Injector codes remain the same all the time it not detected?


    DONT STEAL MY PICTURE !!!

  3. #33
    nhoclesnar's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Posts
    23
    Reputation
    10
    Thanks
    4
    when i debug , and click ok, it said dll file missing, can anyone explain pls?

  4. #34
    Throw me to the wolves and I will return leading the pack.
    Premium Member
    TheBenefactor's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Anon
    Posts
    471
    Reputation
    10
    Thanks
    28
    My Mood
    Twisted
    You guys are lucky, I don't know how to code crossfire, I can code runescape private servers



    Code:
    Wanna help me out? Send me something by Donation

  5. The Following User Says Thank You to TheBenefactor For This Useful Post:

    hamada619 (01-30-2013)

  6. #35
    Belzeb's Avatar
    Join Date
    Jan 2013
    Gender
    female
    Posts
    1
    Reputation
    10
    Thanks
    0
    2.You get the code from here and paste it by yourself

    Where i paste the code

  7. #36
    hamada619's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    C++
    Posts
    19
    Reputation
    10
    Thanks
    47
    My Mood
    Yeehaw
    you guys never learn

    1- download the form file
    2- open it with visual studio C# any version
    3- you will find the form already done with code just press F10 and you will be krall
    4- nice leeching
    Last edited by hamada619; 01-30-2013 at 09:10 AM.

  8. #37
    Rullez's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    Vancouver, Canada
    Posts
    4,070
    Reputation
    316
    Thanks
    26,129
    My Mood
    Bored
    Base Work or Not






  9. #38
    hamada619*'s Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    12
    My Mood
    Confused
    actually you cannot edit anything at design so it's useless

  10. #39
    vargacata's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    please the hack tabel not function

  11. #40
    [Lisa]'s Avatar
    Join Date
    Jan 2013
    Gender
    female
    Posts
    7
    Reputation
    10
    Thanks
    22
    My Mood
    Cool
    Good released bro

  12. #41
    Lithmus's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    Na minha casa
    Posts
    176
    Reputation
    10
    Thanks
    13
    My Mood
    Yeehaw
    Very good!

  13. #42
    Gοku's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    MPGH.net
    Posts
    1,527
    Reputation
    206
    Thanks
    1,043
    My Mood
    Cheerful
    Converted Version For Newbies. (C# - VB.net) Enjoy. GIVE ALL CREDIT TO -[I]fLuX

    Code:
    Imports System.Collections.Generic
    Imports System.Text
    Imports System.Diagnostics
    Imports System.ComponentModel
    Imports System.Data
    Imports System.Drawing
    Imports System.Windows.Forms
    Imports System.Threading
    Imports System.Security.Cryptography
    Imports System.Net
    Imports System.Runtime.InteropServices
    Imports System****
    Imports System.Media
    Imports System.Xml
    
    'Created by -[I]fLuX
    
    Namespace IfLuXInject
    	Class Inject
    		Private NotInheritable Class WINAPI
    			Private Sub New()
    			End Sub
    			<DllImport("kernel32.dll", SetLastError := True)> _
    			Public Shared Function OpenProcess(dwDesiredAccess As UInt32, bInheritHandle As Int32, dwProcessId As UInt32) As IntPtr
    			End Function
    			<DllImport("kernel32.dll", SetLastError := True)> _
    			Public Shared Function CloseHandle(hObject As IntPtr) As Int32
    			End Function
    			<DllImport("kernel32.dll", SetLastError := True)> _
    			Public Shared Function GetProcAddress(hModule As IntPtr, lpProcName As String) As IntPtr
    			End Function
    			<DllImport("kernel32.dll", SetLastError := True)> _
    			Public Shared Function GetModuleHandle(lpModuleName As String) As IntPtr
    			End Function
    			<DllImport("kernel32.dll", SetLastError := True)> _
    			Public Shared Function VirtualAllocEx(hProcess As IntPtr, lpAddress As IntPtr, dwSize As IntPtr, flAllocationType As UInteger, flProtect As UInteger) As IntPtr
    			End Function
    			<DllImport("kernel32.dll", SetLastError := True)> _
    			Public Shared Function WriteProcessMemory(hProcess As IntPtr, lpBaseAddress As IntPtr, buffer As Byte(), size As UInteger, ByRef lpNumberOfBytesWritten As IntPtr) As Int32
    			End Function
    			<DllImport("kernel32.dll", SetLastError := True)> _
    			Public Shared Function CreateRemoteThread(hProcess As IntPtr, lpThreadAttribute As IntPtr, dwStackSize As IntPtr, lpStartAddress As IntPtr, lpParameter As IntPtr, dwCreationFlags As UInteger, _
    				lpThreadId As IntPtr) As IntPtr
    			End Function
    			Public NotInheritable Class VAE_Enums
    				Private Sub New()
    				End Sub
    				Public Enum AllocationType
    					MEM_COMMIT = &H1000
    					MEM_RESERVE = &H2000
    					MEM_RESET = &H80000
    				End Enum
    				Public Enum ProtectionConstants
    					PAGE_EXECUTE = &H10
    					PAGE_EXECUTE_READ = &H20
    					PAGE_EXECUTE_READWRITE = &H4
    					PAGE_EXECUTE_WRITECOPY = &H8
    					PAGE_NOACCESS = &H1
    				End Enum
    			End Class
    		End Class
    		Public Shared Function DoInject(pToBeInjected As Process, sDllPath As String, ByRef sError As String) As Boolean
    			Dim hwnd As IntPtr = IntPtr.Zero
    			If Not CRT(pToBeInjected, sDllPath, sError, hwnd) Then
    				If hwnd <> CType(0, IntPtr) Then
    					WINAPI.CloseHandle(hwnd)
    				End If
    				Return False
    			End If
    			Dim wee As Integer = Marshal.GetLastWin32Error()
    			Return True
    		End Function
    		Private Shared Function CRT(pToBeInjected As Process, sDllPath As String, ByRef sError As String, ByRef hwnd As IntPtr) As Boolean
    			sError = [String].Empty
    			Dim hndProc As IntPtr = WINAPI.OpenProcess((&H2 Or &H8 Or &H10 Or &H20 Or &H400), 1, CUInt(pToBeInjected.Id))
    			hwnd = hndProc
    			If hndProc = CType(0, IntPtr) Then
    				sError = "Unable to attatch to process." & vbLf
    				sError += "Error code: " & Marshal.GetLastWin32Error()
    				Return False
    			End If
    			Dim lpLLAddress As IntPtr = WINAPI.GetProcAddress(WINAPI.GetModuleHandle("kernel32.dll"), "LoadLibraryA")
    			If lpLLAddress = CType(0, IntPtr) Then
    				sError = "Unable to find address of ""LoadLibraryA""." & vbLf
    				sError += "Error code: " & Marshal.GetLastWin32Error()
    				Return False
    			End If
    			Dim lpAddress As IntPtr = WINAPI.VirtualAllocEx(hndProc, CType(Nothing, IntPtr), CType(sDllPath.Length, IntPtr), CUInt(WINAPI.VAE_Enums.AllocationType.MEM_COMMIT) Or CUInt(WINAPI.VAE_Enums.AllocationType.MEM_RESERVE), CUInt(WINAPI.VAE_Enums.ProtectionConstants.PAGE_EXECUTE_READWRITE))
    			If lpAddress = CType(0, IntPtr) Then
    				If lpAddress = CType(0, IntPtr) Then
    					sError = "Unable to allocate memory to target process." & vbLf
    					sError += "Error code: " & Marshal.GetLastWin32Error()
    					Return False
    				End If
    			End If
    			Dim bytes As Byte() = CalcBytes(sDllPath)
    			Dim ipTmp As IntPtr = IntPtr.Zero
    			WINAPI.WriteProcessMemory(hndProc, lpAddress, bytes, CUInt(bytes.Length), ipTmp)
    			If Marshal.GetLastWin32Error() <> 0 Then
    				sError = "Unable to write memory to process."
    				sError += "Error code: " & Marshal.GetLastWin32Error()
    				Return False
    			End If
    			Dim ipThread As IntPtr = WINAPI.CreateRemoteThread(hndProc, CType(Nothing, IntPtr), CType(0, IntPtr), lpLLAddress, lpAddress, 0, _
    				CType(Nothing, IntPtr))
    			If ipThread = CType(0, IntPtr) Then
    				sError = "Unable to load dll into memory."
    				sError += "Error code: " & Marshal.GetLastWin32Error()
    				Return False
    			End If
    			Return True
    		End Function
    		Private Shared Function CalcBytes(sToConvert As String) As Byte()
    			Dim bRet As Byte() = System.Text.Encoding.ASCII.GetBytes(sToConvert)
    			Return bRet
    		End Function
    	End Class
    	Class DxInject
    		<DllImport("user32.dll")> _
    		Public Shared Function GetKeyState(nVirtKey As Short) As UShort
    		End Function
    		Public Const keyDownBit As UShort = &H80
    		Public Shared Function IsKeyPressed(key As Keys) As Boolean
    			Return ((GetKeyState(CShort(key)) And keyDownBit) = keyDownBit)
    		End Function
    		Private Shared Sub InjectDll()
    			Dim ID As Integer = 0
    			Dim proc As Process
    			Dim [error] As [String]
    			Dim bfound As Boolean = False
    			Dim sProcess As String = "crossfire"
    			Dim ProcName As String = Process.GetCurrentProcess().ProcessName
    			Dim exePath As String = Environment.CurrentDirectory & "\" & ProcName
    			Dim DllPath As String = exePath & ".dll"
    			If Not File.Exists(DllPath) Then
    				MessageBox.Show("Dll File Not Found!")
    				System.Environment.[Exit](1)
    			End If
    			While Not bfound
    				If IsKeyPressed(Keys.[End]) Then
    					MessageBox.Show("Exiting Injection!")
    					System.Environment.[Exit](1)
    				End If
    				For Each pro As Process In Process.GetProcesses()
    					If pro.ProcessName = sProcess Then
    						ID = pro.Id
    						bfound = True
    						Exit For
    					End If
    				Next
    				Thread.Sleep(100)
    			End While
    			proc = Process.GetProcessById(ID)
    			Dim result As Boolean = Inject.DoInject(proc, DllPath, [error])
    			If [error] <> "" Then
    				MessageBox.Show("Injection Error: " & [error])
    			Else
    				System.Environment.[Exit](1)
    			End If
    		End Sub
    		Private Shared Sub Main()
    			MessageBox.Show("-[I]fLuX Crossfire Injector" & vbTab & vbLf & "Press 'OK' and start CrossFire")
    			Dim t_inject As Thread
    			t_inject = New Thread(AddressOf InjectDll)
    			t_inject.Start()
    		End Sub
    	End Class
    End Namespace

     







    500 Posts ✓
    750 Posts ✓
    1,337 Posts ✓
    2,000 Posts ×
    3,000 Posts ×

    Ex VIP
    Ex Resource Team Member
    Ex Wiki Editor

  14. #43
    Mayion's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    Bed
    Posts
    13,504
    Reputation
    4018
    Thanks
    8,373
    My Mood
    Twisted
    Thank For Sharing .
    I do not use any type of messenger outside of MPGH.
    Inactive but you can reach me through VM/PM.










     

    Donator - 30 August 2013
    Battlefield Minion - 26 October 2013

    Blackshot Minion - 14 January 2014/16 September 2014
    Minecraft Minion - 7 February 2014/16 September 2014
    WarRock Minion - 23 February 2014
    League of Legends Minion - 21 March 2014

    Minion+ - 15 May 2014
    Other Semi-Popular First Person Shooter Minion - 8 August 2014
    CrossFire Minion - 23 October 2014
    Programming Section Minion - 13 November 2014
    Marketplace Minion - 7 December 2014

    Official Middleman - 7 December 2014 - 27 June 2015
    Moderator - 29 December 2014
    Project Blackout Minion - 10 January 2015
    News Force Interviewer - January 2015
    Steam Games Minion - 21 March 2015
    Dragon Nest Minion - 31 March 2015
    Publicist - April 2015 - 21 September 2015
    Global Moderator - 25 August 2015
    Super User - 13 August 2016



  15. #44
    Gοku's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    MPGH.net
    Posts
    1,527
    Reputation
    206
    Thanks
    1,043
    My Mood
    Cheerful
    Quote Originally Posted by vargacata View Post
    please the hack tabel not function
    It's An Injector? Not A Hack?

     







    500 Posts ✓
    750 Posts ✓
    1,337 Posts ✓
    2,000 Posts ×
    3,000 Posts ×

    Ex VIP
    Ex Resource Team Member
    Ex Wiki Editor

  16. #45
    kur's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    15
    Reputation
    10
    Thanks
    0
    Very Nice!

Page 3 of 3 FirstFirst 123

Similar Threads

  1. [Request] Need Crossfire Source Codes
    By [Lori]Yagami in forum Visual Basic Programming
    Replies: 6
    Last Post: 07-20-2012, 12:09 PM
  2. [Request] Crossfire NA Wall Hack Source Code
    By Dark Side in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 16
    Last Post: 08-13-2011, 03:03 AM
  3. Source code NA Crossfire
    By Nubzgetkillz in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 9
    Last Post: 10-01-2010, 06:07 AM
  4. CrossFire Hack Source Code Resource List!
    By *DeathHunter* in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 8
    Last Post: 09-14-2010, 05:53 AM
  5. Search source code's [CrossFire]
    By mba in forum Visual Basic Programming
    Replies: 15
    Last Post: 11-22-2009, 04:24 PM