Jump to content
  • 0

xor value


avalanchePT

Question

7 answers to this question

Recommended Posts

17 hours ago, Enyby said:

Xor value with it address.

I thought I understood something but maybe I didn't. Are there games out there that uses their value's address as Xor key ? Also is a way to Xor address and value with GG ?

Link to comment
Share on other sites

  • Administrators

Xor type is dword value xored with it address.

In C it is look like:

// int* i;
int value = *i ^ i; //get
*i = value ^ i; // set

 

_______________________________________________
added 0 minutes later

You can check any value in memory editor. Firstly view it is as dword. Secondly as xor. xor value will be dword value ^ address.

_______________________________________________
added 2 minutes later

-1.762.496.778 = 10 ^ 0x96f26efc

scr_1538489794.jpg

Link to comment
Share on other sites

3 hours ago, Enyby said:

Xor type is dword value xored with it address.

In C it is look like:


// int* i;
int value = *i ^ i; //get
*i = value ^ i; // set

 

_______________________________________________
added 0 minutes later

You can check any value in memory editor. Firstly view it is as dword. Secondly as xor. xor value will be dword value ^ address.

_______________________________________________
added 2 minutes later

-1.762.496.778 = 10 ^ 0x96f26efc

scr_1538489794.jpg

Could it be more explicit?
I'm new to gameguardian: /

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.