View previous topic :: View next topic |
Author |
Message |
FirePhoenix Grandmaster Cheater
Reputation: 0
Joined: 22 Jan 2008 Posts: 575
|
|
Back to top |
|
 |
dnsi0 I post too much
Reputation: 0
Joined: 04 Jan 2007 Posts: 2674
|
Posted: Mon Mar 02, 2009 7:46 pm Post subject: |
|
|
So this basically reads a pointer and checks the memory right?
No need to flame if i'm wrong...
|
|
Back to top |
|
 |
nwongfeiying Grandmaster Cheater
Reputation: 2
Joined: 25 Jun 2007 Posts: 695
|
Posted: Mon Mar 02, 2009 8:56 pm Post subject: |
|
|
It looks cool and now to find out use for [or rather how to use] it.
|
|
Back to top |
|
 |
Flyte Peanuts!!!!
Reputation: 6
Joined: 19 Apr 2006 Posts: 1887 Location: Canada
|
Posted: Mon Mar 02, 2009 9:15 pm Post subject: |
|
|
nwongfeiying wrote: | It looks cool and now to find out use for [or rather how to use] it. |
Yes, because there wasn't an example posted or anything.
|
|
Back to top |
|
 |
nwongfeiying Grandmaster Cheater
Reputation: 2
Joined: 25 Jun 2007 Posts: 695
|
Posted: Mon Mar 02, 2009 9:25 pm Post subject: |
|
|
No, I mean like how I would use it in my code. I know I'm going to need it down the line somewhere, but just don't know where yet.
|
|
Back to top |
|
 |
iNoobHacker Advanced Cheater
Reputation: 0
Joined: 05 Nov 2006 Posts: 99
|
|
Back to top |
|
 |
nwongfeiying Grandmaster Cheater
Reputation: 2
Joined: 25 Jun 2007 Posts: 695
|
Posted: Mon Mar 02, 2009 10:37 pm Post subject: |
|
|
You seem to be missing the point. I can see that he posted an example, but I don't need to read pointers in my current applications because my current applications are simple. All they do is utilize sockets and whatnot.
|
|
Back to top |
|
 |
SXGuy I post too much
Reputation: 0
Joined: 19 Sep 2006 Posts: 3551
|
Posted: Tue Mar 03, 2009 3:07 am Post subject: |
|
|
0xDEADBEEF lol love it.
|
|
Back to top |
|
 |
DeletedUser14087 I post too much
Reputation: 2
Joined: 21 Jun 2006 Posts: 3069
|
Posted: Tue Mar 03, 2009 5:17 am Post subject: |
|
|
This looks like the one from spawn's Trainer source that everyone downloaded and started making trainers to rep whore.
|
|
Back to top |
|
 |
Noz3001 I'm a spammer
Reputation: 26
Joined: 29 May 2006 Posts: 6220 Location: /dev/null
|
Posted: Tue Mar 03, 2009 5:21 am Post subject: |
|
|
Rot1 wrote: | This looks like the one from spawn's Trainer source that everyone downloaded and started making trainers to rep whore. |
That's where it's from... trolling
|
|
Back to top |
|
 |
nwongfeiying Grandmaster Cheater
Reputation: 2
Joined: 25 Jun 2007 Posts: 695
|
Posted: Tue Mar 03, 2009 5:53 pm Post subject: |
|
|
/rage because noz3001 trolled me.
|
|
Back to top |
|
 |
BanMe Master Cheater
Reputation: 0
Joined: 29 Nov 2005 Posts: 375 Location: Farmington NH, USA
|
Posted: Tue Mar 03, 2009 6:20 pm Post subject: |
|
|
the methodology is execellent and the code is easy to understand Great job Irwin .. here a very simple write to go along with it.. CREDITS to Irwin here to.. cause its just a simple mod of like 3 lines of code..
Code: |
BOOL _WritePointer(__in ULONG ulValue, __in LPCVOID lpcvBase, ...)
{
ULONG_PTR ulTemp;
va_list pArguments;
BOOL bRET;
int iOffset;
__try {
ulTemp = (ULONG_PTR)lpcvBase;
va_start(pArguments, lpcvBase);
while ((iOffset = va_arg(pArguments, int)) != 0x7ffff000)
ulTemp = *(ULONG_PTR*)((*(ULONG_PTR*)ulTemp) + iOffset);
va_end(pArguments);
*ulTemp = ulValue;
bRET = TRUE;
}
__except(EXCEPTION_EXECUTE_HANDLER) {
bRET = FALSE;
}
return bRET;
}
|
|
|
Back to top |
|
 |
nog_lorp Grandmaster Cheater
Reputation: 0
Joined: 26 Feb 2006 Posts: 743
|
|
Back to top |
|
 |
nog_lorp Grandmaster Cheater
Reputation: 0
Joined: 26 Feb 2006 Posts: 743
|
|
Back to top |
|
 |
kitterz Grandmaster Cheater Supreme
Reputation: 0
Joined: 24 Dec 2007 Posts: 1268
|
Posted: Wed Mar 18, 2009 10:00 pm Post subject: |
|
|
Looks good
_________________
|
|
Back to top |
|
 |
|