Page 9 of 11 FirstFirst ... 7891011 LastLast
Results 121 to 135 of 151
  1. #121
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Quote Originally Posted by AVGN View Post

    yes...

    i've tried it in the past with no luck

    You prolly change the Hash of a Actual Patch hack ( Engine/Cshell update )

  2. #122
    AVGN's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Kekistan
    Posts
    15,566
    Reputation
    1817
    Thanks
    6,678
    Quote Originally Posted by whit View Post
    You prolly change the Hash of a Actual Patch hack ( Engine/Cshell update )
    probably...




  3. #123
    Departure's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    805
    Reputation
    125
    Thanks
    1,794
    My Mood
    Doh
    Quote Originally Posted by NOOB View Post


    So I take in original .dll in as a byte array, write random bytes at the end of the .dll (adding more bytes to it, increasing size of the array?) and then write it back on the computer with a random name?

    basically yes....

    The dll will never read the overlay because in the headers has information about the dll's sections and there sizes so it will only load the original data, but adding the bytes will change its MD5 calculation.
    Last edited by Departure; 05-05-2011 at 10:06 PM.

  4. #124
    Cryptonic's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    United Provinces of Canada
    Posts
    1,313
    Reputation
    44
    Thanks
    190
    My Mood
    Bored
    I just took out the ptc, works that way. But then i cant use ptc...

    Noobs and Flams dc...
    Last edited by Cryptonic; 05-06-2011 at 01:57 PM.

  5. #125
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    Quote Originally Posted by Departure View Post
    basically yes....

    The dll will never read the overlay because in the headers has information about the dll's sections and there sizes so it will only load the original data, but adding the bytes will change its MD5 calculation.
    @Departure

    I tried doing that to your hotkey hack (crashes as-is from the attachment) and after adding one byte to the end of the dll, it works (even works with out changing the name). also works with JA 1.0 (which is 'detected')

    i just did something like this :

    Code:
            Dim oldDLL() As Byte = IO.File.ReadAllBytes(TextBox1.Text) 'txtbox1 has the original DLL file path
            Dim newDLL(oldDLL.Length) As Byte 'we're making the new DLL with one byte added to the end
            Array.Copy(oldDLL, newDLL, oldDLL.GetUpperBound(0)) 'copies everything in the oldDLL to the newDLL
            newDLL(oldDLL.Length) = 77 'adds 77 for the last byte of the new dll (idk why 77)
            IO.File.WriteAllBytes(TextBox1.Text & ".cm", newDLL) 'outputs the new dll
    Last edited by NOOB; 05-06-2011 at 04:01 PM.

  6. The Following User Says Thank You to NOOB For This Useful Post:

    Departure (05-06-2011)

  7. #126
    Strikex's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    1,311
    Reputation
    9
    Thanks
    355
    My Mood
    Relaxed
    My detour posted in cabr Section is working in CANA
    100%
    i tested for 30 minutes...

  8. #127
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Quote Originally Posted by Xpeeh View Post
    My detour posted in cabr Section is working in CANA
    100%
    i tested for 30 minutes...
    Combined base v3 Detours still work

  9. #128
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    Quote Originally Posted by whit View Post
    Combined base v3 Detours still work
    d3d9 hooks still work

  10. The Following User Says Thank You to Crash For This Useful Post:

    whit (05-06-2011)

  11. #129
    Cryptonic's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    United Provinces of Canada
    Posts
    1,313
    Reputation
    44
    Thanks
    190
    My Mood
    Bored
    Quote Originally Posted by whit View Post
    Combined base v3 Detours still work
    I don't think so. I always dc few mins ingame from cshell.dll

  12. #130
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Quote Originally Posted by PepsiXHacker View Post


    I don't think so. I always dc few mins ingame from cshell.dll
    Works for me

  13. #131
    Cryptonic's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    United Provinces of Canada
    Posts
    1,313
    Reputation
    44
    Thanks
    190
    My Mood
    Bored
    Quote Originally Posted by whit View Post
    Works for me
    Really? Send me one with like chams on it (something simple), and ill test it

  14. #132
    Departure's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    805
    Reputation
    125
    Thanks
    1,794
    My Mood
    Doh
    Quote Originally Posted by NOOB View Post


    @Departure

    I tried doing that to your hotkey hack (crashes as-is from the attachment) and after adding one byte to the end of the dll, it works (even works with out changing the name). also works with JA 1.0 (which is 'detected')

    i just did something like this :

    Code:
            Dim oldDLL() As Byte = IO.File.ReadAllBytes(TextBox1.Text) 'txtbox1 has the original DLL file path
            Dim newDLL(oldDLL.Length) As Byte 'we're making the new DLL with one byte added to the end
            Array.Copy(oldDLL, newDLL, oldDLL.GetUpperBound(0)) 'copies everything in the oldDLL to the newDLL
            newDLL(oldDLL.Length) = 77 'adds 77 for the last byte of the new dll (idk why 77)
            IO.File.WriteAllBytes(TextBox1.Text & ".cm", newDLL) 'outputs the new dll
    @NOOB
    good job NOOB, so it is clear now its the hashing of the file that is detected
    Are you releasing it to public or keeping it private?

    P.s also just to let you know if you doing this to some packed file it wont work because some packers append settings to the end of the file(thats what your doing also) so there is a good chance you could corrupt the settings, luckily there is'nt many commercial packer that use setting at EOF.

    @whit

  15. #133
    Stephen's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Engine.exe
    Posts
    4,689
    Reputation
    184
    Thanks
    1,149
    My Mood
    Aggressive
    Quote Originally Posted by Departure View Post
    @NOOB
    good job NOOB, so it is clear now its the hashing of the file that is detected
    Are you releasing it to public or keeping it private?

    P.s also just to let you know if you doing this to some packed file it wont work because some packers append settings to the end of the file(thats what your doing also) so there is a good chance you could corrupt the settings, luckily there is'nt many commercial packer that use setting at EOF.

    @whit
    What If you made an injector that did that automatically

  16. #134
    jerrmy12's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    86
    Reputation
    6
    Thanks
    6
    Quote Originally Posted by NOOB View Post


    @Departure

    I tried doing that to your hotkey hack (crashes as-is from the attachment) and after adding one byte to the end of the dll, it works (even works with out changing the name). also works with JA 1.0 (which is 'detected')

    i just did something like this :

    Code:
            Dim oldDLL() As Byte = IO.File.ReadAllBytes(TextBox1.Text) 'txtbox1 has the original DLL file path
            Dim newDLL(oldDLL.Length) As Byte 'we're making the new DLL with one byte added to the end
            Array.Copy(oldDLL, newDLL, oldDLL.GetUpperBound(0)) 'copies everything in the oldDLL to the newDLL
            newDLL(oldDLL.Length) = 77 'adds 77 for the last byte of the new dll (idk why 77)
            IO.File.WriteAllBytes(TextBox1.Text & ".cm", newDLL) 'outputs the new dll


    @ noob, do that with all of the old and detected hax

  17. #135
    Tygaa's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Canada
    Posts
    101
    Reputation
    13
    Thanks
    73
    My Mood
    Breezy
    /offtopiclikeanigguhdrinkingkoolaid.



    GUESS WHOS BACK....DUNDUNDUNDUN.... BACK AGAIN.......DUNDUNDUNDUDN.....TYGAA'S BACKK.....DUNDUNDUNDUDN......FROM THE BAN....DUNDUNDUND.


    Lol watch this nigguh get banned again.
    Donations would be greatly appreciated


    [img]https://www.danasof*****m/sig/355917416737.jpg[/img]



    I read Pm's but dont reply to them
    Add me on msn for MPGH reasons only. mpghtygaa@hotmail.ca

Page 9 of 11 FirstFirst ... 7891011 LastLast