From 4aa6095839092c08a8da3e7214a0263a313df370 Mon Sep 17 00:00:00 2001 From: Shreya Date: Sat, 28 Nov 2020 23:33:12 +0530 Subject: [PATCH] Add port 5432 to tcp_target_ports in config.py --- monkey/infection_monkey/config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/monkey/infection_monkey/config.py b/monkey/infection_monkey/config.py index 1fbcb876b..9f9def770 100644 --- a/monkey/infection_monkey/config.py +++ b/monkey/infection_monkey/config.py @@ -189,7 +189,8 @@ class Configuration(object): 443, 8008, 3306, - 9200] + 9200, + 5432] tcp_target_ports.extend(HTTP_PORTS) tcp_scan_timeout = 3000 # 3000 Milliseconds tcp_scan_interval = 0 # in milliseconds