mcafee

How to make McAfee cool with sending mail from my workstation?

百般思念 提交于 2020-01-23 07:52:11
问题 I am developing an application for a server and it must send mail occasionally for notifications to users. MailMessage mm = new MailMessage(); mm.To.Add("me@domain.net"); mm.From = new MailAddress("you@domain.net"); mm.Subject = "J/K"; mm.Priority = MailPriority.Normal; mm.IsBodyHtml = false; mm.Body = "Greetings and salutations"; SmtpClient client = new SmtpClient("host.address.lcl"); client.Send(mm); If I put the app on an actual server it works fine, but on my workstation, depending upon

How to make McAfee cool with sending mail from my workstation?

岁酱吖の 提交于 2020-01-23 07:52:00
问题 I am developing an application for a server and it must send mail occasionally for notifications to users. MailMessage mm = new MailMessage(); mm.To.Add("me@domain.net"); mm.From = new MailAddress("you@domain.net"); mm.Subject = "J/K"; mm.Priority = MailPriority.Normal; mm.IsBodyHtml = false; mm.Body = "Greetings and salutations"; SmtpClient client = new SmtpClient("host.address.lcl"); client.Send(mm); If I put the app on an actual server it works fine, but on my workstation, depending upon

Calling the McAfee virus scan engine

折月煮酒 提交于 2019-12-07 05:25:55
问题 I have a request from a client to integrate virus scanning into an application using the McAfee Virus Scan which they have on their server. I have done a bit of investigation and found that McScan32.dll is the main scan engine and it exports various functions that look useful. I have also found mentions of a McAfee Scan Engine SDK, but had trouble getting more information about it. Has anyone used the McAfee Scan Engine SDK, if so where did you get information about it. I am trying to

Calling the McAfee virus scan engine

旧城冷巷雨未停 提交于 2019-12-05 09:12:59
I have a request from a client to integrate virus scanning into an application using the McAfee Virus Scan which they have on their server. I have done a bit of investigation and found that McScan32.dll is the main scan engine and it exports various functions that look useful. I have also found mentions of a McAfee Scan Engine SDK, but had trouble getting more information about it. Has anyone used the McAfee Scan Engine SDK, if so where did you get information about it. I am trying to integrate into a C# application and the SDK appears to export C style functions, but that is a different issue

How do you virus scan a file being uploaded to your java webapp as it streams? [closed]

点点圈 提交于 2019-12-03 02:33:08
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . Basically, I want to virus scan files as they are uploaded (before writing them to disk) to a web app. In particular, I'd like to integrate with "McAfee VirusScan Enterprise" (latest version). From a design and maintenance perspective, would it perhaps be better to scan certain paths at the firewall using a