我不知道为什么,但是我以前没有问题,现在突然之间,我很久以前写的这个非常古老,可怕的新手程序,触发了 Malwarebytes ... :(
这个问题不是重复的,因为有问题的程序是(ANSI)C而不是Delphi......
这是我糟糕的旧源代码:P
#include <stdio.h>
#include <string.h>
/* This script is by Joe DF*/
main()
{
char input[999];
int charcount = 100;
gets(input);
printf("%d\n", strlen(input));
printf("%d", numlen(charcount));
}
numlen(int num)
{
char temp[999];
sprintf(temp, "%d", num);
int count = strlen(temp);
return count;
}
这可能只是一个简单的错误……但为什么呢?对我来说,这似乎无害!即使这只是一个错误,通常会触发误报的原因是什么?它只是文件的签名吗?时间戳?