古酒道人 发表于 2021-1-14 12:55

简单的C#incaseformat检测工具

不多说直接放C#代码:
using System;
using System.IO;
using System.Windows.Forms;

namespace incaseformat检测
{
    public partial class Form1 : Form
    {
      public Form1()
      {
            InitializeComponent();
      }

      private void button1_Click(object sender, EventArgs e)
      {
            if (File.Exists(@"C:\Windows\tsay.exe"))
            {
                MessageBox.Show("C:\\Windows\\tsay.exe文件存在");
                label1.Text = "是否存在:存在";
                label3.Text = "建议使用第三方安全软件进行全盘查杀";
            }
            else if (File.Exists(@"C:\Windows\ttry.exe"))
            {
                MessageBox.Show("C:\\Windows\\ttry.exe文件存在");
                label1.Text = "是否存在:存在";
                label3.Text = "建议使用第三方安全软件进行全盘查杀";
            }
            else {
                MessageBox.Show("未检测到");
                label1.Text = "是否存在:不存在";
            }

      }

      private void Form1_Load(object sender, EventArgs e)
      {

      }


    }
}


GUI:
程序说明:检测incaseformat蠕虫病毒的便捷小工具,不需要下载各大杀软本体。
检测原理:检测病毒在C盘留下的痕迹即:C:\windows\tsay.exe 和C:\Windows\ttry.exe 这两个文件。
其他说明:并未进行注册表检测,也没有使用文件MD5对比,只是单纯的检测上述两个exe的存在与否。写这个只是不喜欢检测个病毒还要下载杀软本体。出个专门检测和专杀的不好么。

C#工程文件:https://nintendo.lanzouj.com/iRsQGkdpp1e

文件名称:incaseformat检测.zip
MD5:09cad15f3f3a11b5327476c5974dfcec
文件大小:187.67KB

腾讯哈勃:https://habo.qq.com/file/showdetail?pk=ADcGY11pB2cIO1s5U2s%3D
这是工程文件,自行修改吧。里面的\bin\Debug\incaseformat检测.exe 就可以用来检测
第一次发帖请多多鼓励!

绵绵细雨 发表于 2021-1-14 17:05

学习学习,大佬厉害
页: [1]
查看完整版本: 简单的C#incaseformat检测工具