gpt4 book ai didi

c - 什么样的非致命代码通常会触发防病毒软件? (误报)

转载 作者:太空狗 更新时间:2023-10-29 15:08:15 26 4
gpt4 key购买 nike

我不知道为什么,但我以前没有问题,现在突然之间,我很久以前写的这个非常古老、可怕的新手程序触发了 Malwarebytes... :(

这个问题不是重复的,因为有问题的程序是在 (ANSI) C 而不是 Delphi 中...

Here is a virus total scan (5 / 45)

Jotti's malware scan (1 / 22)

这是我糟糕的旧源代码: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;
}

这可能只是一个简单的错误……但为什么呢?对我来说这似乎是无害的!即使这只是一个错误,通常什么会引发误报?它只是文件的签名吗?时间戳?

最佳答案

我相信您的编译代码已被病毒破坏,并自行复制。这与您的代码无关。如果您再次编译代码并重新扫描,恶意软件警告就会消失。

关于c - 什么样的非致命代码通常会触发防病毒软件? (误报),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16161291/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com