Results 1 to 7 of 7
  1. #1
    dudemil's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Kansas
    Posts
    63
    Reputation
    9
    Thanks
    9
    My Mood
    Aggressive

    Unhappy HELP can anyone help me

    Me and my team have made a few hacks but we need only one more thing.
    Could anyone PM me or anything we need someone to help us make an
    Awesome Injecter.

    Because i can find any source codes at all. PLEASE HELP.
    If you do you will get the VIP hack we are makinh

  2. #2
    iSkyFinity's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Elk Grove, California
    Posts
    1,197
    Reputation
    12
    Thanks
    113
    My Mood
    Bored
    If you can make hacks, you can make at least a decent injector. My opinion lol




    Vindictus Section of MPGH
    I'm an ex-player and hacker of Mabinogi, Need help? PM or VM will do it.
    My Contacts:
    Facebook | YouTube | Tumblr | Twitter


  3. #3
    Krypton1x's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Tacoma
    Posts
    13,296
    Reputation
    1184
    Thanks
    1,196
    My Mood
    Brooding
    Search for Valkyrie Injector. Use the search bar.

  4. #4
    Void's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Inline.
    Posts
    3,198
    Reputation
    205
    Thanks
    1,445
    My Mood
    Mellow
    Trust me, if you're able to make VIP hacks you should be able to make an injector easily.

  5. #5
    God601's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    In The End Of The Time
    Posts
    554
    Reputation
    10
    Thanks
    362
    My Mood
    Angelic
    A injector is like one of the most easyest thing you can make...
    Combat Arms is one of the most hardest game to hack... comon -.-

    Starting my own Web hosting service
    Finaly completed.

    Progress for Exchange Server : 100%


  6. #6
    R45H1D's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Montreal
    Posts
    785
    Reputation
    21
    Thanks
    951
    My Mood
    Amazed
    DLL Injector With ListBox

    LOL I BET UR LYING BUT STILL HERE IS THE SOURCE

    Start Ur VB app...(I use Microsoft Visual Studio Pro)
    Create a New Windows form Application
    You can name it anything

    Double Click on the Little Window Form there and inter the code below.

    Code:
    ' made by: unkown and edited by TopBlast 
    ' do not leech 
    ' give credits
    
    Public Class Form1
    
        Private TargetProcessHandle As Integer
        Private pfnStartAddr As Integer
        Private pszLibFileRemote As String
        Private TargetBufferSize As Integer
    
        Public Const PROCESS_VM_READ = &H10
        Public Const TH32CS_SNAPPROCESS = &H2
        Public Const MEM_COMMIT = 4096
        Public Const PAGE_READWRITE = 4
        Public Const PROCESS_CREATE_THREAD = (&H2)
        Public Const PROCESS_VM_OPERATION = (&H8)
        Public Const PROCESS_VM_WRITE = (&H20)
    
        Public Declare Function ReadProcessMemory Lib "kernel32" ( _
        ByVal hProcess As Integer, _
        ByVal lpBaseAddress As Integer, _
        ByVal lpBuffer As String, _
        ByVal nSize As Integer, _
        ByRef lpNumberOfBytesWritten As Integer) As Integer
    
        Public Declare Function LoadLibrary Lib "kernel32" Alias "LoadLibraryA" ( _
        ByVal lpLibFileName As String) As Integer
    
        Public Declare Function VirtualAllocEx Lib "kernel32" ( _
        ByVal hProcess As Integer, _
        ByVal lpAddress As Integer, _
        ByVal dwSize As Integer, _
        ByVal flAllocationType As Integer, _
        ByVal flProtect As Integer) As Integer
    
        Public Declare Function WriteProcessMemory Lib "kernel32" ( _
        ByVal hProcess As Integer, _
        ByVal lpBaseAddress As Integer, _
        ByVal lpBuffer As String, _
        ByVal nSize As Integer, _
        ByRef lpNumberOfBytesWritten As Integer) As Integer
    
        Public Declare Function GetProcAddress Lib "kernel32" ( _
        ByVal hModule As Integer, ByVal lpProcName As String) As Integer
    
        Private Declare Function GetModuleHandle Lib "Kernel32" Alias "GetModuleHandleA" ( _
        ByVal lpModuleName As String) As Integer
    
        Public Declare Function CreateRemoteThread Lib "kernel32" ( _
        ByVal hProcess As Integer, _
        ByVal lpThreadAttributes As Integer, _
        ByVal dwStackSize As Integer, _
        ByVal lpStartAddress As Integer, _
        ByVal lpParameter As Integer, _
        ByVal dwCreationFlags As Integer, _
        ByRef lpThreadId As Integer) As Integer
    
        Public Declare Function OpenProcess Lib "kernel32" ( _
        ByVal dwDesiredAccess As Integer, _
        ByVal bInheritHandle As Integer, _
        ByVal dwProcessId As Integer) As Integer
    
        Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" ( _
        ByVal lpClassName As String, _
        ByVal lpWindowName As String) As Integer
    
        Private Declare Function CloseHandle Lib "kernel32" Alias "CloseHandleA" ( _
        ByVal hObject As Integer) As Integer
    
    
        Dim ExeName As String = IO.Path.GetFileNameWithoutExtension(Application.ExecutablePath)
    
        Private Sub Injectionlistbox()
            MsgBox("This injector codes were produce by Topblast of MPGH")
        End Sub
        Private Sub Inject()
            On Error GoTo 1 ' If an error occurs it will close else it will not close you will hear a BEEP r a sound
            Timer1.Stop()
            Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox1.Text)
            TargetProcessHandle = OpenProcess(PROCESS_CREATE_THREAD Or PROCESS_VM_OPERATION Or PROCESS_VM_WRITE, False, TargetProcess(0).Id)
            pszLibFileRemote = ListBox1.SelectedItem
            pfnStartAddr = GetProcAddress(GetModuleHandle("Kernel32"), "LoadLibraryA")
            TargetBufferSize = 1 + Len(pszLibFileRemote)
            Dim Rtn As Integer
            Dim LoadLibParamAdr As Integer
            LoadLibParamAdr = VirtualAllocEx(TargetProcessHandle, 0, TargetBufferSize, MEM_COMMIT, PAGE_READWRITE)
            Rtn = WriteProcessMemory(TargetProcessHandle, LoadLibParamAdr, pszLibFileRemote, TargetBufferSize, 0)
            CreateRemoteThread(TargetProcessHandle, 0, 0, pfnStartAddr, LoadLibParamAdr, 0, 0)
            CloseHandle(TargetProcessHandle)
            Call Injectionlistbox()
    1:      Me.Close()
        End Sub
    
        Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
            If IO.File.Exists(ListBox1.SelectedItem) Then
                Dim TargetProcess As Process() = Process.GetProcessesByName("HSUpdate")
                If TargetProcess.Length = 0 Then
                    Me.TextBox2.Text = ("Waiting for " + TextBox1.Text)
                Else
                    Timer1.Stop()
                    Me.TextBox2.Text = "Done..."
                    Call Inject()
                    Me.Close()
                End If
            Else
                Me.TextBox2.Text = ("Selected a DLL")
            End If
        End Sub
    
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            Timer1.Start()
            Timer1.Interval = NumericUpDown1.Value
        End Sub
    
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            Dim OpenFileDialog1 As OpenFileDialog
    
            OpenFileDialog1.InitialDirectory = "Desktop"
            OpenFileDialog1.Filter = "DLL files (*.DLL)|*.dll|All files (*.*)|*.*"
            OpenFileDialog1.FilterIndex = 1
            OpenFileDialog1.RestoreDirectory = True
    
            If OpenFileDialog1.ShowDialog() = System.Windows.Forms.DialogResult.OK Then
                Try
                    ListBox1.Items.Add(OpenFileDialog1.FileName)
                    ListBox1.Select()
                Catch Ex As Exception
                    MessageBox.Show("Cannot read file from disk. Original error: " & Ex.Message)
                End Try
            End If
        End Sub
    
        Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
            ListBox1.Items.Remove(ListBox1.SelectedItem)
        End Sub
    
        Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
            ListBox1.Items.Clear()
        End Sub
    End Class
    Now add
    • Two Textboxes
    • One Listbox
    • Three Buttons
    • One NumericUpDown


    Do you finishing Touches
    Build or Compile and run
    and you will be done i also added Source Code Here

  7. #7
    Sixx93's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    673
    Reputation
    21
    Thanks
    250
    My Mood
    Cool
    Quote Originally Posted by dudemil View Post
    Me and my team have made a few hacks but we need only one more thing.
    Could anyone PM me or anything we need someone to help us make an
    Awesome Injecter.

    Because i can find any source codes at all. PLEASE HELP.
    If you do you will get the VIP hack we are makinh
    if u want, i code in vb.net i can make an injector in few minutes... i can also attach a .dll in the injector... if u are interested, just PM me

Similar Threads

  1. [Help Request] can anyone help me make this mod? for cleric
    By ariefariq2 in forum Dragon Nest Help
    Replies: 3
    Last Post: 09-23-2011, 11:07 AM
  2. [Help Request] Can anyone help me .rez Mod?
    By Albus Dumbledore in forum Combat Arms Mod Help
    Replies: 1
    Last Post: 07-01-2011, 11:22 AM
  3. Can anyone help me a bit?
    By Kingleo33 in forum WarRock - International Hacks
    Replies: 4
    Last Post: 05-12-2008, 06:33 PM
  4. People, can anyone help me?
    By tolik13 in forum WarRock - International Hacks
    Replies: 17
    Last Post: 07-21-2007, 01:56 AM
  5. Can anyone help w/ this?
    By Stranger00 in forum WarRock - International Hacks
    Replies: 5
    Last Post: 05-22-2007, 04:59 AM