-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathProcess.cs
More file actions
601 lines (595 loc) · 22.8 KB
/
Process.cs
File metadata and controls
601 lines (595 loc) · 22.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
using System;
using System.Collections.Generic;
using System.Data;
using System.Text;
namespace WinDump
{
class Process
{
static DataTable cacheProcess;
internal static DataTable GetProcess()
{
if (cacheProcess == null)
{
cacheProcess = Utils.Query("Select Name,Processid,SessionId,ExecutablePath,CommandLine FROM Win32_Process");
}
return cacheProcess;
}
internal static DataTable GetService()
{
return Utils.Query("SELECT Name,ProcessId,State,DisplayName,PathName FROM Win32_Service");
}
internal static DataTable GetAV()
{
var process = GetProcess();
var dt = process.Clone();
var col = dt.Columns.Add("AV");
col.SetOrdinal(0);
foreach (DataRow row in process.Rows)
{
var name = row["name"].ToString();
if (av.ContainsKey(name))
{
var avname = av[name];
row.ItemArray.Clone();
var objs = new object[row.ItemArray.Length + 1];
objs[0] = avname;
row.ItemArray.CopyTo(objs, 1);
dt.Rows.Add(objs);
}
}
return dt;
}
static Dictionary<string, string> av = new Dictionary<string, string> {
{"aylaunch.exe", "ALYac"},
{"ayupdate2.exe", "ALYac"},
{"AYRTSrv.exe", "ALYac"},
{"AYAgent.exe", "ALYac"},
{"AVGSvc.exe", "AVG"},
{"AVGUI.exe", "AVG"},
{"avgwdsvc.exe", "AVG"},
{"avg.exe", "AVG"},
{"avgaurd.exe", "AVG"},
{"avgemc.exe", "AVG"},
{"avgrsx.exe", "AVG"},
{"avgserv.exe", "AVG"},
{"avgw.exe", "AVG"},
{"arsm.exe", "Acronis"},
{"acronis_license_service.exe", "Acronis"},
{"AdAwareService.exe", "Ad-Aware"},
{"Ad-Aware.exe", "Ad-Aware"},
{"AdAware.exe", "Ad-Aware"},
{"patray.exe", "AhnLab-V3"},
{"V3Svc.exe", "AhnLab-V3"},
{"arcavir.exe", "Arcabit"},
{"arcadc.exe", "Arcabit"},
{"ArcaVirMaster.exe", "Arcabit"},
{"ArcaMainSV.exe", "Arcabit"},
{"ArcaTasksService.exe", "Arcabit"},
{"ashDisp.exe", "Avast"},
{"AvastUI.exe", "Avast"},
{"AvastSvc.exe", "Avast"},
{"AvastBrowser.exe", "Avast"},
{"AfwServ.exe", "Avast"},
{"avcenter.exe", "Avira AntiVirus(小红伞)"},
{"avguard.exe", "Avira AntiVirus(小红伞)"},
{"avgnt.exe", "Avira AntiVirus(小红伞)"},
{"sched.exe", "Avira AntiVirus(小红伞)"},
{"BaiduSdSvc.exe", "Baidu AntiVirus"},
{"BaiduSdTray.exe", "Baidu AntiVirus"},
{"BaiduSd.exe", "Baidu AntiVirus"},
{"bddownloader.exe", "百度卫士 or Baidu AntiVirus"},
{"baiduansvx.exe", "百度卫士-主进程 or Baidu AntiVirus"},
{"Bdagent.exe", "BitDefender"},
{"BitDefenderCom.exe", "BitDefender"},
{"vsserv.exe", "BitDefender"},
{"bdredline.exe", "BitDefender"},
{"secenter.exe", "BitDefender"},
{"bdservicehost.exe", "BitDefender"},
{"BITDEFENDER.exe", "BitDefender"},
{"BKavService.exe", "Bkav"},
{"Bka.exe", "Bkav"},
{"BkavUtil.exe", "Bkav"},
{"BLuPro.exe", "Bkav"},
{"QUHLPSVC.exe", "CAT-QuickHeal"},
{"onlinent.exe", "CAT-QuickHeal"},
{"sapissvc.exe", "CAT-QuickHeal"},
{"scanwscs.exe", "CAT-QuickHeal"},
{"CMCTrayIcon.exe", "CMC"},
{"freshclam.exe", "ClamAV"},
{"cpf.exe", "Comodo"},
{"cavwp.exe", "Comodo"},
{"ccavsrv.exe", "Comodo"},
{"cmdvirth.exe", "Comodo"},
{"csfalconservice.exe", "CrowdStrike Falcon(猎鹰)"},
{"CSFalconContainer.exe", "CrowdStrike Falcon(猎鹰)"},
{"CybereasonRansomFree.exe", "Cybereason"},
{"CybereasonRansomFreeServiceHost.exe", "Cybereason"},
{"CybereasonAV.exe", "Cybereason"},
{"CylanceSvc.exe", "Cylance"},
{"vsedsps.exe", "Cyren"},
{"vseamps.exe", "Cyren"},
{"vseqrts.exe", "Cyren"},
{"drwebcom.exe", "DrWeb"},
{"spidernt.exe", "DrWeb"},
{"drwebscd.exe", "DrWeb"},
{"drweb32w.exe", "DrWeb"},
{"dwengine.exes", "DrWeb"},
{"egui.exe", "ESET-NOD32"},
{"ecls.exe", "ESET-NOD32"},
{"ekrn.exe", "ESET-NOD32"},
{"eguiProxy.exe", "ESET-NOD32"},
{"EShaSrv.exe", "ESET-NOD32"},
{"tmpfw.exe", "Trend Micro(趋势科技)"},
{"tmlisten.exe", "Trend Micro(趋势科技)"},
{"coreServiceShell.exe", "Trend Micro(趋势科技)"},
{"coreFrameworkHost.exe", "Trend Micro(趋势科技)"},
{"uiWatchDog.exe", "Trend Micro(趋势科技)"},
{"TMLISTEN.exe", "Trend Micro(趋势科技)"},
{"a2guard.exe", "Emsisoft"},
{"a2free.exe", "Emsisoft"},
{"a2service.exe", "Emsisoft"},
{"endgame.exe", "Endgame"},
{"F-PROT.exe", "F-Prot"},
{"FProtTray.exe", "F-Prot"},
{"FPAVServer.exe", "F-Prot"},
{"f-stopw.exe", "F-Prot"},
{"f-prot95.exe", "F-Prot"},
{"f-agnt95.exe", "F-Prot"},
{"f-secure.exe", "F-Secure"},
{"fssm32.exe", "F-Secure"},
{"Fsorsp64.exe", "F-Secure"},
{"fsavgui.exe", "F-Secure"},
{"fameh32.exe", "F-Secure"},
{"fch32.exe", "F-Secure"},
{"fih32.exe", "F-Secure"},
{"fnrb32.exe", "F-Secure"},
{"fsav32.exe", "F-Secure"},
{"fsma32.exe", "F-Secure"},
{"fsmb32.exe", "F-Secure"},
{"xagtnotif.exe", "FireEye(火眼)"},
{"xagt.exe", "FireEye(火眼)"},
{"FortiClient.exe", "Fortinet(飞塔)"},
{"FortiTray.exe", "Fortinet(飞塔)"},
{"FortiScand.exe", "Fortinet(飞塔)"},
{"FortiWF.exe", "Fortinet(飞塔)"},
{"FortiProxy.exe", "Fortinet(飞塔)"},
{"FortiESNAC.exe", "Fortinet(飞塔)"},
{"FortiSSLVPNdaemon.exe", "Fortinet(飞塔)"},
{"FortiTcs.exe", "Fortinet(飞塔)"},
{"FctSecSvr.exe", "Fortinet(飞塔)"},
{"AVK.exe", "G Data安全软件客户端 or GData"},
{"avkcl.exe", "GData"},
{"avkpop.exe", "GData"},
{"avkservice.exe", "GData"},
{"GDScan.exe", "G Data扫描器 or GData"},
{"AVKWCtl.exe", "GData"},
{"AVKProxy.exe", "G Data杀毒代理 or GData"},
{"AVKBackupService.exe", "G Data备份服务 or GData"},
{"guardxservice.exe", "Ikarus"},
{"guardxkickoff.exe", "Ikarus"},
{"KVFW.exe", "Jiangmin"},
{"KVsrvXP.exe", "Jiangmin"},
{"KVMonXP.exe", "Jiangmin"},
{"KVwsc.exe", "Jiangmin"},
{"K7TSecurity.exe", "K7AntiVirus"},
{"K7TSMain.Exe", "K7AntiVirus"},
{"K7TSUpdT.exe", "K7AntiVirus"},
{"avp.exe", "Kaspersky(卡巴斯基)"},
{"avpcc.exe", "Kaspersky(卡巴斯基)"},
{"avpm.exe", "Kaspersky(卡巴斯基)"},
{"kavpf.exe", "Kaspersky(卡巴斯基)"},
{"kavfs.exe", "Kaspersky(卡巴斯基)"},
{"klnagent.exe", "Kaspersky(卡巴斯基)"},
{"kavtray.exe", "Kaspersky(卡巴斯基)"},
{"kavfswp.exe", "Kaspersky(卡巴斯基)"},
{"kaspersky.exe", "Kaspersky(卡巴斯基)"},
{"SDSystemTray.exe", "Max Secure Software"},
{"MaxRCSystemTray.exe", "Max Secure Software"},
{"RCSystemTray.exe", "Max Secure Software"},
{"MaxAVPlusDM.exe", "Max Secure Software"},
{"LiveUpdateSD.exe", "Max Secure Software"},
{"MBAMService.exe", "Malwarebytes"},
{"mbam.exe", "Malwarebytes"},
{"mbamtray.exe", "Malwarebytes"},
{"Mcshield.exe", "McAfee(迈克菲)"},
{"Tbmon.exe", "McAfee(迈克菲)"},
{"Frameworkservice.exe", "McAfee(迈克菲)"},
{"firesvc.exe", "McAfee(迈克菲)"},
{"firetray.exe", "McAfee(迈克菲)"},
{"hipsvc.exe", "McAfee(迈克菲)"},
{"mfevtps.exe", "McAfee(迈克菲)"},
{"mcafeefire.exe", "McAfee(迈克菲)"},
{"shstat.exe", "McAfee(迈克菲)"},
{"vstskmgr.exe", "McAfee(迈克菲)"},
{"engineserver.exe", "McAfee(迈克菲)"},
{"alogserv.exe", "McAfee(迈克菲)"},
{"avconsol.exe", "McAfee(迈克菲)"},
{"cmgrdian.exe", "McAfee(迈克菲)"},
{"cpd.exe", "McAfee(迈克菲)"},
{"mcmnhdlr.exe", "McAfee(迈克菲)"},
{"mcvsshld.exe", "McAfee(迈克菲)"},
{"mcvsrte.exe", "McAfee(迈克菲)"},
{"mghtml.exe", "McAfee(迈克菲)"},
{"mpfservice.exe", "McAfee(迈克菲)"},
{"mpfagent.exe", "McAfee(迈克菲)"},
{"mpftray.exe", "McAfee(迈克菲)"},
{"vshwin32.exe", "McAfee(迈克菲)"},
{"vsstat.exe", "McAfee(迈克菲)"},
{"guarddog.exe", "McAfee(迈克菲)"},
{"mfeann.exe", "McAfee(迈克菲)"},
{"udaterui.exe", "McAfee(迈克菲)"},
{"naprdmgr.exe", "McAfee(迈克菲)"},
{"mctray.exe", "McAfee(迈克菲)"},
{"fcagate.exe", "McAfee(迈克菲)"},
{"fcag.exe", "McAfee(迈克菲)"},
{"fcags.exe", "McAfee(迈克菲)"},
{"fcagswd.exe", "McAfee(迈克菲)"},
{"macompatsvc.exe", "McAfee(迈克菲)"},
{"masvc.exe", "McAfee(迈克菲)"},
{"mcamnsvc.exe", "McAfee(迈克菲)"},
{"mctary.exe", "McAfee(迈克菲)"},
{"mfecanary.exe", "McAfee(迈克菲)"},
{"mfeconsole.exe", "McAfee(迈克菲)"},
{"mfeesp.exe", "McAfee(迈克菲)"},
{"mfefire.exe", "McAfee(迈克菲)"},
{"mfefw.exe", "McAfee(迈克菲)"},
{"mfemms.exe", "McAfee(迈克菲)"},
{"mfetp.exe", "McAfee(迈克菲)"},
{"mfewc.exe", "McAfee(迈克菲)"},
{"mfewch.exe", "McAfee(迈克菲)"},
{"MsMpEng.exe", "Microsoft Security Essentials"},
{"msseces.exe", "Microsoft Security Essentials"},
{"mssecess.exe", "Microsoft Security Essentials"},
{"emet_agent.exe", "Microsoft Security Essentials"},
{"emet_service.exe", "Microsoft Security Essentials"},
{"drwatson.exe", "Microsoft Security Essentials"},
{"MpCmdRun.exe", "Microsoft Security Essentials"},
{"NisSrv.exe", "Microsoft Security Essentials"},
{"MsSense.exe", "Microsoft Security Essentials"},
{"MSASCui.exe", "Microsoft Security Essentials"},
{"MSASCuiL.exe", "Microsoft Security Essentials"},
{"SecurityHealthService.exe", "Microsoft Security Essentials"},
{"nanoav.exe", "NANO-Antivirus"},
{"nanoav64.exe", "NANO-Antivirus"},
{"nanoreport.exe", "NANO-Antivirus"},
{"nanoreportc.exe", "NANO-Antivirus"},
{"nanoreportc64.exe", "NANO-Antivirus"},
{"nanorst.exe", "NANO-Antivirus"},
{"nanosvc.exe", "NANO-Antivirus"},
{"PanInstaller.exe", "Palo Alto Networks"},
{"remupd.exe", "Panda Security"},
{"apvxdwin.exe", "Panda Security"},
{"pavproxy.exe", "Panda Security"},
{"pavsched.exe", "Panda Security"},
{"360sd.exe", "Qihoo-360"},
{"360tray.exe", "Qihoo-360"},
{"ZhuDongFangYu.exe", "Qihoo-360"},
{"360rp.exe", "Qihoo-360"},
{"360rps.exe", "Qihoo-360"},
{"360safe.exe", "Qihoo-360"},
{"360safebox.exe", "360保险箱 or Qihoo-360"},
{"QHActiveDefense.exe", "360TotalSecurity(360国际版) or Qihoo-360"},
{"360skylarsvc.exe", "Qihoo-360"},
{"LiveUpdate360.exe", "Qihoo-360"},
{"RavMonD.exe", "Rising"},
{"rfwmain.exe", "Rising"},
{"RsMgrSvc.exe", "Rising"},
{"RavMon.exe", "Rising"},
{"superantispyware.exe", "SUPERAntiSpyware"},
{"sascore.exe", "SUPERAntiSpyware"},
{"SAdBlock.exe", "SUPERAntiSpyware"},
{"sabsvc.exe", "SUPERAntiSpyware"},
{"UniversalAVService.exe", "SecureAge APEX"},
{"EverythingServer.exe", "SecureAge APEX"},
{"clamd.exe", "SecureAge APEX"},
{"SavProgress.exe", "Sophos AV"},
{"icmon.exe", "Sophos AV"},
{"SavMain.exe", "Sophos AV"},
{"SophosUI.exe", "Sophos AV"},
{"SophosFS.exe", "Sophos AV"},
{"SophosHealth.exe", "Sophos AV"},
{"SophosSafestore64.exe", "Sophos AV"},
{"SophosCleanM.exe", "Sophos AV"},
{"SophosFileScanner.exe", "Sophos AV"},
{"SophosNtpService.exe", "Sophos AV"},
{"SophosOsquery.exe", "Sophos AV"},
{"Sophos UI.exe", "Sophos AV"},
{"QQPCRTP.exe", "Tencent"},
{"QQPCTray.exe", "Tencent"},
{"QQPCMgr.exe", "Tencent"},
{"QQPCNetFlow.exe", "Tencent"},
{"QQPCRealTimeSpeedup.exe", "Tencent"},
{"AMRT.exe", "TotalDefense"},
{"SWatcherSrv.exe", "TotalDefense"},
{"Prd.ManagementConsole.exe", "TotalDefense"},
{"TrapmineEnterpriseService.exe", "Trapmine"},
{"TrapmineEnterpriseConfig.exe", "Trapmine"},
{"TrapmineDeployer.exe", "Trapmine"},
{"TrapmineUpgradeService.exe", "Trapmine"},
{"TMBMSRV.exe", "TrendMicro"},
{"ntrtscan.exe", "TrendMicro"},
{"Pop3Trap.exe", "TrendMicro"},
{"WebTrap.exe", "TrendMicro"},
{"PccNTMon.exe", "亚信安全防毒墙网络版 or TrendMicro"},
{"SBAMSvc.exe", "VIPRE"},
{"VipreEdgeProtection.exe", "VIPRE"},
{"SBAMTray.exe", "VIPRE"},
{"vrmonnt.exe", "ViRobot"},
{"vrmonsvc.exe", "ViRobot"},
{"Vrproxyd.exe", "ViRobot"},
{"npwebroot.exe", "Webroot"},
{"WRSA.exe", "Webroot"},
{"spysweeperui.exe", "Webroot"},
{"Yandex.exe", "Yandex"},
{"YandexDisk.exe", "Yandex"},
{"yandesk.exe", "Yandex"},
{"zillya.exe", "Zillya"},
{"ZAVAux.exe", "Zillya"},
{"ZAVCore.exe", "Zillya"},
{"vsmon.exe", "ZoneAlarm"},
{"zapro.exe", "ZoneAlarm"},
{"zonealarm.exe", "ZoneAlarm"},
{"ZPSTray.exe", "Zoner"},
{"dasc.exe", "eGambit"},
{"memscan64.exe", "eGambit"},
{"dastray.exe", "eGambit"},
{"consctl.exe", "eScan"},
{"mwaser.exe", "eScan"},
{"avpmapp.exe", "eScan"},
{"AAWTray.exe", "Lavasoft"},
{"LavasoftTcpService.exe", "Lavasoft"},
{"AdAwareTray.exe", "Lavasoft"},
{"WebCompanion.exe", "Lavasoft"},
{"WebCompanionInstaller.exe", "Lavasoft"},
{"adawarebp.exe", "Lavasoft"},
{"ad-watch.exe", "Lavasoft"},
{"cleaner8.exe", "The Cleaner"},
{"vba32lder.exe", "VBA32"},
{"MongoosaGUI.exe", "Mongoosa"},
{"mongoose.exe", "Mongoosa"},
{"CorantiControlCenter32.exe", "Coranti2012"},
{"UnThreat.exe", "UnThreat"},
{"utsvc.exe", "UnThreat"},
{"CKSoftShiedAntivirus4.exe", "Shield Antivirus"},
{"shieldtray.exe", "Shield Antivirus"},
{"AVWatchService.exe", "VIRUSfighter"},
{"vfproTray.exe", "VIRUSfighter"},
{"iptray.exe", "Immunet"},
{"PSafeSysTray.exe", "PSafe"},
{"PSafeCategoryFinder.exe", "PSafe"},
{"psafesvc.exe", "PSafe"},
{"nspupsvc.exe", "nProtect"},
{"Npkcmsvc.exe", "nProtect"},
{"npnj5Agent.exe", "nProtect"},
{"SpywareTerminatorShield.exe", "Spyware Terminator"},
{"SpywareTerminator.exe", "Spyware Terminator"},
{"ccSvcHst.exe", "Norton(赛门铁克)"},
{"rtvscan.exe", "Norton(赛门铁克)"},
{"ccapp.exe", "Symantec(赛门铁克) or Norton(赛门铁克)"},
{"NPFMntor.exe", "Norton(赛门铁克)"},
{"ccRegVfy.exe", "Norton(赛门铁克)"},
{"vptray.exe", "Symantec(赛门铁克) or Norton(赛门铁克)"},
{"iamapp.exe", "Norton(赛门铁克)"},
{"nav.exe", "Norton(赛门铁克)"},
{"navapw32.exe", "Norton(赛门铁克)"},
{"navapsvc.exe", "Norton(赛门铁克)"},
{"nisum.exe", "Norton(赛门铁克)"},
{"nmain.exe", "Norton(赛门铁克)"},
{"nprotect.exe", "Norton(赛门铁克)"},
{"smcGui.exe", "Symantec(赛门铁克) or Norton(赛门铁克)"},
{"ns.exe", "Norton(赛门铁克)"},
{"nortonsecurity.exe", "Norton(赛门铁克)"},
{"afwServ.exe", "Norton V25(Avast)"},
{"aswEngSrv.exe", "Norton V25(Avast)"},
{"aswidsagent.exe", "Norton V25(Avast)"},
{"AvDump.exe", "Norton V25(Avast)"},
{"nllToolsSvc.exe", "Norton V25(Avast)"},
{"NortonSvc.exe", "Norton V25(Avast)"},
{"wsc_proxy.exe", "Norton V25(Avast)"},
{"ccSetMgr.exe", "Symantec(赛门铁克)"},
{"ccpxysvc.exe", "Symantec(赛门铁克)"},
{"cfgwiz.exe", "Symantec(赛门铁克)"},
{"smc.exe", "Symantec(赛门铁克)"},
{"symproxysvc.exe", "Symantec(赛门铁克)"},
{"vpc32.exe", "Symantec(赛门铁克)"},
{"lsetup.exe", "Symantec(赛门铁克)"},
{"luall.exe", "Symantec(赛门铁克)"},
{"lucomserver.exe", "Symantec(赛门铁克)"},
{"sbserv.exe", "Symantec(赛门铁克)"},
{"ccEvtMgr.exe", "Symantec(赛门铁克)"},
{"snac.exe", "Symantec(赛门铁克)"},
{"SymCorpUI.exe", "Symantec(赛门铁克)"},
{"sepWscSvc64.exe", "Symantec(赛门铁克)"},
{"knsdtray.exe", "可牛杀毒"},
{"Miner.exe", "流量矿石"},
{"safedog.exe", "SafeDog(安全狗)"},
{"SafeDogGuardCenter.exe", "SafeDog(安全狗)"},
{"SafeDogSiteIIS.exe", "SafeDog(安全狗)"},
{"SafeDogTray.exe", "SafeDog(安全狗)"},
{"SafeDogServerUI.exe", "SafeDog(安全狗)"},
{"SafeDogSiteApache.exe", "SafeDog(安全狗)"},
{"CloudHelper.exe", "SafeDog(安全狗)"},
{"SafeDogUpdateCenter.exe", "SafeDog(安全狗)"},
{"parmor.exe", "木马克星"},
{"Iparmor.exe", "木马克星"},
{"beikesan.exe", "贝壳云安全"},
{"TrojanHunter.exe", "木马猎手"},
{"GG.exe", "巨盾网游安全盾"},
{"adam.exe", "绿鹰安全精灵"},
{"AST.exe", "超级巡警"},
{"ananwidget.exe", "墨者安全专家"},
{"FYFireWall.exe", "风云防火墙"},
{"MPMon.exe", "微点主动防御"},
{"pfw.exe", "天网防火墙"},
{"D_Safe_Manage.exe", "D 盾"},
{"d_manage.exe", "D 盾"},
{"yunsuo_agent_service.exe", "云锁"},
{"yunsuo_agent_daemon.exe", "云锁"},
{"HwsPanel.exe", "护卫神"},
{"hws_ui.exe", "护卫神"},
{"hws.exe", "护卫神"},
{"hwsd.exe", "护卫神"},
{"HwsHostPanel.exe", "护卫神"},
{"HwsHostMaster.exe", "护卫神"},
{"hipstray.exe", "火绒安全"},
{"wsctrl.exe", "火绒安全"},
{"usysdiag.exe", "火绒安全"},
{"HipsDaemon.exe", "火绒安全"},
{"HipsLog.exe", "火绒安全"},
{"HipsMain.exe", "火绒安全"},
{"wsctrlsvc.exe", "火绒安全"},
{"WEBSCANX.exe", "网络病毒克星"},
{"SPHINX.exe", "SPHINX防火墙"},
{"TQClient.exe", "奇安信天擎"},
{"TQTray.exe", "奇安信天擎"},
{"QaxEngManager.exe", "奇安信天擎"},
{"TQDefender.exe", "奇安信天擎"},
{"avwin.exe", "H+BEDV Datentechnik GmbH"},
{"avwupsrv.exe", "H+BEDV Datentechnik GmbH"},
{"blackd.exe", "IBM ISS Proventia"},
{"rapapp.exe", "IBM ISS Proventia"},
{"eeyeevnt.exe", "eEye Digital Security"},
{"blink.exe", "eEye Digital Security"},
{"cv.exe", "TamoSoft"},
{"ent.exe", "TamoSoft"},
{"persfw.exe", "Kerio Personal Firewall"},
{"wrctrl.exe", "Kerio Personal Firewall"},
{"Trjscan.exe", "Simplysup"},
{"PCTAV.exe", "PC Tools AntiVirus"},
{"pctsGui.exe", "PC Tools AntiVirus"},
{"vbcmserv.exe", "VirusBuster Professional"},
{"ClamTray.exe", "ClamWin"},
{"clamscan.exe", "ClamWin"},
{"kxetray.exe", "金山毒霸 or 安天智甲"},
{"kscan.exe", "金山毒霸 or 安天智甲"},
{"AMediumManager.exe", "安天智甲"},
{"kismain.exe", "安天智甲"},
{"CMCNECore.exe", "CMC Endpoint Security"},
{"cmcepagent.exe", "CMC Endpoint Security"},
{"cmccore.exe", "CMC Endpoint Security"},
{"CMCLog.exe", "CMC Endpoint Security"},
{"CMCFMon.exe", "CMC Endpoint Security"},
{"kxescore.exe", "金山毒霸"},
{"kupdata.exe", "金山毒霸"},
{"kwsprotect64.exe", "金山毒霸"},
{"kislive.exe", "金山毒霸"},
{"knewvip.exe", "金山毒霸"},
{"kxecenter.exe", "金山毒霸"},
{"kxemain.exe", "金山毒霸"},
{"KWatch.exe", "金山毒霸"},
{"KSafeSvc.exe", "金山毒霸"},
{"KSafeTray.exe", "金山毒霸"},
{"outpost.exe", "Agnitum outpost (Outpost Firewall)"},
{"acs.exe", "Agnitum outpost (Outpost Firewall)"},
{"CynetLauncher.exe", "Cynet"},
{"CynetDS.exe", "Cynet"},
{"CynetEPS.exe", "Cynet"},
{"CynetMS.exe", "Cynet"},
{"CynetAR.exe", "Cynet"},
{"CynetGW.exe", "Cynet"},
{"CynetSD64.exe", "Cynet"},
{"winlogbeat.exe", "Elastic"},
{"KSWebShield.exe", "金山网盾"},
{"kpfwtray.exe", "金山网镖"},
{"1433.exe", "在扫1433"},
{"DUB.exe", "在爆破"},
{"ServUDaemon.exe", "发现S-U"},
{"baiduSafeTray.exe", "百度卫士"},
{"avkwctl9.exe", "G Data文件系统实时监控"},
{"AVKWCTL.exe", "G Data文件系统实时监控"},
{"SAVMAIN.exe", "Sophos Anti-Virus"},
{"safeboxTray.exe", "360保险箱"},
{"Notifier.exe", "亚信安全服务器深度安全防护系统"},
{"AliYunDun.exe", "阿里云盾"},
{"AliYunDunUpdate.exe", "阿里云盾"},
{"aliyun_assist_service.exe", "阿里云盾"},
{"BaradAgent.exe", "腾讯云安全"},
{"sgagent.exe", "腾讯云安全"},
{"YDService.exe", "腾讯云安全"},
{"YDLive.exe", "腾讯云安全"},
{"YDEdr.exe", "腾讯云安全"},
{"360WebSafe.exe", "360主机卫士Web"},
{"QHSrv.exe", "360主机卫士Web"},
{"QHWebshellGuard.exe", "360主机卫士Web"},
{"gov_defence_service.exe", "网防G01"},
{"gov_defence_daemon.exe", "网防G01"},
{"PC.exe", "云锁客户端"},
{"SNDSrvc.exe", "Symantec Shared诺顿邮件防火墙软件"},
{"USBKiller.exe", "U盘杀毒专家"},
{"360EntClient.exe", "天擎EDRAgent"},
{"360EntMisc.exe", "360(奇安信)天擎"},
{"alisecguard.exe", "阿里云-云盾"},
{"ALsvc.exe", "Sophos AutoUpdate Service"},
{"CmsGoAgent.windows-amd64.", "阿里云监控"},
{"edr_agent.exe", "深信服EDRAgent"},
{"edr_monitor.exe", "深信服EDRAgent"},
{"edr_sec_plan.exe", "深信服EDRAgent"},
{"rm_service.exe", "戎码翼龙 NG-EDR"},
{"rm_live.exe", "戎码翼龙 NG-EDR"},
{"rm_tray.exe", "戎码翼龙 NG-EDR"},
{"rm_hips.exe", "戎码翼龙 NG-EDR"},
{"ESAV.exe", "启明星辰天珣EDRAgent"},
{"ESCCControl.exe", "启明星辰天珣EDRAgent"},
{"ESCC.exe", "启明星辰天珣EDRAgent"},
{"ESCCIndex.exe", "启明星辰天珣EDRAgent"},
{"gse_win_agent.exe", "蓝鲸Agent"},
{"gse_win_daemon.exe", "蓝鲸Agent"},
{"LAVService.exe", "联想电脑管家"},
{"McsAgent.exe", "Sophos MCS Agent"},
{"McsClient.exe", "Sophos MCS Client"},
{"QHSafeMain.exe", "360TotalSecurity(360国际版)"},
{"QHSafeTray.exe", "360TotalSecurity(360国际版)"},
{"QHWatchdog.exe", "360TotalSecurity(360国际版)"},
{"sdcservice.exe", "Sophos Device Control Service"},
{"SEDService.exe", "Sophos Endpoint Defense Service"},
{"smartscreen.exe", "Windows Defender SmartScreen"},
{"SophosCleanM64.exe", "Sophos Clean Service"},
{"SophosFIMService.exe", "Sophos FIM"},
{"SSPService.exe", "Sophos System Protection Service"},
{"swc_service.exe", "Sophos Web Control Service"},
{"TitanAgent.exe", "天眼云镜"},
{"TitanMonitor.exe", "天眼云镜"},
{"TopsecMain.exe", "天融信终端防御"},
{"TopsecTray.exe", "天融信终端防御"},
{"wdswfsafe.exe", "360杀毒-网盾"},
{"WiseVector.exe", "智量安全"},
{"WiseVectorSvc.exe", "智量安全"},
{"QAXEntClient.exe", "天擎"},
{"QAXTray.exe", "天擎"},
{"AgentService.exe", "安恒主机卫士"},
{"ProtectMain.exe", "安恒主机卫士"},
{"Deep Security Manager.exe", "亚信DS服务端"},
{"dsa.exe", "亚信DS客户端"},
{"UniAccessAgent.exe", "亚信DS客户端"},
{"dsvp.exe", "亚信DS客户端"},
{"zabbix_agentd", "zabbix agen端"},
{"AliHips", "阿里系监控"},
{"AliNet", "阿里系监控"},
{"AliDetect", "阿里系监控"},
{"AliScriptEngine", "阿里系监控"},
{"secu-tcs-agent", "腾讯系监控"},
{"SentinelServiceHost.exe", "SentinelOne(哨兵一号)"},
{"SentinelStaticEngine.exe", "SentinelOne(哨兵一号)"},
{"SentinelStaticEngineScanner.exe", "SentinelOne(哨兵一号)"},
{"SentinelMemoryScanner.exe", "SentinelOne(哨兵一号)"},
{"SentinelAgent.exe", "SentinelOne(哨兵一号)"},
{"SentinelAgentWorker.exe", "SentinelOne(哨兵一号)"},
{"SentinelUI.exe", "SentinelOne(哨兵一号)"},
{"tbAgent.exe", "OneSec(微步)"},
{"tbAgentSrv.exe", "OneSec(微步)"},
{"tbGuard.exe", "OneSec(微步)"},
{"PccNT.exe", "亚信安全防毒墙网络版"},
{"PccNTUpd.exe", "亚信安全防毒墙网络版"},
{"venVtapServer.exe", "Illumio ZTS"},
{"venPlatformHandler.exe", "Illumio ZTS"},
{"venAgentMonitor.exe", "Illumio ZTS"},
{"venAgentMgr.exe", "Illumio ZTS"},
{"NuboshEndpoint.exe", "奇安信统一服务器安全"},
{"IMF.exe", "IObit Malware Fighter"},
{"IMFCore.exe", "IObit Malware Fighter"},
{"IMFsrv.exe", "IObit Malware Fighter"},
{"IMFSrvWsc.exe", "IObit Malware Fighter"},
};
}
}