[or-cvs] [torflow/master 74/92] Don't remove false positives if --exit is given

mikeperry at torproject.org mikeperry at torproject.org
Sat Aug 21 05:14:01 UTC 2010


Author: John M. Schanck <john at anomos.info>
Date: Sat, 14 Aug 2010 22:47:32 -0400
Subject: Don't remove false positives if --exit is given
Commit: 8d11b879777e14581c125206e47565acd7df52d8

---
 NetworkScanners/ExitAuthority/soat.py |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/NetworkScanners/ExitAuthority/soat.py b/NetworkScanners/ExitAuthority/soat.py
index 688ccc3..7fd35c7 100755
--- a/NetworkScanners/ExitAuthority/soat.py
+++ b/NetworkScanners/ExitAuthority/soat.py
@@ -3144,7 +3144,10 @@ def main(argv):
       else:
         plog("NOTICE", test.proto+" test has finished all nodes.")
         datahandler.saveTest(test)
-        test.remove_false_positives()
+        if not fixed_exits:
+          test.remove_false_positives()
+        else:
+          plog("NOTICE", "Not removing false positives for fixed-exit scan")
         if not do_rescan and rescan_at_finish:
           test.toggle_rescan()
           test.rewind()
-- 
1.7.1




More information about the tor-commits mailing list