79279080

Date: 2024-12-13 17:13:17
Score: 1
Natty:
Report link

This is how it worked:

int function(char **data)
{
   char data_new[542] = {.......};
   *data= (char*)realloc(*data, 560);
   SecureZeroMemory(*data, 560);
   memcpy(*data, data_new, 542);
   return 1;
}

Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: pulpf