Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 42
  1. #16
    ~FALLEN~'s Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    devenv.exe
    Posts
    529
    Reputation
    23
    Thanks
    328
    My Mood
    Inspired
    Visual studio 2008

  2. #17
    u.A.v.A's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Posts
    640
    Reputation
    17
    Thanks
    633
    Quote Originally Posted by ~FALLEN~ View Post
    Visual studio 2008
    Visual studio 2010

  3. #18
    ~FALLEN~'s Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    devenv.exe
    Posts
    529
    Reputation
    23
    Thanks
    328
    My Mood
    Inspired
    For the people having "stability issues" it's your shitty code, I gave this to friends months ago and they never had to modify it for any reason, I also released this on UC and no on there has had "stability issues", and I have never had "stability issues" I don't know how you're hooking it, I don't know what you're doing in it, etc. But there is no problem with the code I provided. Try a vtable hook, see if that helps.

  4. #19
    superleecherz's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    1
    My Mood
    Amused
    Fix your unstable code kthx.

  5. #20
    ~FALLEN~'s Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    devenv.exe
    Posts
    529
    Reputation
    23
    Thanks
    328
    My Mood
    Inspired
    Quote Originally Posted by superleecherz View Post
    Fix your unstable code kthx.
    go superleech somewhere else. p.s code isn't unstable, kthnxbai

  6. #21
    pvgiangccc's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    How to use that Code ? Need What program ? CAn u tell me plz :̣̣

  7. #22
    AznNicholas1314's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    445
    Reputation
    20
    Thanks
    672
    Quote Originally Posted by ~FALLEN~ View Post
    Should be undetected, don't know, haven't used this in a while. Have fun (: *Yes you can port this to d3d8 if you know how*

    Tools : Ollydbg & IDA
    Credits : ~FALLEN~
    Coded in : C++

    Code:
    struct sStack
    {
    	sStack* PreviousStack;
    	DWORD ReturnAddress;
    	void* Arguments[ 127 ];//Maximum number of arguments to pass to a function
    };
    
    DWORD SCPtr = 0;//Table[19]
    DWORD SCRet = 0;//On xp - Start of EndScene Function + 0xB9 - Vista / 7 - Start of EndScene Function + 0x9E
    
    void __fastcall hkSceneCapture( void* ECX, void* EDX, signed int Capture )
    {
    	IDirect3DDevice9* pDevice;//Device interface pointer
    	sStack* Stack;//Stack handling structure
    	__asm
    	{
    	  MOV Stack, ESP
    	  pushad//Preserve all General-Registers
    	  pushfd//Preserve EFlags
    	}
    	if( Stack->ReturnAddress == SCRet )
    	{
    	  if( ( pDevice = Stack->PreviousStack->Arguments[ 0 ] ) != NULL )
    	  {
    	    //DoShit
    	  }
    	}
    	__asm
    	{
    	  popfd//Restore EFlags
    	  popad//Restore All General-Registers
    	}
    	return ( ( void( __thiscall* )( void*, signed int ) SCPtr )( ThisPtr, Capture );//Give control back to SceneCapture
    }
    
    DWORD Table = FindPattern( D3DModuleHandle, 0x105000, (PBYTE)"\xC7\x06\x00\x00\x00\x00\xC7\x46\x00\x0B\x00\x00\x00\x8B\xC6" ), "xx????xx?x???xx" );//CD3DDIDX7 SCPtr = this[19]
    Nice, hooking endscene by hooking an unchecked function that is called inside endscene. I might release the code snippets needed to get this working. GJ on the find!~

  8. The Following User Says Thank You to AznNicholas1314 For This Useful Post:

    falachen (06-02-2013)

  9. #23
    ~FALLEN~'s Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    devenv.exe
    Posts
    529
    Reputation
    23
    Thanks
    328
    My Mood
    Inspired
    Quote Originally Posted by AznNicholas1314 View Post
    Nice, hooking endscene by hooking an unchecked function that is called inside endscene. I might release the code snippets needed to get this working. GJ on the find!~
    As I said before, theres only 2 changes to make and all it is was a small antileech and if anyone had the experience to figure it out they wouldn't have "compatibility issues" or crashes or w.e they were having... Change esp to ebp and then change thisptr to ecx in the function prototype... Easy enough...
    Anyways this hook is like 2 years old... Its pretty sad on how few anticheats have picked up on it...

  10. #24
    AznNicholas1314's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    445
    Reputation
    20
    Thanks
    672
    Quote Originally Posted by ~FALLEN~ View Post
    As I said before, theres only 2 changes to make and all it is was a small antileech and if anyone had the experience to figure it out they wouldn't have "compatibility issues" or crashes or w.e they were having... Change esp to ebp and then change thisptr to ecx in the function prototype... Easy enough...
    Anyways this hook is like 2 years old... Its pretty sad on how few anticheats have picked up on it...
    HAHAHA that esp to ebp antilieech is pro :P almost had me there.

  11. #25
    oXParadoxXo's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Who cares? ಠ_ಠ B̸̼̲͓̹̼͙̥̞̭̌̽
    Posts
    521
    Reputation
    10
    Thanks
    275
    My Mood
    Dead
    So what does this do? Sorry, I'm kinda lost.

  12. The Following User Says Thank You to oXParadoxXo For This Useful Post:

    .Derp (04-21-2013)

  13. #26
    zZzeta/S's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Location
    Germany
    Posts
    1,061
    Reputation
    43
    Thanks
    2,100
    This is an Undetectet way to get the pDevice to draw your Stuff. But it's advanced code and has antileech protect
    Quote Originally Posted by Jabberwo0ck View Post
    Quote Originally Posted by uNrEaL View Post
    Cool, thanks!
    Ccman has gone too low. I've known for a long time he was sneaky.
    >top lel much crack many get so download wow

  14. #27
    oXParadoxXo's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Who cares? ಠ_ಠ B̸̼̲͓̹̼͙̥̞̭̌̽
    Posts
    521
    Reputation
    10
    Thanks
    275
    My Mood
    Dead
    Can anyone help me get this to function? I'm using MS Visual Studio Express 2012 and compiling this as a .cpp file to create a .dll file. What am I doing wrong? Sorry for being so nooby, but I really want to learn how to write in C++.

    I have:

    Code:
    DWORD SCRet = 0;//On xp - Start of EndScene Function + 0xB9 - Vista / 7 - Start of EndScene Function + 0x9E
    
    void __fastcall hkSceneCapture( void* ECX, void* EDX, signed int Capture )
    {
    	IDirect3DDevice9* pDevice;//Device interface pointer
    	sStack* Stack;//Stack handling structure
    	__asm
    	{
    	  MOV Stack, EBP
    	  pushad//Preserve all General-Registers
    	  pushfd//Preserve EFlags
    	}
    	if( Stack->ReturnAddress == SCRet )
    	{
    	  if( ( pDevice = Stack->PreviousStack->Arguments[ 0 ] ) != NULL )
    	  {
    	    //DoShit
    	  }
    	}
    	__asm
    	{
    	  popfd//Restore EFlags
    	  popad//Restore All General-Registers
    	}
    	return ( ( void( __thiscall* )( void*, signed int ) SCPtr )( ecx, Capture );//Give control back to SceneCapture
    }
    
    DWORD Table = FindPattern( D3DModuleHandle, 0x105000, (PBYTE)"\xC7\x06\x00\x00\x00\x00\xC7\x46\x00\x0B\x00\x00\x00\x8B\xC6" ), "xx????xx?x???xx" );//CD3DDIDX7 SCPtr = this[19]
    Is this right?

    I get a error message when I try to run (click Debug to Release) it:
    "Unable to start 'C:\Users\Username\Documents\Visual Studio 2012\Projects\MyFirstHack\Release\MyHacks.dll'.
    The system cannot fine the file specified."
    Last edited by oXParadoxXo; 01-27-2013 at 05:25 PM.

  15. The Following User Says Thank You to oXParadoxXo For This Useful Post:

    .Derp (04-21-2013)

  16. #28
    ~FALLEN~'s Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    devenv.exe
    Posts
    529
    Reputation
    23
    Thanks
    328
    My Mood
    Inspired
    Quote Originally Posted by oXParadoxXo View Post
    Can anyone help me get this to function? I'm using MS Visual Studio Express 2012 and compiling this as a .cpp file to create a .dll file. What am I doing wrong? Sorry for being so nooby, but I really want to learn how to write in C++.

    I have:

    Code:
    DWORD SCRet = 0;//On xp - Start of EndScene Function + 0xB9 - Vista / 7 - Start of EndScene Function + 0x9E
    
    void __fastcall hkSceneCapture( void* ECX, void* EDX, signed int Capture )
    {
    	IDirect3DDevice9* pDevice;//Device interface pointer
    	sStack* Stack;//Stack handling structure
    	__asm
    	{
    	  MOV Stack, EBP
    	  pushad//Preserve all General-Registers
    	  pushfd//Preserve EFlags
    	}
    	if( Stack->ReturnAddress == SCRet )
    	{
    	  if( ( pDevice = Stack->PreviousStack->Arguments[ 0 ] ) != NULL )
    	  {
    	    //DoShit
    	  }
    	}
    	__asm
    	{
    	  popfd//Restore EFlags
    	  popad//Restore All General-Registers
    	}
    	return ( ( void( __thiscall* )( void*, signed int ) SCPtr )( ecx, Capture );//Give control back to SceneCapture
    }
    
    DWORD Table = FindPattern( D3DModuleHandle, 0x105000, (PBYTE)"\xC7\x06\x00\x00\x00\x00\xC7\x46\x00\x0B\x00\x00\x00\x8B\xC6" ), "xx????xx?x???xx" );//CD3DDIDX7 SCPtr = this[19]
    Is this right?

    I get a error message when I try to run (click Debug to Release) it:
    "Unable to start 'C:\Users\Username\Documents\Visual Studio 2012\Projects\MyFirstHack\Release\MyHacks.dll'.
    The system cannot fine the file specified."
    gtfo, then learn to code. You will know how to use it then.
    I really hope people dont help you because you obviously have no clue what you're doing and are just copy & pasting

  17. The Following 2 Users Say Thank You to ~FALLEN~ For This Useful Post:

    AznNicholas1314 (01-28-2013),[RAPGOD]EMINEM (01-29-2013)

  18. #29
    oXParadoxXo's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Who cares? ಠ_ಠ B̸̼̲͓̹̼͙̥̞̭̌̽
    Posts
    521
    Reputation
    10
    Thanks
    275
    My Mood
    Dead
    Wow, thanks. I'm trying to understand this and that's what I get? What a fucking asshole. I'm trying to code myself, but I can't even make outputs for already known/working coding. Dude, I hope you fucking get cancer. I'm out.

  19. The Following User Says Thank You to oXParadoxXo For This Useful Post:

    .Derp (04-21-2013)

  20. #30
    ~FALLEN~'s Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    devenv.exe
    Posts
    529
    Reputation
    23
    Thanks
    328
    My Mood
    Inspired
    Quote Originally Posted by oXParadoxXo View Post
    Wow, thanks. I'm trying to understand this and that's what I get? What a fucking asshole. I'm trying to code myself, but I can't even make outputs for already known/working coding. Dude, I hope you fucking get cancer. I'm out.
    goodbye. Dont let the door hit you in the ass on your way out. Btw, the reason im not helping you is because you obviously dont know how to code AT ALL, and im the asshole??? You told me to get cancer and die... Rofl... 1. My father died from cancer when I was 8 so nice one m8. And 2. The world doesn't revolve around you, people shouldnt give you handouts. People work hard to earn the respect/knowledge/money/etc they have, why should they just hand it all over just because you want it??? Grow up. Kthnxbai

  21. The Following User Says Thank You to ~FALLEN~ For This Useful Post:

    Frought (04-19-2013)

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. WR D3D Hook - =o - 03/22/07
    By Dave84311 in forum Hack/Release News
    Replies: 14
    Last Post: 10-06-2007, 09:59 AM
  2. tut How to hook tut 6
    By llvengancell in forum WarRock - International Hacks
    Replies: 1
    Last Post: 06-26-2007, 03:24 PM
  3. D3D hooking tutorial 5 i think
    By llvengancell in forum WarRock - International Hacks
    Replies: 7
    Last Post: 06-26-2007, 03:09 PM
  4. How can i hook the punkbuster?
    By TheRedEye in forum WarRock - International Hacks
    Replies: 5
    Last Post: 05-27-2007, 12:34 PM
  5. New Hacks Announced & Warrock DX Hook Update
    By Dave84311 in forum Hack/Release News
    Replies: 17
    Last Post: 03-02-2007, 03:54 PM