Crasher patch

Page 4 of 15 FirstFirst 12345678910111214 ... LastLast
Results 46 to 60 of 215
  1. #46
    GunZ Developer dacharles is offline
    MemberRank
    Oct 2006 Join Date
    476Posts

    Re: Crasher patch

    Quote Originally Posted by ThePhailure772 View Post
    Funny, because mine works wonderfully on x64 now. No crashes at all :). Also patched all SQL injections. If need be Andy / Peter / Wizkid / DonaldDuck / multi-personality faggot wants to think he's so amazing I'll releases all SQL injections. Hell, I can render ANY anti-hack useless.
    Are you selling me the patch? xD

  2. #47
    Praise the Sun! Solaire is offline
    MemberRank
    Dec 2007 Join Date
    Undead BurgLocation
    2,862Posts

    Re: Crasher patch

    Quote Originally Posted by ThePhailure772 View Post
    Funny, because mine works wonderfully on x64 now. No crashes at all :). Also patched all SQL injections. If need be Andy / Peter / Wizkid / DonaldDuck / multi-personality faggot wants to think he's so amazing I'll releases all SQL injections. Hell, I can render ANY anti-hack useless.
    'Yours' works perfectly when it's leeched from mine? Euhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh. Owkay. Tbh, mine works fine on x64, some versions of Windows 2003 refuse to load a DLL. As soon as a hook is applied, the application crashes.

    And have fun with the SQL injections, that shit is sooo easy to patch, just scan all incoming packets, rofl. Remember you couldn't get the one in the room name working? Well, I have it patched.

    On and third, your 'patch' doesn't patch SQL injections at all, nor the crash. It only blocks 4 exploits.

    Fourth, you're the one here that thinks he is amazing. Run away from it, hide for it, we all know it. You didn't change Jacob, you didn't...

    Fifth, I'll release a public patch for anything that causes a huge damage. For FREE.

  3. #48
    GunZ Developer dacharles is offline
    MemberRank
    Oct 2006 Join Date
    476Posts

    Re: Crasher patch

    Quote Originally Posted by Wizkidje View Post
    'Yours' works perfectly when it's leeched from mine? Euhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh. Owkay. Tbh, mine works fine on x64, some versions of Windows 2003 refuse to load a DLL. As soon as a hook is applied, the application crashes.

    And have fun with the SQL injections, that shit is sooo easy to patch, just scan all incoming packets, rofl. Remember you couldn't get the one in the room name working? Well, I have it patched.

    On and third, your 'patch' doesn't patch SQL injections at all, nor the crash. It only blocks 4 exploits.

    Fourth, you're the one here that thinks he is amazing. Run away from it, hide for it, we all know it. You didn't change Jacob, you didn't...

    Fifth, I'll release a public patch for anything that causes a huge damage. For FREE.
    Wizkidje for President..Yeah

  4. #49
    Member [+]Daniel is offline
    MemberRank
    Mar 2009 Join Date
    62Posts

    Re: Crasher patch

    Quote Originally Posted by Wizkidje View Post
    'Yours' works perfectly when it's leeched from mine? Euhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh. Owkay. Tbh, mine works fine on x64, some versions of Windows 2003 refuse to load a DLL. As soon as a hook is applied, the application crashes.

    And have fun with the SQL injections, that shit is sooo easy to patch, just scan all incoming packets, rofl. Remember you couldn't get the one in the room name working? Well, I have it patched.

    On and third, your 'patch' doesn't patch SQL injections at all, nor the crash. It only blocks 4 exploits.

    Fourth, you're the one here that thinks he is amazing. Run away from it, hide for it, we all know it. You didn't change Jacob, you didn't...

    Fifth, I'll release a public patch for anything that causes a huge damage. For FREE.

    Owned.

    Wizkid is beast :)

  5. #50
    Member 97819589 is offline
    MemberRank
    Nov 2007 Join Date
    Araçatuba, BraLocation
    59Posts

    Re: Crasher patch

    Nice, thanks ...

  6. #51
    Valued Member Kelo is offline
    MemberRank
    Sep 2008 Join Date
    =] Private [=Location
    116Posts

    Re: Crasher patch

    Yes Nice Release. But

    once my server crashed i added it in and it worked fine. but it just crashed again? someoone found a way to get pass your .dll?

  7. #52
    Frantech Founder Deltaanime is offline
    MemberRank
    Nov 2004 Join Date
    CanadaLocation
    251Posts

    Re: Crasher patch

    Edit - Wrong account.

  8. #53
    Mako is insane. ThePhailure772 is offline
    MemberRank
    Sep 2007 Join Date
    1,115Posts

    Re: Crasher patch

    Quote Originally Posted by Wizkidje View Post
    'Yours' works perfectly when it's leeched from mine? Euhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh. Owkay. Tbh, mine works fine on x64, some versions of Windows 2003 refuse to load a DLL. As soon as a hook is applied, the application crashes.

    And have fun with the SQL injections, that shit is sooo easy to patch, just scan all incoming packets, rofl. Remember you couldn't get the one in the room name working? Well, I have it patched.

    On and third, your 'patch' doesn't patch SQL injections at all, nor the crash. It only blocks 4 exploits.

    Fourth, you're the one here that thinks he is amazing. Run away from it, hide for it, we all know it. You didn't change Jacob, you didn't...

    Fifth, I'll release a public patch for anything that causes a huge damage. For FREE.
    There's more then you know. MCommand::SetData is for TCP. Easy as that.
    Mine only patches 4? LOL?
    Code:
    	try
    	{
    		unsigned short nOffset = 0 ,nPacketId = 0, nUserLen = 0, nPassLen = 0;
    		memcpy (&nPacketId, lpPacket+2,2);
    		if (nPacketId == 0x3EA || (nPacketId == 0x3E9 && lpPacket[5] == 0xFF && lpPacket[6] == 0xFF && lpPacket[8] == 0xFF))
    		{
    			MCommand__SetDataDet.Ret (FALSE);
    			return false;
    		}
    		else if (nPacketId == 0x3E9)
    		{
    			nOffset=5;
    			memcpy (&nUserLen, lpPacket+5, 2);
    			if (nUserLen > 32)
    			{
    				MCommand__SetDataDet.Ret (FALSE);
    				return false;
    			}
    			nOffset+=nUserLen+2;
    			memcpy (&nPassLen, (lpPacket+nOffset), 2);
    			if (nPassLen > 64)
    			{
    				MCommand__SetDataDet.Ret (FALSE);
    				return false;
    			}
    		}
    Damn, that sure only patches 4 :(.
    You haven't seen the revisions of what I've done so try again.
    Next, I am the best ever. Lets see you bypass GameSecure. ThievingSix even refused to touch it. To be a cool kid like ColdFX, I shall post infoz!

    • Checksum on .code, .data, and .imports
    • Checksums all through d3d9, scanning VTable and device pointers.
    • Return address and code execution checks.
    • Thread checks from outside .code bypass.
    • Kernel32 function scanning
    • Custom time checks between sever and client, then anti-hack to client.
    • More games supported then "GunZ"
    • Custom obfuscation and virtualization for each function.

  9. #54
    GunZ Developer dacharles is offline
    MemberRank
    Oct 2006 Join Date
    476Posts

    Re: Crasher patch

    I smell ego mmm

  10. #55
    DRGunZ 2 Creator wesman2232 is offline
    MemberRank
    Jan 2007 Join Date
    Erie, PALocation
    4,872Posts

    Re: Crasher patch

    ....gotta add Wiz and Phail to my sig now? When will the ego end?
    very nice release though :P

  11. #56
    GunZ Developer dacharles is offline
    MemberRank
    Oct 2006 Join Date
    476Posts

    Re: Crasher patch

    Quote Originally Posted by wesman2232 View Post
    ....gotta add Wiz and Phail to my sig now? When will the ego end?
    very nice release though :P
    :/ cmon only add Phail...Wizkid is just defending himself xD

  12. #57
    Reverse Engineer ThievingSix is offline
    MemberRank
    Mar 2007 Join Date
    CaliforniaLocation
    901Posts

    Re: Crasher patch

    I only refused to touch it because I dislike unpacking -.-

  13. #58
    Mako is insane. ThePhailure772 is offline
    MemberRank
    Sep 2007 Join Date
    1,115Posts

    Re: Crasher patch

    There is no unpacking, it's just virtualized / obfuscated / encrypted.

  14. #59
    Reverse Engineer ThievingSix is offline
    MemberRank
    Mar 2007 Join Date
    CaliforniaLocation
    901Posts

    Re: Crasher patch

    Same shit.

  15. #60
    GunZ Developer dacharles is offline
    MemberRank
    Oct 2006 Join Date
    476Posts

    Re: Crasher patch

    Quote Originally Posted by ThePhailure772 View Post
    There is no unpacking, it's just virtualized / obfuscated / encrypted.
    Yeah! It's
    Last edited by dacharles; 31-07-09 at 03:50 AM.



Advertisement