Results 1 to 6 of 6
  1. #1
    ultahackers's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    139
    Reputation
    9
    Thanks
    73
    My Mood
    Amused

    Help MPGH (Visual Basic Pro's)

    Ok so i am working on my hack and i want to make a loader that will hold the .dll file in it.. then when Combat Arms..or WarRock starts the hack will be injected...
    -------------------------
    loader that hooks up the HAck (DLL) to the program
    so like u have to run the program to GET the dll
    Like the DLL's built into the program??
    /yea

    please help me.... ty

  2. #2
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    If you post this (move this) to the vb section, you can get more help.

    We have numerous tutorials and open source applications to do just this.
    you may need some help with auto inject, but when this is moved, you will get it.



     


     


     



    The Most complete application MPGH will ever offer - 68%




  3. The Following User Says Thank You to NextGen1 For This Useful Post:

    [MPGH]Liz (11-09-2010)

  4. #3
    Liz's Avatar
    Join Date
    Feb 2009
    Gender
    female
    Location
    179° 56′ 39.4″, +0° 2′ 46.2″, 7,940 ± 420 parsecs
    Posts
    37,181
    Reputation
    5621
    Thanks
    20,746
    My Mood
    Tired
    Moved to VB section.

    If anyone claims to be me via any other source outside of MPGH private or visitor messages, IT'S NOT ME!
    They are trying to trick or scam you. Report them immediately and PM me here for verification.
    "Don’t confuse my personality with my attitude. My personality is who I am. My attitude depends on who you are." — Frank Ocean
    Moderator: 5/2009-10/2009 | GMod: 10/2009-10/2010 | Staff Administrator: 10/2010-Present
    I
    do not do requests via PM. Post in the appropriate section.
     
    Stupid/Pointless Private messages = SPAM, SPAM = BAN.

  5. #4
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Quote Originally Posted by Liz View Post
    Moved to VB section.
    Faster then I can type

    Anyway, again, there are numerous tutorials and open source applications for injectors, if you want to auto inject.



    Your Function
    Code:
    Public Function GameStarted(ByVal ProcessName As String) As Integer
     Try
       Return Process.GetProcessesByName(ProcessName).GetUpperBound(0) + 1
     Catch
       Return 0
     End Try
     
    End Function
    Then use you function in a timer with a flag

    Code:
    If GameStarted("Combat Arms") = 1 Then
    'YadaYadaYads
    ' set flag = true
    'disable timer
    
    End If
    ~Standard MSDN code for checking if a process is running, by adding it to a timer, you can check to see if it has "started" then you can use flags to trigger




     


     


     



    The Most complete application MPGH will ever offer - 68%




  6. #5
    ultahackers's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    139
    Reputation
    9
    Thanks
    73
    My Mood
    Amused
    Ty for move Liz. But still need some help

  7. #6
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Quote Originally Posted by NextGen1 View Post


    Faster then I can type

    Anyway, again, there are numerous tutorials and open source applications for injectors, if you want to auto inject.



    Your Function
    Code:
    Public Function GameStarted(ByVal ProcessName As String) As Integer
     Try
       Return Process.GetProcessesByName(ProcessName).GetUpperBound(0) + 1
     Catch
       Return 0
     End Try
     
    End Function
    Then use you function in a timer with a flag

    Code:
    If GameStarted("Combat Arms") = 1 Then
    'YadaYadaYads
    ' set flag = true
    'disable timer
    
    End If
    ~Standard MSDN code for checking if a process is running, by adding it to a timer, you can check to see if it has "started" then you can use flags to trigger


    Pretty much the same thing, but minus the Try-Catch
    [php]
    Private Function GameStarted(ByVal procName As String) As Boolean
    If Process.GetProcessesByName(procName)(0).Length > 0 Then
    Return True
    Else
    Return False
    End if
    End function
    [/php]

    As for extracting the file to the computer to inject it. Consider the following:

    [php]
    dim rand As New Random
    Dim tmp As String = String.Concat(My.Computer.FileSystem.GetTempfileNa me, Cint(rand.next(1, 58) * 75723), ".dll")
    IO.File.WriteAllBytes(tmp, My.Resources.OMGAWESOMEHACK)
    'do injection specifying the path as "tmp"
    [/php]

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

Similar Threads

  1. Need Help With Visual Basic 2008
    By xsaban13x in forum Combat Arms Discussions
    Replies: 2
    Last Post: 04-19-2010, 01:43 AM
  2. [RELEASE]Official MPGH Visual Basics Help site (with vBulletin!)
    By Pixie in forum Visual Basic Programming
    Replies: 31
    Last Post: 12-19-2009, 11:47 AM
  3. Need help with visual basic PHISHING program
    By mariofan901 in forum Visual Basic Programming
    Replies: 14
    Last Post: 10-10-2009, 11:27 AM
  4. HELP IN visual basic 2008
    By zmansquared in forum Combat Arms Hacks & Cheats
    Replies: 2
    Last Post: 04-14-2009, 08:49 PM
  5. MPGH Visual Basic Template
    By Jeckels in forum WarRock - International Hacks
    Replies: 1
    Last Post: 09-23-2007, 02:52 AM