Browse Source

increased portscan timeout threshold

Fabio Arnold 9 years ago
parent
commit
e7d185ac1c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/de/tudarmstadt/informatik/hostage/ConnectionGuard.java

+ 1 - 1
src/de/tudarmstadt/informatik/hostage/ConnectionGuard.java

@@ -17,7 +17,7 @@ public class ConnectionGuard {
 	/**
 	 * Intervall between 2 connection in wich we assume a port scan
 	 */
-	public final static long TIMESTAMP_THRESHOLD_MS = 1000;
+	public final static long TIMESTAMP_THRESHOLD_MS = 60000;
 
 	private static long lastConnectionTimestamp = 0;
 	private static long lastPortscanTimestamp = 0;