pCinit = &cinit
length = *(DWORD*)pCinit;
while(length){
pCinit = (char*)pCinit + 4;
dstAddress = *(DWORD*)pCinit;
srcAddress = (char*)pCinit + 4;
memcpy(dstAddress,srcAddress,length);
pCinit = (LPVOID)(((int)pCinit + length + 0x0b) & 0xfffffff8);
length = *(DWORD*)pCinit
}
No comments:
Post a Comment