Thread: Hack problem

Results 1 to 5 of 5
  1. #1
    gotter's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    Minecraft snowy Biome
    Posts
    360
    Reputation
    6
    Thanks
    153

    Hack problem

    i am making an injector in vb for combat arms. i would like to hide the .dll in the injector and make it inject it when the injector opens. could anyone please help me ( i know how to hide it in the injector but not how to let users be able to inject it without having to get it somewhere in their computer else than within the injector... )



    sorry for maybe being a noob but well... im not very good to make injectors and i want to make that for my friends because they dont know how to do all the injecting and all and so i taught i could make it so it injects and close as soon as it injects the hack. if someone could help me it would be very appreciated

  2. #2
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Just write the dll to a temp path and then inject it.

    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)

  3. #3
    gotter's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    Minecraft snowy Biome
    Posts
    360
    Reputation
    6
    Thanks
    153
    thats kind of what i need help with... i know how to add it to be in the .exe but then idk how to copy it somewhere nor anything... deleting it will be easy... but copy from .exe to lets say "C:/" will be a little harder cause i know how to add it as resource or anything but not how to copy it or inject it from there

  4. #4
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Then what I said IS what you need help with. Add the .dll to resources then:

    [highlight=vb.net]
    Private Sub WriteThenInject(ByVal file As Byte(), Byval proc As Process)
    Dim tempPath As String = IO.Path.GetTempFileName()
    IO.File.WriteAllBytes(tempPath, file)
    'call your injection function now, tempPath is the path of the dll.
    End Sub

    'use the function like this:
    WriteThenInject(My.Resources.Hack, Process.GetProcessesByName("lalala")(0))
    [/highlight]
    Last edited by Jason; 08-30-2011 at 07:20 AM.

    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)

  5. #5
    wtfiwantthatname's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Posts
    260
    Reputation
    10
    Thanks
    39
    My Mood
    Bored
    You can do what jason says. Or write the dll to memory as a byte array.
    "I don't believe in an afterlife, so I don't have to spend my whole life fearing hell, or fearing heaven even more. For whatever the tortures of hell, I think the boredom of heaven would be even worse." - Isaac Asimov

Similar Threads

  1. Hacking problem for Bots (Acclaim)
    By pk7677 in forum General Game Hacking
    Replies: 2
    Last Post: 08-02-2008, 04:03 AM
  2. hacking problem
    By MZKING in forum WarRock - International Hacks
    Replies: 17
    Last Post: 10-09-2007, 09:58 AM
  3. HACK PROBLEMS IMPOOORTTTAAANT!!!!!
    By yacko in forum WarRock - International Hacks
    Replies: 5
    Last Post: 09-16-2007, 01:21 AM
  4. hacking problem
    By badboyzed in forum WarRock - International Hacks
    Replies: 9
    Last Post: 06-07-2007, 12:01 AM
  5. hacking problems
    By iwillkillyou in forum WarRock - International Hacks
    Replies: 11
    Last Post: 02-04-2006, 04:37 PM