Collection of various WINAPI tricks / features used or abused by Malware
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
VOID ZeroMemory(PVOID Destination, SIZE_T Size) |
|
{ |
|
PULONG Dest = (PULONG)Destination; |
|
SIZE_T Count = Size / sizeof(ULONG); |
|
|
|
while (Count > 0) |
|
{ |
|
*Dest = 0; |
|
Dest++; |
|
Count--; |
|
} |
|
|
|
return; |
|
}
|
|
|