ExclamationHey Guys ! its me (your stupid guy :D ) well , a way to be hacker ... ?

Posts 18 of 8 · Page 1 of 1
Hey Guys ! its me (your stupid guy :D ) well , a way to be hacker ... ?
Guys !
I dont know what way to go in C++ to become an Hacker !
pls helpp me ! tell me your steps that you become an hacker or a other better way to become an hacker !

Oh and i got a new questions !
ine Hexademical code !

why are you guys puting 0 and not 1 ? or 2 ? i mean the first zero ! (0x)

and what does the (x) mean ?
hmm and after the (x) is that THE adress ? if it is ! whay arent you writing just it and you write (0x) ????/me/yea
Quote Originally Posted by thekm1994 View Post
Guys !
I dont know what way to go in C++ to become an Hacker !
pls helpp me ! tell me your steps that you become an hacker or a other better way to become an hacker !

Oh and i got a new questions !
ine Hexademical code !

why are you guys puting 0 and not 1 ? or 2 ? i mean the first zero ! (0x)

and what does the (x) mean ?
hmm and after the (x) is that THE adress ? if it is ! whay arent you writing just it and you write (0x) ????/me/yea
the 0x is to tell the compiler you're going to write HEXADECIMAL behind it.
0x10 means hexadecimal 10, which is 16 in decimal, you could also write 10h, which is the same as 0x10, so also 16.

behind 0x you put bytes, an addy is 4 bytes, so you do e.g. 0xAABBCCDD

but, if you look at that with olly it will say 0xDD 0xCC 0xBB 0xAA
so you could probably do this too:
Code:
char addy[4] = {0xDD, 0xCC, 0xBB, 0xAA};
*(DWORD*)addy = 100;
which would be the same as *(DWORD*)0xAABBCCDD = 100; I guess(not entirely sure)



As for your first question: Learn all of the basics, write small project like snake in a console app for example, and the most important part of the basics are POINTERS, make sure you know how to use them in and out! They are the most basic thing you must know for gamehacking, and now i am too lazy(and it's too hot) to write more here ^^
Quote Originally Posted by Hell_Demon View Post
As for your first question: Learn all of the basics, write small project like snake in a console app for example, and the most important part of the basics are POINTERS, make sure you know how to use them in and out! They are the most basic thing you must know for gamehacking, and now i am too lazy(and it's too hot) to write more here ^^
/

Ontopic:

I already said on your other post (i guess), that you could start by hacking something simple as solitaire (only if you are well with the basics, such as pointers... etc...), Well i started with solitaire, anyway im not an hacker... so...
what is the *(DWORD*) mean ?, i know that (*) can make a pointers varibles , but when you put it that way i m confiused !
Quote Originally Posted by thekm1994 View Post
what is the *(DWORD*) mean ?, i know that (*) can make a pointers varibles , but when you put it that way i m confiused !
which * do you mean? the first one or the second?

Code:
DWORD *mypointer = (DWORD*)0x0B4DF00D; //mypointer is type DWORD*, so we cast 0x0B4DF00D to DWORD* too
*mypointer = 100; //*mypointer means the value of mypointer, mypointer is 0x0B4DF00D, so value of 0xB4DF00D is changed to 100.
*(DWORD*)0x0B4DF00D.
(what is in here) means that you tell compiler 'it is this type', in this case it is DWORD* which means pointer to DWORD value. the * infront of (DWORD means go to the 'value' of it, so go to what 0x0B4DF00D points to.

I hope this helped
hmmmmmmm
can you write it like
1) (first pointer mean)
2) (seacond pointer mean)

Thx
*(DWORD*)0x0B4DF00D = 100;

Dereference, so go to 'value'
Tell compiler type is DWORD*, so pointer to DWORD
The addy, ¯\(o.O)/¯
The new value
Posts 18 of 8 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?