Tagged Questions

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

learn more… | top users | synonyms

31
votes
17answers
3k views

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. ...
12
votes
8answers
795 views

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 ...
5
votes
0answers
313 views

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 ...
5
votes
2answers
160 views

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 ...
4
votes
2answers
279 views

How to implement fact related to false positive vs. false negative balance in neural network?

I have a yes/no classification problem, where false positives are worse than false negatives. Is there a way to implement this fact into neural network especially in MATLAB's Neural Network Toolbox?
3
votes
2answers
163 views

My program is getting a false positive from AVG

My program is getting a false positive from AVG. Its just our companies branded version of Ultra VNC. Its only this one company that's identifying it as a virus and we've been using the same copy of ...
2
votes
0answers
65 views

How to avoid false import compile error with Java Annotation?

Let's assume ClassGenerated.java is generated by running the java annotation processor on ClassGeneratedParent.java and ClassA imports both ClassGenerated and ClassGeneratedParent. When running javac ...
2
votes
1answer
54 views

Buffer overflow or false positive?

getmodulefilenamew function produces false positive (buffer overflow) as it accepts second argument as buffer - of fixed size in our case. But looking through its documentation: ...
2
votes
5answers
1k views

Gmail/Hotmail Flag email as spam

I have a simple .NET app that is sending out email using SMTPClient. I am sending from an authenticated account on the local server with an SPF record, and the host (gogrid) is unsure what else they ...
1
vote
3answers
61 views

Java: Use Math.abs and keep a count of how often it was used for later use

I'm trying to write a program that modifies fractions and I need to make sure that the "-" negative is properly outputted only once. If the user inputs a numerator and a denominator and puts them ...
1
vote
1answer
109 views

junit: how to avoid false positives when using forkMode=“once”?

I'd like to speed up junit tests and I think about using forkMode="once". Du to the fact that junit seems to use a shared classloader for all tests within one fork beside false negatives (which is ...
1
vote
2answers
104 views

Avoiding Antivirus False-Positives in Data Files

A data file used by one of my applications was recently quarantined by Symantec Antivirus (signature triggered was 'Nightfall.5815'). The file is written and read dynamically, and the content is ...
1
vote
0answers
46 views

Can Pex instrumentation cause code to change its effect?

I've got a simple JSON lexer class; it takes a string and generates an IJSONValue; the IJSONValue has a ToJSONString method that returns a valid JSON string. The code for that, of course, is quite ...
1
vote
1answer
129 views

How to detect anomalous resource consumption reliably?

This question is about a whole class of similar problems, but I'll ask it as a concrete example. I have a server with a file system whose contents fluctuate. I need to monitor the available space on ...
0
votes
0answers
75 views

sql testing for a false positive rates

I am working on Postgresql-7.4.13 for my school project. It requires to test a false positive rates when I join two tables and use a bloom filter. Is there any efficient way to calculate a false ...
0
votes
1answer
116 views

How to find out the false positive rate of one implementation of bloom filter algorithm?

How can I find the false positive rate of one implementation of bloom filter algorithm?
0
votes
3answers
170 views

HaXe download claims to have Lineage.gen trojan in it

I am setting myself up with FlashDevelop, and i went to download and install HaXe (which is the language i want to use) from this page (the windows installer), when my Windows Security Essentials said ...
-2
votes
1answer
133 views

Rspec false positive because failure exception is rescued in code being tested

I have an rspec test that I expect to fail, but it is passing because the code that it is testing rescues the exception that rspec raises. Here's an example of the situation: class Thing do def ...