Questions tagged [false-positive]

False positive is the case where the positive result of a test doesn't correspond to reality. It can lead to the wrong decision.

210 questions
85
votes
3 answers

Malwarebytes gives trojan warning for basic C# "Hello World!" program

Basically, I just ran a scan of my computer with Malwarebytes (updated the definitions before running), and it said my "helloworld" program written in C# has a trojan. I know for a fact this is a false positive, as I only wrote the program 2-3 days…
Qwurticus
  • 777
  • 9
  • 17
59
votes
17 answers

Accidentally created a virus?

I've seen it happen reasonably often: I write an application in Delphi and when I compile it, the virus-scanner tells me that I've created a virus and then immediately deletes the executable again. It's annoying but reasonable easy to fix by doing a…
Wim ten Brink
  • 24,763
  • 19
  • 72
  • 138
41
votes
6 answers

Antivirus False positive in my executable

I just ran into an annoying problem. Suddenly Avira AntiVir started to flag one executable from my software as being a virus. As the default action from almost any user is to click OK and Avira suggests to put the virus in quarantine, most of my…
Ricardo Acras
  • 34,766
  • 15
  • 66
  • 109
40
votes
3 answers

Helgrind (Valgrind) and OpenMP (C): avoiding false positives?

The documentation for the Valgrind thread error detection tool Helgrind, found here warns that, if you use GCC to compile your OpenMP code, GCC's OpenMP runtime library (libgomp.so) will cause a chaos of false positive reports of data races, because…
Amittai Aviram
  • 2,152
  • 3
  • 24
  • 31
31
votes
6 answers

Program Download - IE CHROME - "is not commonly downloaded and could be dangerous."

I have an installer for my C# program, I uploaded it to my website, but whenever I try to download it in chrome or IE, I get "MY FILE* is not commonly downloaded and could be dangerous." You can only keep it if you click a tiny arrow and choose…
msbg
  • 4,414
  • 10
  • 41
  • 71
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,295
  • 6
  • 40
  • 58
12
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
  • 179
  • 3
  • 15
10
votes
4 answers

Need explanation on the necessity of a prior flushing to avoid false positives whenTesting with Spring ?

In the spring documentation regarding testing, it states: Avoid false positives when testing ORM code When you test code involving an ORM framework such as JPA or Hibernate, flush the underlying session within test methods which update…
JavaRocky
  • 17,871
  • 30
  • 87
  • 109
10
votes
2 answers

Is the clang static analyzer confused by popping the front from a list of unique_ptrs?

The following C++11 code is a minimal example of what I believe triggers a false positive in clang: #include #include #include class ElementType {}; int main(int argc, const char * argv[]) { …
Thierry
  • 889
  • 7
  • 18
9
votes
2 answers

How to change all bit type column NULL values to false in all database in MSSQL?

I have a database in with I have many bit type columns. After adding other columns I need all old columns to have default "false" values.
Sergey Khojoyan
  • 113
  • 1
  • 1
  • 5
8
votes
1 answer

IE9 SmartScreen Warning, Despite Following All Recommendations

We offer a Windows program downloadable as an InstallShield EXE from our website. When someone running IE9 attempts to download and run our software, they see the following message at the bottom of their screen: PROGRAMNAME.exe is not commonly…
Schof
  • 5,815
  • 5
  • 25
  • 34
8
votes
2 answers

how to calculate roc curves?

I write a classifier (Gaussian Mixture Model) to classify five human actions. For every observation the classifier compute the posterior probability to belong to a cluster. I want to valutate the performance of my system parameterized with a…
Mario Lepore
  • 307
  • 1
  • 7
  • 17
7
votes
2 answers

clang-analyze: how to avoid "garbage value" warning?

When checking #include #include int main(void) { char c[20]; size_t l; l = fread(c, sizeof c, 1, stdin); if (l != 1) return 1; return c[0] == 42; } with clang, I get $ clang --analyze -Xclang…
ensc
  • 5,922
  • 12
  • 17
7
votes
1 answer

Trying to suppress clang false positive leak warning

I am using clang static analysis under Xcode 6.4 (6E35b), and getting a false positive warning about a potential memory leak. I do explicitly free the memory in question, but the freeing happens in a different compilation unit. Here is my…
7
votes
2 answers

Py2Exe application flagged as malware by Windows Defender; what to do?

I have an application I wrote for my company in Python 2.x, PyQT4, and MySQLdb and packaged with py2exe. Recently, I made some updates to the application, Porting it to Python 3.4 and PySide. I also removed the MySQLdb dependencies and added…
Alan Moore
  • 309
  • 4
  • 11
1
2 3
13 14