Thread: XOR`ed offsets

Results 1 to 6 of 6
  1. #1
    c0bra12's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    93
    Reputation
    38
    Thanks
    11
    My Mood
    Cool

    Question XOR`ed offsets

    Ive heard that the dwSensitivity offset is XOR`ed, and thats why ive been getting big numbers when reading the playerSensitivity. i need the decrypted XOR`ed dwSensitivity offset for my slowAim. is there any easy way of removing the XOR encryption? i heavent really seen anyone mentioning this in the forum, so i guess some people have figured it out?

    Kill me...

  2. #2
    terryadavis's Avatar
    Join Date
    Jul 2017
    Gender
    female
    Posts
    10
    Reputation
    10
    Thanks
    1
    go to the legitimate game hacking forum, there's a thread there

  3. #3
    Broomop's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    20
    Reputation
    10
    Thanks
    2
    Quote Originally Posted by c0bra12 View Post
    Ive heard that the dwSensitivity offset is XOR`ed, and thats why ive been getting big numbers when reading the playerSensitivity. i need the decrypted XOR`ed dwSensitivity offset for my slowAim. is there any easy way of removing the XOR encryption? i heavent really seen anyone mentioning this in the forum, so i guess some people have figured it out?
    if its a static xor you can just + or - the value to the encrypted value. Or find the xor value. instead of breaking the xor you could also just mess with static random values until you get the right number. Thats what i did when it came to it on another game.

  4. #4
    Zaczero's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Location
    localhost
    Posts
    3,288
    Reputation
    1517
    Thanks
    14,262
    My Mood
    Angelic
    Removing xor encryption would take a long time and a lot of effort.
    Easier way is just to decrypt it in your program.

    How to find xor password tip:
    example password: 10000
    xor 0: 10000
    xor 1: 10001

    example password: 10001
    xor 0: 10001
    xor 1: 10000

    CSGO xor password tip:
    xor ints (passwords) are stored in memory and once you find it you can make pointers for them
    . . . malsignature.com . . .



    [ global rules ] [ scam report ] [ image title ] [ name change ] [ anime force ]
    [ league of legends marketplace rules ] [ battlefield marketplace rules ]

    "because everytime you post a picture of anime in here
    your virginity's time increases by 1 month"
    ~Smoke 2/18/2018


    Former Staff 09-29-2018
    Battlefield Minion 07-21-2018
    Premium Seller 03-04-2018
    Publicist 12-10-2017
    League of Legends Minion 05-31-2017
    Premium 02-05-2017
    Member 10-13-2013

  5. #5
    certmemer's Avatar
    Join Date
    Feb 2016
    Gender
    female
    Location
    Southampton
    Posts
    2,511
    Reputation
    104
    Thanks
    25,994
    Code:
    DWORD thisPtr = (int)(ClientDLL + dwSensitivityPtr);
    DWORD sensitivity = Mem->Read<DWORD>(ClientDLL + dwSensitivity);
    sensitivity ^= thisPtr;
    float sens = *reinterpret_cast<float*>(&sensitivity);
    pasted from uc
    my steam acc: click
    donate me a few cents: click

  6. #6
    canown's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    142
    Reputation
    69
    Thanks
    265
    Simplest explanation.

    Code:
    val pointer = clientDLL.address + dwSensitivityPtr
    val value = clientDLL.uint(dwSensitivity) xor pointer
    	
    intBitsToFloat(value.toInt()).toDouble()

Similar Threads

  1. need help with offset problem
    By qplazm in forum General Game Hacking
    Replies: 1
    Last Post: 12-31-2008, 01:45 PM
  2. offsets
    By silent1990 in forum Combat Arms Hacks & Cheats
    Replies: 0
    Last Post: 12-03-2008, 06:01 AM
  3. CombatArms addys pointers & offsets?
    By nitro107 in forum Combat Arms Hacks & Cheats
    Replies: 4
    Last Post: 08-20-2008, 05:31 AM
  4. Offset addresses
    By thomtim in forum WarRock - International Hacks
    Replies: 0
    Last Post: 07-22-2008, 02:21 AM
  5. Offsets
    By radnomguywfq3 in forum Visual Basic Programming
    Replies: 2
    Last Post: 09-01-2007, 09:50 AM