virus-scanning

Sending file to VirusTotal with MVC

纵饮孤独 提交于 2020-01-06 20:15:00
问题 I am a student trying out another mini project where the user can upload a CSV file to the web server. But before I can create another program to execute the file, I would like to send the file to virustotal to have it check for virus. I tried but I got an error: "cannot convert from 'string' to 'System.IO.FileInfo'" Here is my codes: Controller using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using VirusTotalNET; namespace Testing_1

Scan uploaded files C# ASP.net

非 Y 不嫁゛ 提交于 2019-12-22 18:56:13
问题 I'm trying to do a virus scan on uploaded files. I have no control over the installed virus scanner, the product hosted by multiple parties with different scanners. I tried the following library but it always returns VirusNotFound on the eicar file. https://antivirusscanner.codeplex.com/ Do you know any other solutions? 回答1: ClamAV has pretty bad detection scores. VirusTotal is not on premises. I decided to create CLI wrappers for multiple scanners, nuget packages can be found here: https:/

How can I test my applications against the popular virus scanners?

十年热恋 提交于 2019-12-21 04:29:29
问题 I need to find out whether my apps are being flagged as viruses by the most popular anti-virus packages (not best, but biggest by user base). I therefore would like to know how others go about this. Some background: I have an application written in Delphi. Ever since the Delphi virus was found, I've had problems with false positives on my applications, particularly my demonstration versions for some reason (they all share the same code). AVG has been good, and I can now whitelist my files

Check upload file for virus in MVC3

僤鯓⒐⒋嵵緔 提交于 2019-12-20 20:23:20
问题 How can i check upload file for virus before store it? I previously read this topic,but how can i do it programmatic and return result for user? The best way to avoid problems with user uploaded files of any kind is to have a command line virus scanner on the server, which you use to scan the files after upload. If the scanner result is positive, delete the file and so on 回答1: Take a look at Sophos API https://secure.sophos.com/partners/oem/integration/savdi.html "SAV Dynamic Interface (SAVDI

How to prevent false positive virus alarm on my software? [duplicate]

末鹿安然 提交于 2019-12-17 16:27:40
问题 This question already has answers here : Closed 9 years ago . Possible Duplicate: Antivirus False positive in my executable Until now, I had over 15 false virus alarms for my programs. Most of them were from Kaspersky, which reports ALWAYS the same virus: Trojan-GameThief.Win32.Lmir.pcd. There are 3 questions: Why it appears? How to prevent it? How to detect it? For the first question, because it detects always the same virus, I guess it is because one of my routines that I use in all my

Anyone having problems with Delphi-2010 and Norton Internet Security 2010?

回眸只為那壹抹淺笑 提交于 2019-12-11 15:13:11
问题 I just spend the good part of the afternoon trying to find out why some projects, when compiled and run from within the Delphi-2010 IDE produced a 'Security Risk - A program is behaving suspiciously on your computer' warning every time I compiled it. In the end it turned out to be the following: - if version information is turned on 'Include version info in your project' - and you are including one of the Developer Express units (f.i. cxControls) than Norton Internet Security's sonor

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

Scan uploaded files C# ASP.net

孤街醉人 提交于 2019-12-06 08:30:34
I'm trying to do a virus scan on uploaded files. I have no control over the installed virus scanner, the product hosted by multiple parties with different scanners. I tried the following library but it always returns VirusNotFound on the eicar file. https://antivirusscanner.codeplex.com/ Do you know any other solutions? Yolofy ClamAV has pretty bad detection scores. VirusTotal is not on premises. I decided to create CLI wrappers for multiple scanners, nuget packages can be found here: https://www.nuget.org/packages?q=avscan And its documentation and source code available at https://github.com

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 can I test my applications against the popular virus scanners?

假装没事ソ 提交于 2019-12-03 13:54:43
I need to find out whether my apps are being flagged as viruses by the most popular anti-virus packages (not best, but biggest by user base). I therefore would like to know how others go about this. Some background: I have an application written in Delphi. Ever since the Delphi virus was found, I've had problems with false positives on my applications, particularly my demonstration versions for some reason (they all share the same code). AVG has been good, and I can now whitelist my files easily, but then I got the latest DevExpress installer and it was false-positived too. Given this is