Bedopies Newbie cheater
Reputation: 0
Joined: 25 Feb 2019 Posts: 13
|
Posted: Sat Jul 11, 2020 7:54 am Post subject: AOB Scan dont want to find address |
|
|
Hello, Im using "Zer0Mem0ry/SignatureScanner" to find my targeted address. CE finding it perfectly. In C++ I got 0 everytime. What Im doing wrong?
It's the signature: 00 00 C8 42 00 00 7A 44 00 40 1C 46 00 50 C3 47 00 24 74 49 80 96 18 4B 20 BC BE 4C 28 6B 6E 4E
Mask is filled with x only (everytime same bytes).
Code: | int main()
{
LPCSTR Signature = "\x00\x00\xC8\x42\x00\x00\x7A\x44\x00\x40\x1C\x46\x00\x50\xC3\x47\x00\x24\x74\x49\x80\x96\x18\x4B\x20\xBC\xBE\x4C\x28\x6B\x6E\x4E";
LPCSTR Mask = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
SignatureScanner SigScanner;
if (SigScanner.GetProcess("javaw.exe"))
{
module mod = SigScanner.GetModule("javaw.exe");
// scanning for the address of the variable:
DWORD speedAddress = SigScanner.FindSignature(mod.dwBase, mod.dwSize, Signature, Mask);
// Let's read the value of it:
cout << uppercase << hex << speedAddress << endl;
getchar();
}
} |
|
|