Page 2 of 4 FirstFirst 1234 LastLast
Results 16 to 30 of 55
  1. #16
    Fox's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Beyond the Earth
    Posts
    7,805
    Reputation
    206
    Thanks
    2,176
    My Mood
    Worried
    Quote Originally Posted by SwiftWind View Post
    OMG I DONT LEECH I JUST DONT KNOW WHAT EAX IS SO CHEAT U ARE WEIRD AND THE WORST I JUST TRYING TO HELP AND WHAT WRONG WITHOUT KNOWING EAX LIKE OMG
    I JUST HELP AND I BET IM YOUNGEST PERSON IN MPGH SO I DONT KNOW EAX OK LIVE WITH IT
    U QQ much...

  2. #17
    SwiftWind's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    46
    Reputation
    10
    Thanks
    20
    My Mood
    Amazed
    Quote Originally Posted by CheatCreatorzz View Post


    Disable your Capslock
    and ok, cmon restart coding and you will be a pro kid.
    and i was just laughing
    im weird,ow yeah.
    why would i restart coding u know how much i code and stuff work perfect and then people say leeched when it isnt its just simple and then it gets deleted and then i get upset that its deleted so i might as well quit injectors and hacks and tricks

  3. #18
    wowh4x's Avatar
    Join Date
    Sep 2010
    Gender
    female
    Location
    Ur mom Bed
    Posts
    414
    Reputation
    5
    Thanks
    3
    My Mood
    Angelic
    What is EAX ?

  4. #19
    Fox's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Beyond the Earth
    Posts
    7,805
    Reputation
    206
    Thanks
    2,176
    My Mood
    Worried
    Quote Originally Posted by wowh4x View Post
    What is EAX ?
    Google noob...


    /LEACHER SPOTED LOL

  5. #20
    MellowHypeAlt's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    1,788
    Reputation
    -158
    Thanks
    77
    My Mood
    Mellow
    Quote Originally Posted by SwiftWind View Post
    why would i restart coding u know how much i code and stuff work perfect and then people say leeched when it isnt its just simple and then it gets deleted and then i get upset that its deleted so i might as well quit injectors and hacks and tricks
    Proof that u didn't leech or gtfo.
    Free Tristan <3

  6. #21
    CheatCreatorzz's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    922
    Reputation
    18
    Thanks
    730
    My Mood
    Amused
    Quote Originally Posted by wowh4x View Post
    What is EAX ?
    You can find it in OllyDbg, for finding addies
    Learn Assembly and you know.
    for creating hacks, You need to know the basics of Assembly
    EAX: general purpose (target)
    => more or less interchangeable(=identical)
    same as ECX & EDX.
    Last edited by CheatCreatorzz; 06-30-2011 at 09:45 AM.





    (_¸.•*´'`°¤¸'¸¤°´'`*•.¸_)

    Video Creator
    GFX Creator
    C++ Coder
    D3D Coder

    (¯`*•.¸,¤°´'`°¤,¸.•*´¯)




  7. #22
    MellowHypeAlt's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    1,788
    Reputation
    -158
    Thanks
    77
    My Mood
    Mellow
    Quote Originally Posted by wowh4x View Post
    What is EAX ?
    EAX may refer to:
    Environmental audio extensions, a number of digital signal processing presets for audio, found in Sound Blaster sound cards
    EAX mode, a mode of operation for cryptographic block ciphers
    EAX, a computer processor register on the IA-32 microprocessor architecture
    Free Tristan <3

  8. #23
    SwiftWind's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    46
    Reputation
    10
    Thanks
    20
    My Mood
    Amazed
    Quote Originally Posted by MellowHypeAlt View Post
    Proof that u didn't leech or gtfo.
    how can i proof want me to show u my injector codes fine here
    Code:
    Form1
    button1.text = "Browse..."
    label1.text = "Waiting for users input..."
    timer1.interval = 50
    timer1.start()
    
    Timer
    If IO.File.Exists(OpenFileDialog1.FileName) Then
    Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox1.Text)
    If TargetProcess.Length = 0 Then
    Me.Label1.Text = ("Waiting for " + TextBox1.Text + ".exe")
    
    Else
    Timer1.Stop()
    Me.Label1.Text = "Successfully Injected!"
    Call Inject()
    End If
    Else
    
    End If
    
    Public Class
    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)
    Dim DLLFileName As String
    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 Inject()
    On Error GoTo 1 ' If error occurs, app will close without any error messages
    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 = OpenFileDialog1.FileName
    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)
    1: Me.Show()
    End Sub
    
    Button
    OpenFileDialog1.Filter = "DLL (*.dll) |*.dll"
    OpenFileDialog1.ShowDialog()
    Dim FileName As String
    FileName = OpenFileDialog1.FileName.Substring(OpenFileDialog1 .FileName.LastIndexOf("\"))
    Dim DllFileName As String = FileName.Replace("\", "")
    Me.TextBox2.Text = (DllFileName)

  9. #24
    MellowHypeAlt's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    1,788
    Reputation
    -158
    Thanks
    77
    My Mood
    Mellow
    Quote Originally Posted by SwiftWind View Post
    how can i proof want me to show u my injector codes fine here
    Code:
    Form1
    button1.text = "Browse..."
    label1.text = "Waiting for users input..."
    timer1.interval = 50
    timer1.start()
    
    Timer
    If IO.File.Exists(OpenFileDialog1.FileName) Then
    Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox1.Text)
    If TargetProcess.Length = 0 Then
    Me.Label1.Text = ("Waiting for " + TextBox1.Text + ".exe")
    
    Else
    Timer1.Stop()
    Me.Label1.Text = "Successfully Injected!"
    Call Inject()
    End If
    Else
    
    End If
    
    Public Class
    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)
    Dim DLLFileName As String
    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 Inject()
    On Error GoTo 1 ' If error occurs, app will close without any error messages
    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 = OpenFileDialog1.FileName
    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)
    1: Me.Show()
    End Sub
    
    Button
    OpenFileDialog1.Filter = "DLL (*.dll) |*.dll"
    OpenFileDialog1.ShowDialog()
    Dim FileName As String
    FileName = OpenFileDialog1.FileName.Substring(OpenFileDialog1 .FileName.LastIndexOf("\"))
    Dim DllFileName As String = FileName.Replace("\", "")
    Me.TextBox2.Text = (DllFileName)
    looks very interesting to me.... @Swiftdude any of this yours?
    Free Tristan <3

  10. #25
    SwiftWind's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    46
    Reputation
    10
    Thanks
    20
    My Mood
    Amazed
    Quote Originally Posted by MellowHypeAlt View Post
    looks very interesting to me.... @Swiftdude any of this yours?
    yes its mine i coded with my bro and 1 friend but when they left i finished all and rest

    Quote Originally Posted by MellowHypeAlt View Post
    looks very interesting to me.... @Swiftdude any of this yours?
    yes its mine i coded with my bro and 1 friend but when they left i finished all and rest

  11. #26
    MellowHypeAlt's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    1,788
    Reputation
    -158
    Thanks
    77
    My Mood
    Mellow
    Quote Originally Posted by SwiftWind View Post
    yes its mine i coded with my bro and 1 friend but when they left i finished all and rest



    yes its mine i coded with my bro and 1 friend but when they left i finished all and rest
    Alright if u say so.
    The OP says u lecched so i say take it to the VM and have a flame war
    Free Tristan <3

  12. #27
    SwiftWind's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    46
    Reputation
    10
    Thanks
    20
    My Mood
    Amazed
    Quote Originally Posted by MellowHypeAlt View Post
    Alright if u say so.
    The OP says u lecched so i say take it to the VM and have a flame war
    uh where is the vm?

  13. #28
    Lyoto Machida's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Far away with girls
    Posts
    3,734
    Reputation
    133
    Thanks
    1,621
    My Mood
    Aggressive
    You dont need to know ASM to make hacks, But he still being a leecher

  14. #29
    MellowHypeAlt's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    1,788
    Reputation
    -158
    Thanks
    77
    My Mood
    Mellow
    Quote Originally Posted by SwiftWind View Post
    uh where is the vm?
    Click on his name and go on his profile and ask him if he wants proof that u didn't leech it.
    That will shut him up if u have the right proof
    Free Tristan <3

  15. #30
    Skulhead = hacked.'s Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    521
    Reputation
    10
    Thanks
    225
    My Mood
    Bored
    Quote Originally Posted by SwiftWind View Post
    how can i proof want me to show u my injector codes fine here
    Code:
    Form1
    button1.text = "Browse..."
    label1.text = "Waiting for users input..."
    timer1.interval = 50
    timer1.start()
    
    Timer
    If IO.File.Exists(OpenFileDialog1.FileName) Then
    Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox1.Text)
    If TargetProcess.Length = 0 Then
    Me.Label1.Text = ("Waiting for " + TextBox1.Text + ".exe")
    
    Else
    Timer1.Stop()
    Me.Label1.Text = "Successfully Injected!"
    Call Inject()
    End If
    Else
    
    End If
    
    Public Class
    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)
    Dim DLLFileName As String
    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 Inject()
    On Error GoTo 1 ' If error occurs, app will close without any error messages
    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 = OpenFileDialog1.FileName
    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)
    1: Me.Show()
    End Sub
    
    Button
    OpenFileDialog1.Filter = "DLL (*.dll) |*.dll"
    OpenFileDialog1.ShowDialog()
    Dim FileName As String
    FileName = OpenFileDialog1.FileName.Substring(OpenFileDialog1 .FileName.LastIndexOf("\"))
    Dim DllFileName As String = FileName.Replace("\", "")
    Me.TextBox2.Text = (DllFileName)
    This code is all over the internet. Leecher.
    Proof c++, not VB.

Page 2 of 4 FirstFirst 1234 LastLast