Set default scan interval to 0

This commit is contained in:
Daniel Goldberg 2018-12-31 12:27:57 +02:00
parent 3ca5119e03
commit 43896ed718
3 changed files with 3 additions and 3 deletions

View File

@ -193,7 +193,7 @@ class Configuration(object):
9200]
tcp_target_ports.extend(HTTP_PORTS)
tcp_scan_timeout = 3000 # 3000 Milliseconds
tcp_scan_interval = 200
tcp_scan_interval = 0
tcp_scan_get_banner = True
# Ping Scanner

View File

@ -79,7 +79,7 @@
"sambacry_shares_not_to_check": ["IPC$", "print$"],
"local_network_scan": false,
"tcp_scan_get_banner": true,
"tcp_scan_interval": 200,
"tcp_scan_interval": 0,
"tcp_scan_timeout": 10000,
"tcp_target_ports": [
22,

View File

@ -817,7 +817,7 @@ SCHEMA = {
"tcp_scan_interval": {
"title": "TCP scan interval",
"type": "integer",
"default": 200,
"default": 0,
"description": "Time to sleep (in milliseconds) between scans"
},
"tcp_scan_timeout": {