Questions tagged [antivirus]

Antivirus or anti-virus software is software used to prevent, detect and remove malware.

Antivirus or anti-virus software is software used to prevent, detect and remove malware (of all descriptions), such as:
Computer viruses, adware, backdoors, malicious BHOs, dialers, fraudtools, hijackers, keyloggers, malicious LSPs, rootkits, spyware, trojan horses and worms.

Computer security, including protection from social engineering techniques, is commonly offered in products and services of antivirus software companies.

This tag should be used for programming questions related to softwares used for the prevention and removal of malware threats, rather than computer security implemented by software methods.

See also:

700 questions
19
votes
3 answers

Why is this trivial C program detected as a Virus?

I wrote this program: #include main() { int n; n=1; while (n>0) { puts("Write a number: "); scanf(" %d",&n); printf("This is the number you wrote: %d\n", n); } } Apparently there are absolutely no syntax errors,…
K09P
  • 480
  • 4
  • 13
19
votes
5 answers

How to detect antivirus on Windows Server 2008 in C#?

I have seen code samples similar to the following numerous times in my search for an answer: using System; using System.Text; using System.Management; namespace ConsoleApplication1 { class Program { public static bool AntivirusInstalled() …
athom
  • 1,257
  • 4
  • 13
  • 30
18
votes
5 answers

How to be sure ClamAV database is up to date?

I am currently having an issue with ClamAV and freshclam on Centos 6.9. I have the last Clam engine 0.99.2, and a working internet connection. Even if I run the # freshclam -v command ( it only returns a security warning about unsecure permission of…
Pierre B
  • 321
  • 1
  • 2
  • 7
16
votes
4 answers

Golang - change build working path on Windows

I'm testing simple Go program on Windows 8 with SublimeText3 (GoSublime plugin) go run -v example.go and before run it's being compiled inside ..AppData\Local\Temp.. directory. My antivirus program thinks that it's a virus and blocks it: fork/exec…
Dmitry Kapsamun
  • 529
  • 1
  • 5
  • 7
16
votes
4 answers

Virus in Subversion repository, what to do?

Imagine the following situation: A virus infected file was commited into a Subversion repository. A Anti Virus scanner runs on the server and also scans the Subversion repository. The Anti Virus scanner will delete the affected revision or move it…
guerda
  • 23,388
  • 27
  • 97
  • 146
15
votes
3 answers

how to recompile the bootloader of Pyinstaller

I have an AntiVirus false positive problem of my exe file generated using PyInstaller, by searching i found this answer witch consist of recompiling the bootloader and i just can't get it done. This what i've tried so far: try to install C++…
infantry
  • 336
  • 1
  • 5
  • 15
15
votes
2 answers

How to prevent false positive virus alarm on my software?

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…
Gabriel
  • 20,797
  • 27
  • 159
  • 293
15
votes
9 answers

Does Java have a built-in Antivirus? Is it true?

Does Java have a built-in Antivirus? One of my friends told me there is in the JVM itself - it's called the "sandbox". Is it true?
Praveen
  • 90,477
  • 74
  • 177
  • 219
14
votes
2 answers

How do you deal with false positives from antivirus companies (Avast and ClamAV)?

Possible Duplicate: Antivirus False positive in my executable One application is currently getting detected by a false positive for virus by Avast and ClamAV (never heard of the latter). I have contacted both and waiting for reply from them, but I…
EKS
  • 5,543
  • 6
  • 44
  • 60
14
votes
2 answers

Checking uploaded files for viruses

I have some application. User can upload files, i save it on disk, and return it, when user want. I need implement some protection for uploaded files for viruses. I found 3 solutions for this problem: Use online antiviruses Install antivirus on my…
zam
  • 328
  • 1
  • 2
  • 11
14
votes
5 answers

Anti virus integration with .net application

I would like to use anti virus integration with my .net application when uploading files using the application. Has any anti virus API available for .Net?
user27052
  • 375
  • 3
  • 8
  • 12
13
votes
2 answers

How can I tell the "windows security center" that I'm an "antivirus"?

we are developing an anti-virus, I'm trying to find out how can we tell the operating system -windows XP in this case- that our software is an anti-virus. I want that the OS recognize our software as an anti-virus and the security center list it.
rain
  • 383
  • 2
  • 5
  • 14
13
votes
5 answers

Visual Studio and Virus Scan of Temp folder

We are using Visual Studio 2008 as our primary development IDE. Our security team has set up McAfee to scan files in our \Local Settings\Temp folder. Unfortunately VS uses this directory during code builds which is slowing the developers down. …
DAC
  • 131
  • 1
  • 3
12
votes
1 answer

Windows Defender Antivirus API

Reading the documentation of the windows defender API, for example in MpManagerOpen Function: https://msdn.microsoft.com/en-us/library/windows/desktop/dn920115(v=vs.85).aspx I see that the required include file is MpClient.h. However I couldn't…
macro_controller
  • 1,469
  • 1
  • 14
  • 32
12
votes
3 answers

Where do I get a list of all known viruses signatures?

I have written some antivirus software in Python, but am unable to find virus signatures. The software works by dumping each file on the hard disk to hex, thus getting the hex signature. Where do i get signatures for all the known viruses?
Zac Brown
  • 5,905
  • 19
  • 59
  • 107
1
2
3
46 47