Maybe final solution, but not universal (each client has probably different function start). This is for 2018-01-24bRagexeRE
previous post + this
before this :
return true;
}
//=================================//
// Disable for Unsupported Clients //
//=================================//
function Enable64kHairstyle_() {
return (exe.getClientDate() > 20111102);
}
add this:
code =
" 55" //PUSH ebp
+ " 8B EC" //mov ebp, esp
+ " 6A FF" //push 0xffffffff
+ " 68 AB AB AB AB" //PUSH address
+ " 64 A1 00 00 00 00" //mov eax,dword ptr [0x0]
+ " 50" //push eax
+ " 81 EC 90 00 00 00" //sub esp,0x90
+ " A1 AB AB AB AB" //mov eax,dword ptr address
+ " 33 C5" //xor eax, ebp
+ " 89 AB AB" //mov dword ptr [ebp-0x10],eax
+ " 53" //push ebx
+ " 56" //push esi
+ " 57" //push edi
+ " 50" //push eax
;
offset = exe.find(code, PTYPE_HEX, true, "\xAB");
if(offset !== -1)
{
code =
" 8B 0E" //MOV ecx, [esi]
+ " A1 AB AB AB AB" //MOV reg32_A, DWORD PTR DS:[addr]
+ " 8B 14" //MOV EDX, DWORD PTR DS:[reg32_B * 4 + reg32_A]
;
offsets = exe.findAll(code, PTYPE_HEX, true, "\xAB", offset, offset+1000);
if (offsets.length == 2) {
for (var i = 0; i < offsets.length; i++) {
offset2 = offsets[i] + code.hexlength();
exe.replaceWord(offset2 - 1, 0x9010 + (exe.fetchByte(offset2) & 0x7));
}
}
else
return "Failed in Step Y - offsets not found";
}
else
return "Failed in Step Y - start of the function not found";