Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 41
  1. #16
    Hunter's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Location
    Depths Of My Mind.
    Posts
    17,468
    Reputation
    3771
    Thanks
    6,159
    My Mood
    Cheerful
    Quote Originally Posted by Riddick View Post
    I'm not releasing anything ever again due to leechers, and am keeping my stuff private from now on.
    Look i didn't gave you credits because i didn't used anything from you and i'm sure the code isn't yours...

  2. #17
    Riddick's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    Delusional
    Posts
    7,704
    Reputation
    529
    Thanks
    5,193
    My Mood
    Devilish
    Quote Originally Posted by Player_Gammer View Post
    Look i didn't gave you credits because i didn't used anything from you and i'm sure the code isn't yours...
    Fair enough then @Player_Gammer , or is it @Haxxxer007 ?

  3. #18
    Hunter's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Location
    Depths Of My Mind.
    Posts
    17,468
    Reputation
    3771
    Thanks
    6,159
    My Mood
    Cheerful
    Quote Originally Posted by Riddick View Post


    Fair enough then @Player_Gammer , or is it @Haxxxer007 ?
    It's Player_Gammer because it was me that created the injector...

  4. The Following User Says Thank You to Hunter For This Useful Post:

    sugulino (04-21-2014)

  5. #19
    kallonski's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    69
    Reputation
    10
    Thanks
    6
    My Mood
    Relaxed
    What are injectors used for?

  6. #20
    Hunter's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Location
    Depths Of My Mind.
    Posts
    17,468
    Reputation
    3771
    Thanks
    6,159
    My Mood
    Cheerful
    Quote Originally Posted by kallonski View Post
    What are injectors used for?
    They are used to inject not executable hacks...

  7. #21
    R3DDOT's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Location
    C://Windows/system32
    Posts
    347
    Reputation
    38
    Thanks
    2,366
    My Mood
    Cheerful
    Quote Originally Posted by Player_Gammer View Post
    First of all, wtf i didn't even knew that @Haxxxer007 had that code source, second that isn't yours, i watched a tutorial with the same things because in the beginning i didn't know how to make a dll injector , third i didn't used anything from your injector library, who helped me was @R3DDOT and fourth i watched the tutorial and then i made the injector by myself with @R3DDOT, i didn't used anything from you! And i'm sure that Muntailor soon enough will release a dll public hack , why don't you release it? That way people could use a dll hack on my injector...
    When did I help you with the injector? O.O
    Btw, I wasn't asking for you to GIVE ME credits, I was saying to give credits to who in fact made the injector code, and for those who in fact helped you.


    Quote Originally Posted by Player_Gammer View Post
    Np and don't worry, and look i don't think you know what an injector is... An injector is a tool used to inject a dll hack in the game, but to do that it's needed a dll hack and for now they're all patched, but don't worry i'm sure @Riddick or @Neox. will release a new bypass and @Frought will release a new dll hack... And btw if you want to thank me press thanks!
    Frought isn't releasing anything, I talked to him, he said he had no intentions of releasing anything, at least for now. @Neox. , I got no clue what he's up to, if he's releasing (*cough*)or leeching..(*cough*) anything or not.

    About Riddick, check his post on this thread.
    Don't think someone will releasing anything just because you want it...
    WAIT for someone to release bypasses or dll hacks or whatever, the more you ask for them, the less likely hacks will be released.
    Last edited by R3DDOT; 04-22-2014 at 01:12 PM.

  8. The Following 3 Users Say Thank You to R3DDOT For This Useful Post:

    Riddick (04-22-2014),sam201055 (04-22-2014),sugulino (04-22-2014)

  9. #22
    R3DDOT's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Location
    C://Windows/system32
    Posts
    347
    Reputation
    38
    Thanks
    2,366
    My Mood
    Cheerful
    Quote Originally Posted by Riddick View Post


    Code:
     
    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
    
    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
    This injector uses somewhat the code that you would use for C++.(Taken from FleepHacks Tutorials)
    btw @Riddick , wtf, "hProcess as Integer"? Shouldn't it be hProcess as IntPtr since it's an handle?
    And lpBuffer as String? Shouldn't it be lpBuffer as Byte() ?

    Idk if you actually use this code, but if you do pls fix it xd.
    Last edited by R3DDOT; 04-22-2014 at 12:55 PM.

  10. The Following 3 Users Say Thank You to R3DDOT For This Useful Post:

    Hunter (04-22-2014),sam201055 (04-22-2014),sugulino (04-22-2014)

  11. #23
    Hunter's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Location
    Depths Of My Mind.
    Posts
    17,468
    Reputation
    3771
    Thanks
    6,159
    My Mood
    Cheerful
    Quote Originally Posted by R3DDOT View Post


    When did I help you with the injector? O.O
    Btw, I wasn't asking for you to GIVE ME credits, I was saying to give credits to who in fact made the injector code, and for those who in fact helped you.




    Frought isn't releasing anything, I talked to him, he said he had no intentions of releasing anything, at least for now. @Neox. , I got no clue what he's up to, if he's releasing (*cough*)or leeching..(*cough*) anything or not.

    About Riddick, check his post on this thread.
    Don't think someone will releasing anything just because you want it...
    WAIT for someone to release bypasses or dll hacks or whatever, the more you ask for them, the less likely hacks will be released.
    I thanked you for helping me because when i asked if you could help me you said yes and second how coud i give credits to a link where i took the code? If you want to send the link pm me!
    Last edited by Hunter; 04-23-2014 at 03:34 PM.

  12. #24
    oXParadoxXo's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Who cares? ಠ_ಠ B̸̼̲͓̹̼͙̥̞̭̌̽
    Posts
    521
    Reputation
    10
    Thanks
    275
    My Mood
    Dead
    Quote Originally Posted by Riddick View Post
    I'm not releasing anything ever again due to leechers, and am keeping my stuff private from now on.
    So...instead of releasing it to the "public", would you release it to friends and/or long-time, known MPGH users that have never leeched or plagiarized? Because I think that I qualify as this.




     
     
    Quote Originally Posted by ccman32 View Post
    Stop begging, it's just annoying.



  13. #25
    Riddick's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    Delusional
    Posts
    7,704
    Reputation
    529
    Thanks
    5,193
    My Mood
    Devilish
    Quote Originally Posted by oXParadoxXo View Post


    So...instead of releasing it to the "public", would you release it to friends and/or long-time, known MPGH users that have never leeched or plagiarized? Because I think that I qualify as this.
    Add me on Skype then

  14. The Following User Says Thank You to Riddick For This Useful Post:

    oXParadoxXo (04-23-2014)

  15. #26
    Hunter's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Location
    Depths Of My Mind.
    Posts
    17,468
    Reputation
    3771
    Thanks
    6,159
    My Mood
    Cheerful
    Quote Originally Posted by oXParadoxXo View Post


    So...instead of releasing it to the "public", would you release it to friends and/or long-time, known MPGH users that have never leeched or plagiarized? Because I think that I qualify as this.
    Look @Riddick if the code was yours then i'm sorry but i found the code on a link, that's why i didn't give you credits but if after all you still say the code was yours i will give you credits but you must understand i as i found the code by myself i really thought the code wasn't yours, but it seemed i was wrong! @Riddick please edit my first post and give yourself credits... And i didn't leeched your code because i didn't knew that the code was yours!
    Last edited by Hunter; 04-24-2014 at 01:39 AM.

  16. #27
    Riddick's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    Delusional
    Posts
    7,704
    Reputation
    529
    Thanks
    5,193
    My Mood
    Devilish
    Quote Originally Posted by Player_Gammer View Post
    Look @Riddick if the code was yours then i'm sorry but i found the code on a link, that's why i didn't give you credits but if after all you still say the code was yours i will give you credits but you must understand i as i found the code by myself i really thought the code wasn't yours, but it seemed i was wrong! @Riddick please edit my first post and give yourself credits... And i didn't leeched your code because i didn't knew that the code was yours!
    I don't really care about it now, so stop mentioning me and quoting me as I'm now sick to my back teeth of this. Leave it there and do what the fuck you want to.

  17. #28
    ylliass's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    2
    Hi,

    Look i dont know much about these things. Can neox or riddick please make a new hack or at least an dll. I really want it and i never leeched anything can someone please help me ?

  18. #29
    manderballat's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    7
    Good job man .... Thanks

  19. #30
    ylliass's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    2
    Quote Originally Posted by Riddick View Post
    I'm not releasing anything ever again due to leechers, and am keeping my stuff private from now on.
    Riddick I understand your mad bro. Could you learn me how to make my own hacks please cause i dont have alot of experience at it. But i really wanne learn it. So please help me.
    Sorry for the bad english. I hope you understand the most of it.

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. .dll injector
    By EleMentX in forum Gunz General
    Replies: 31
    Last Post: 07-08-2010, 10:44 AM
  2. ~ DLL Injector Source Code ~
    By Silk[H4x] in forum Visual Basic Programming
    Replies: 32
    Last Post: 12-16-2009, 11:18 PM
  3. How to create a DLL Injector in VB6 ?
    By SteeL in forum Visual Basic Programming
    Replies: 1
    Last Post: 12-12-2008, 05:03 PM
  4. Need a .dll Injector
    By ItsMeBrad in forum Suggestions, Requests & General Help
    Replies: 0
    Last Post: 08-27-2008, 06:14 PM
  5. dll injector
    By ZeaS in forum Visual Basic Programming
    Replies: 18
    Last Post: 10-03-2007, 07:05 AM