(Mir war langweilig ;D)
This is my video tutorial on scanning memory patterns to find addresses in memory that change during recompilation.
Click here for video tutorial
Resources:
The pattern scanning function:
SigMaker 0.3 by P47R!CK
Enjoy.
This is my video tutorial on scanning memory patterns to find addresses in memory that change during recompilation.
Click here for video tutorial
Resources:
The pattern scanning function:
Code:
bool bDataCompare(const BYTE* pData, const BYTE* bMask, const char* szMask) { for(;*szMask;++szMask,++pData,++bMask) if(*szMask=='x' && *pData!=*bMask ) return false; return (*szMask) == NULL; } DWORD dwFindPattern(DWORD dwAddress,DWORD dwLen, BYTE *bMask, char * szMask) { for(DWORD i=0;i
Enjoy.