From 758a8969a11f21dcb49691b682e4f1345f4d52c5 Mon Sep 17 00:00:00 2001 From: Francois Date: Wed, 20 Mar 2024 20:57:22 +0100 Subject: [PATCH 1/2] added generator --- docker/compose/docker-compose.yml | 9 +++++++++ docker/dockerfile/generator/Dockerfile | 9 +++++++++ docker/dockerfile/generator/generator.py | 1 + protos/reconfig.proto | 0 4 files changed, 19 insertions(+) create mode 100644 docker/dockerfile/generator/Dockerfile create mode 100644 docker/dockerfile/generator/generator.py create mode 100644 protos/reconfig.proto diff --git a/docker/compose/docker-compose.yml b/docker/compose/docker-compose.yml index 9fd1e83..c12ec9b 100644 --- a/docker/compose/docker-compose.yml +++ b/docker/compose/docker-compose.yml @@ -82,6 +82,8 @@ services: - SMTP_FROM=contact@honeybrain.fr - SMTP_USER=contact@honeybrain.fr - SMTP_PASSWORD=H!2HQwusWch-:xc + - CREATE_ADMIN_EMAIL=francois.bolla@epitech.eu + - CREATE_ADMIN_PASSWORD=k6d=Ha2#~fW25OwrAffe networks: - dashboard_network volumes: @@ -163,6 +165,13 @@ services: - dashboard_network restart: unless-stopped + generator: + image: alpine:latest + container_name: generator + build: + context: ../dockerfile/generator + dockerfile: Dockerfile + networks: honeypot_network: name: honeypot_network diff --git a/docker/dockerfile/generator/Dockerfile b/docker/dockerfile/generator/Dockerfile new file mode 100644 index 0000000..5969f95 --- /dev/null +++ b/docker/dockerfile/generator/Dockerfile @@ -0,0 +1,9 @@ +FROM alpine:latest + +RUN apk update && apk upgrade + +RUN apk add python3 + +COPY generator.py . + +CMD ["sleep", "infinity"] \ No newline at end of file diff --git a/docker/dockerfile/generator/generator.py b/docker/dockerfile/generator/generator.py new file mode 100644 index 0000000..bb5a40a --- /dev/null +++ b/docker/dockerfile/generator/generator.py @@ -0,0 +1 @@ +print("foobar") \ No newline at end of file diff --git a/protos/reconfig.proto b/protos/reconfig.proto new file mode 100644 index 0000000..e69de29 From 7a4fa9b8fbd70ff6651f8a2b7b534293371ef5dd Mon Sep 17 00:00:00 2001 From: valentinbreiz Date: Thu, 21 Mar 2024 21:56:38 +0100 Subject: [PATCH 2/2] =?UTF-8?q?=E2=9C=A8=20Reconfig?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../generator/docker-compose-ips-template.yml | 36 ++ config/generator/docker-compose-template.yml | 122 +++++ config/generator/ftp_server_template.yml | 8 + docker/compose/docker-compose.yml | 3 + docker/dockerfile/generator/Dockerfile | 8 +- docker/dockerfile/generator/generator.py | 85 +++- logs/suricata/fast.log | 479 ++++++++++++++++++ 7 files changed, 736 insertions(+), 5 deletions(-) create mode 100755 config/generator/docker-compose-ips-template.yml create mode 100644 config/generator/docker-compose-template.yml create mode 100755 config/generator/ftp_server_template.yml diff --git a/config/generator/docker-compose-ips-template.yml b/config/generator/docker-compose-ips-template.yml new file mode 100755 index 0000000..df39f51 --- /dev/null +++ b/config/generator/docker-compose-ips-template.yml @@ -0,0 +1,36 @@ +version: '3' +services: + fail2ban: + image: adrienroco/hb_services_fail2ban:latest + container_name: fail2ban + restart: "unless-stopped" + network_mode: host + cap_add: + - NET_ADMIN + - NET_RAW + volumes: + - "/var/run/docker.sock:/var/run/docker.sock" + - "./honeypot/logs/suricata/fast.log:/var/log/suricata.log" + - "./honeypot/logs/fail2ban:/var/log/fail2ban" + - "./honeypot/config/fail2ban:/data" + - "/var/lib/docker/containers/:/container-logs/:ro" + - "./honeypot/config/nginx/block.conf:/etc/nginx/block.conf" + - "./honeypot/config/nginx/nginx.conf:/etc/nginx/nginx.conf" + env_file: + - "./honeypot/fail2ban.env" + depends_on: + - suricata + + suricata: + image: jasonish/suricata:latest + container_name: suricata + network_mode: host + cap_add: + - NET_ADMIN + - NET_RAW + - SYS_NICE + volumes: + - "./honeypot/logs/suricata/fast.log:/var/log/suricata/fast.log" + - "./honeypot/config/suricata/suricata.yaml:/etc/suricata/suricata.yaml" + - "./honeypot/config/suricata/suricata.rules:/var/lib/suricata/rules/suricata.rules" + command: -i ${NETWORK_INTERFACE:-null} \ No newline at end of file diff --git a/config/generator/docker-compose-template.yml b/config/generator/docker-compose-template.yml new file mode 100644 index 0000000..305e310 --- /dev/null +++ b/config/generator/docker-compose-template.yml @@ -0,0 +1,122 @@ +version: '3' +services: + reverse_proxy: + image: nginx:latest + container_name: reverse_proxy + volumes: + - "./honeypot/config/nginx/nginx.conf:/etc/nginx/nginx.conf" + - "./honeypot/config/nginx/block.conf:/etc/nginx/block.conf" + - "./honeypot/logs/nginx:/var/log/nginx" + ports: + - "80:80" + networks: + - services_network + depends_on: + - shop + + shop: + image: shop_image + container_name: shop + build: + context: {{ dockerfile }} + networks: + - services_network + - honeypot_network +{% if num_dummy_pc is not none %} + {% include 'dummy_pc_template.yml' %} +{% endif %} +{% if ftp_ip_address is not none %} + {% include 'ftp_server_template.yml' %} +{% endif %} + + mongo: + container_name: mongo + image: mongo:latest + networks: + - dashboard_network + + backend: + image: adrienroco/hb_dashboard_back:latest + container_name: backend + environment: + - NODE_ENV=production + - GRPC_URL=backend:50051 + - SMTP_HOST=smtp.zoho.eu + - SMTP_PORT=465 + - SMTP_FROM=contact@honeybrain.fr + - SMTP_USER=contact@honeybrain.fr + - SMTP_PASSWORD=H!2HQwusWch-:xc + networks: + - dashboard_network + volumes: + - "./honeypot/config/wireguard/peer1:/app/honeypot/peer1" + - "./honeypot/logs/suricata/fast.log:/app/honeypot/fast.log" + - "./honeypot/config/nginx/block.conf:/app/honeypot/block.conf" + - "./honeypot/config/suricata/suricata.rules:/app/honeypot/suricata.rules" + - "./honeypot/config/fail2ban/filter.d/nginx-honeypot.conf:/app/honeypot/nginx-honeypot.conf" + - "./honeypot/config/fail2ban/action.d/geohostsdeny.conf:/app/honeypot/geohostsdeny.conf" + - "/var/run/docker.sock:/var/run/docker.sock" + healthcheck: + test: ["CMD", "nc", "-zv", "localhost", "50051"] + interval: 10s + timeout: 5s + retries: 3 + depends_on: + - mongo + + frontend: + image: adrienroco/hb_dashboard_front:latest + container_name: frontend + environment: + - NODE_ENV=production + ports: + - "3000:3000" + networks: + - dashboard_network + healthcheck: + test: ["CMD", "curl", "--fail", "http://localhost:3000/"] + interval: 10s + timeout: 5s + retries: 3 + + envoy: + image: adrienroco/hb_dashboard_envoy:latest + container_name: envoy + ports: + - "8080:8080" + networks: + - dashboard_network + depends_on: + - backend + + wireguard: + image: linuxserver/wireguard + container_name: wireguard + cap_add: + - NET_ADMIN + - SYS_MODULE + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/Paris + - SERVERURL=176.166.54.11 + - SERVERPORT=51820 + - PEERS=1 + ports: + - "51820:51820/udp" + sysctls: + - net.ipv4.conf.all.src_valid_mark=1 + networks: + - dashboard_network + restart: unless-stopped + +networks: + honeypot_network: + name: honeypot_network + ipam: + config: + - subnet: {{ subnet }} + services_network: + name: services_network + dashboard_network: + name: dashboard_network \ No newline at end of file diff --git a/config/generator/ftp_server_template.yml b/config/generator/ftp_server_template.yml new file mode 100755 index 0000000..b7310f9 --- /dev/null +++ b/config/generator/ftp_server_template.yml @@ -0,0 +1,8 @@ +ftp: + image: adrienroco/hb_modules_ftp:latest + container_name: honeypot_ftp + ports: + - "{{ ftp_port }}:21" + networks: + honeypot_network:{% if ftp_ip_address is not none %} + ipv4_address: {{ ftp_ip_address }}{% endif %} diff --git a/docker/compose/docker-compose.yml b/docker/compose/docker-compose.yml index c12ec9b..de1ac66 100644 --- a/docker/compose/docker-compose.yml +++ b/docker/compose/docker-compose.yml @@ -93,6 +93,7 @@ services: - "../../config/fail2ban/filter.d/nginx-honeypot.conf:/app/honeypot/nginx-honeypot.conf" - "../../config/fail2ban/action.d/geohostsdeny.conf:/app/honeypot/geohostsdeny.conf" - "../../config/nginx/block.conf:/app/honeypot/block.conf" + - ../../config/generator:/app/honeypot/generator - "/var/run/docker.sock:/var/run/docker.sock" healthcheck: test: ["CMD", "nc", "-zv", "localhost", "50051"] @@ -171,6 +172,8 @@ services: build: context: ../dockerfile/generator dockerfile: Dockerfile + volumes: + - ../../config/generator:/config networks: honeypot_network: diff --git a/docker/dockerfile/generator/Dockerfile b/docker/dockerfile/generator/Dockerfile index 5969f95..fc568a7 100644 --- a/docker/dockerfile/generator/Dockerfile +++ b/docker/dockerfile/generator/Dockerfile @@ -1,9 +1,9 @@ FROM alpine:latest -RUN apk update && apk upgrade +RUN apk update && apk add --no-cache python3 py3-pip -RUN apk add python3 +RUN pip install jinja2 --break-system-packages -COPY generator.py . +COPY generator.py /generator.py -CMD ["sleep", "infinity"] \ No newline at end of file +CMD ["sleep", "infinity"] diff --git a/docker/dockerfile/generator/generator.py b/docker/dockerfile/generator/generator.py index bb5a40a..d8e67bd 100644 --- a/docker/dockerfile/generator/generator.py +++ b/docker/dockerfile/generator/generator.py @@ -1 +1,84 @@ -print("foobar") \ No newline at end of file +import os +import json +import subprocess +from jinja2 import Environment, FileSystemLoader + +def main(): + try: + print("[INFO] Parsing config...") + # Open the config file + with open("/config/config.json", "r") as f: + config = json.load(f) + + # Parameters + num_dummy_pc = ( + config["dummy_pc"]["num_services"] if "dummy_pc" in config else None + ) + ip_addresses_dummy_pc = ( + config["dummy_pc"]["ip_addresses"] if "dummy_pc" in config else None + ) + ftp_port = config["ftp"]["port"] if "ftp" in config else None + ftp_ip_address = config["ftp"]["ip_address"] if "ftp" in config else None + subnet = config["subnet"] + dockerfile = config["dockerfile"] + + # Load the template file + file_loader = FileSystemLoader("/config") + env = Environment(loader=file_loader) + print("[ OK ] Config parsed.") + except Exception as e: + print("[ERROR] Could not parse config: " + e.__cause__) + return + + try: + print("[INFO] Generating docker compose...") + # Load the main template + template = env.get_template("docker-compose-template.yml") + + # Render the main template with the number of services and the IP addresses + output = template.render( + num_dummy_pc=num_dummy_pc, + ip_addresses_dummy_pc=ip_addresses_dummy_pc, + ftp_port=ftp_port, + ftp_ip_address=ftp_ip_address, + subnet=subnet, + dockerfile=dockerfile, + ) + + template_ips = env.get_template("docker-compose-ips-template.yml") + + output_ips = template_ips.render() + + print("[ OK ] Docker compose generated.") + except Exception as e: + print("[ERROR] Could not generate docker compose: " + e.__cause__) + return + + try: + print("[INFO] Checking Honeypot...") + + # Write the output to a file + with open("/config/docker-compose.yml", "w") as f: + f.write(output) + + # Write the output to a file + with open("/config/docker-compose-ips.yml", "w") as f: + f.write(output_ips) + + print("[ OK ] Files copied.") + except Exception as e: + print("[ERROR] Could not copy honeybrain files: " + e.__cause__) + return + + print( + "All services are now started! You can access the dashboard using http://localhost:3000." + ) + + print('(Tip: You can see your services using "docker ps" in a terminal)') + print("") + print("") + print("") + print("") + +if __name__ == "__main__": + main() diff --git a/logs/suricata/fast.log b/logs/suricata/fast.log index e69de29..cc97e0b 100644 --- a/logs/suricata/fast.log +++ b/logs/suricata/fast.log @@ -0,0 +1,479 @@ +03/21/2024-16:57:24.361433 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:44978 -> 140.82.121.5:443 +03/21/2024-16:57:24.462145 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:54236 -> 138.68.32.225:443 +03/21/2024-16:57:27.840603 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:56044 -> 54.236.113.205:443 +03/21/2024-16:57:28.344657 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:51634 -> 54.198.86.24:443 +03/21/2024-16:58:51.469245 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:56700 -> 140.82.121.6:443 +03/21/2024-16:59:08.914671 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:47508 -> 138.68.32.225:443 +03/21/2024-16:59:16.788814 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:54168 -> 54.227.20.253:443 +03/21/2024-16:59:17.418418 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:40084 -> 54.198.86.24:443 +03/21/2024-16:59:27.118894 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:57930 -> 54.227.20.253:443 +03/21/2024-16:59:27.706737 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:57938 -> 54.227.20.253:443 +03/21/2024-16:59:36.631526 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:42514 -> 54.236.113.205:443 +03/21/2024-16:59:37.263000 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:51442 -> 54.227.20.253:443 +03/21/2024-16:59:52.026977 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:57620 -> 20.189.173.14:443 +03/21/2024-17:00:10.172504 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:39500 -> 146.190.225.48:80 +03/21/2024-17:00:28.821448 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:33148 -> 140.82.121.5:443 +03/21/2024-17:02:53.795342 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:34842 -> 20.189.173.13:443 +03/21/2024-17:04:57.450855 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:53684 -> 104.208.16.90:443 +03/21/2024-17:04:58.861235 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52172 -> 20.189.173.6:443 +03/21/2024-17:05:02.271053 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:37820 -> 20.189.173.6:443 +03/21/2024-17:05:05.329579 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:37822 -> 20.189.173.6:443 +03/21/2024-17:05:07.564056 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:55458 -> 20.189.173.7:443 +03/21/2024-17:05:10.172286 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:56910 -> 146.190.225.48:80 +03/21/2024-17:05:10.466851 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:60580 -> 40.79.141.152:443 +03/21/2024-17:10:10.172681 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:34308 -> 146.190.225.48:80 +03/21/2024-17:11:47.806976 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:47800 -> 162.159.130.234:443 +03/21/2024-17:14:11.825531 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:47006 -> 20.50.201.201:443 +03/21/2024-17:14:34.791210 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:39832 -> 20.189.173.15:443 +03/21/2024-17:15:10.172538 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:60106 -> 146.190.225.48:80 +03/21/2024-17:15:15.652219 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:35606 -> 20.189.173.23:443 +03/21/2024-17:15:17.643979 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:35610 -> 20.189.173.23:443 +03/21/2024-17:15:24.279221 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:57644 -> 52.182.143.211:443 +03/21/2024-17:15:34.854716 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:38398 -> 20.189.173.12:443 +03/21/2024-17:15:44.382652 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:33946 -> 51.104.15.252:443 +03/21/2024-17:15:48.925463 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:33952 -> 51.104.15.252:443 +03/21/2024-17:16:05.795931 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:42906 -> 52.168.112.66:443 +03/21/2024-17:16:34.941270 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52830 -> 51.116.246.105:443 +03/21/2024-17:22:47.685077 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:38842 -> 104.208.16.90:443 +03/21/2024-17:22:50.991659 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:38848 -> 104.208.16.90:443 +03/21/2024-17:23:22.707230 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:49638 -> 13.107.5.93:443 +03/21/2024-17:23:23.510972 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:60540 -> 140.82.121.5:443 +03/21/2024-17:23:25.115995 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:34546 -> 138.68.32.225:443 +03/21/2024-17:23:28.177436 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45066 -> 54.198.86.24:443 +03/21/2024-17:23:28.785246 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45076 -> 54.198.86.24:443 +03/21/2024-17:23:34.826600 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:50906 -> 13.89.179.8:443 +03/21/2024-17:24:14.727458 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:53836 -> 54.227.20.253:443 +03/21/2024-17:24:15.115257 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:41942 -> 54.198.86.24:443 +03/21/2024-17:24:35.184718 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:36362 -> 20.189.173.10:443 +03/21/2024-17:24:44.373672 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:35730 -> 140.82.121.5:443 +03/21/2024-17:25:09.420227 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:59736 -> 138.68.32.225:443 +03/21/2024-17:25:10.176409 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:60922 -> 146.190.225.48:80 +03/21/2024-17:25:12.608569 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45974 -> 54.227.20.253:443 +03/21/2024-17:25:13.151795 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45988 -> 54.227.20.253:443 +03/21/2024-17:25:39.571619 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:40494 -> 54.198.86.24:443 +03/21/2024-17:25:40.114518 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:38306 -> 54.227.20.253:443 +03/21/2024-17:25:45.911164 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:50266 -> 54.198.86.24:443 +03/21/2024-17:25:46.487672 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:50280 -> 54.198.86.24:443 +03/21/2024-17:25:52.363210 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:41878 -> 54.236.113.205:443 +03/21/2024-17:25:52.918702 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:41884 -> 54.236.113.205:443 +03/21/2024-17:27:26.930499 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:35024 -> 140.82.121.5:443 +03/21/2024-17:27:27.924058 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:35424 -> 138.68.32.225:443 +03/21/2024-17:28:28.641333 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:39310 -> 54.227.20.253:443 +03/21/2024-17:28:29.357580 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:39314 -> 54.227.20.253:443 +03/21/2024-17:29:31.403077 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:56296 -> 104.46.162.226:443 +03/21/2024-17:30:10.172673 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:44580 -> 146.190.225.48:80 +03/21/2024-17:30:21.523455 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:58366 -> 140.82.121.5:443 +03/21/2024-17:30:22.908676 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:55744 -> 54.236.113.205:443 +03/21/2024-17:30:23.415144 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:57056 -> 54.227.20.253:443 +03/21/2024-17:31:01.184937 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:56620 -> 20.42.73.24:443 +03/21/2024-17:35:10.172300 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:55826 -> 146.190.225.48:80 +03/21/2024-17:35:30.100039 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:54628 -> 20.189.173.4:443 +03/21/2024-17:36:03.718377 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:50978 -> 140.82.121.6:443 +03/21/2024-17:36:04.947079 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:48296 -> 138.68.32.225:443 +03/21/2024-17:36:07.810978 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:35430 -> 54.198.86.24:443 +03/21/2024-17:36:08.295731 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:53606 -> 54.227.20.253:443 +03/21/2024-17:36:30.551232 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:55616 -> 52.168.117.168:443 +03/21/2024-17:38:04.968894 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:55480 -> 51.132.193.105:443 +03/21/2024-17:38:09.595236 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:55482 -> 51.132.193.105:443 +03/21/2024-17:38:12.624186 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:49694 -> 51.132.193.105:443 +03/21/2024-17:38:30.212205 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:33402 -> 51.132.193.105:443 +03/21/2024-17:38:33.019900 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45366 -> 51.132.193.105:443 +03/21/2024-17:38:34.723419 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45368 -> 51.132.193.105:443 +03/21/2024-17:39:07.265881 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:57708 -> 20.42.73.24:443 +03/21/2024-17:39:34.172996 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:41492 -> 52.182.143.208:443 +03/21/2024-17:40:10.175693 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:37100 -> 146.190.225.48:80 +03/21/2024-17:40:34.906182 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:46646 -> 20.42.73.25:443 +03/21/2024-17:40:52.957173 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:53918 -> 13.89.179.8:443 +03/21/2024-17:40:56.365579 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:53928 -> 13.89.179.8:443 +03/21/2024-17:41:00.825560 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:41212 -> 20.189.173.2:443 +03/21/2024-17:41:35.328854 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:34282 -> 20.189.173.2:443 +03/21/2024-17:41:57.448088 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:33018 -> 13.89.179.11:443 +03/21/2024-17:42:18.307329 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:42260 -> 20.189.173.2:443 +03/21/2024-17:42:20.246305 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:36184 -> 20.50.80.209:443 +03/21/2024-17:42:22.764756 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:53836 -> 20.50.80.209:443 +03/21/2024-17:42:47.478608 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:56992 -> 20.189.173.3:443 +03/21/2024-17:43:11.016436 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:55270 -> 20.189.173.4:443 +03/21/2024-17:43:13.066992 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:55828 -> 51.116.253.169:443 +03/21/2024-17:43:34.860923 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:58532 -> 13.89.179.10:443 +03/21/2024-17:44:18.340610 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:41200 -> 20.189.173.16:443 +03/21/2024-17:44:22.533016 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:32816 -> 20.189.173.15:443 +03/21/2024-17:44:27.844144 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:56572 -> 20.42.73.27:443 +03/21/2024-17:44:31.805205 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:53508 -> 20.42.73.27:443 +03/21/2024-17:44:34.917932 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:44472 -> 20.189.173.6:443 +03/21/2024-17:44:36.752987 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:49512 -> 13.89.179.11:443 +03/21/2024-17:44:38.768780 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:49522 -> 13.89.179.11:443 +03/21/2024-17:44:42.212972 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:54068 -> 104.208.16.90:443 +03/21/2024-17:44:45.001784 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:47502 -> 20.189.173.4:443 +03/21/2024-17:44:50.304368 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:46712 -> 51.104.15.253:443 +03/21/2024-17:44:55.436008 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:55838 -> 20.42.72.131:443 +03/21/2024-17:45:00.251296 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:55854 -> 20.42.72.131:443 +03/21/2024-17:45:10.175698 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:49034 -> 146.190.225.48:80 +03/21/2024-17:45:14.786274 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:46794 -> 20.42.73.28:443 +03/21/2024-17:45:17.248531 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:46798 -> 20.42.73.28:443 +03/21/2024-17:45:24.407339 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:35940 -> 20.189.173.7:443 +03/21/2024-17:45:32.444376 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45924 -> 13.89.179.9:443 +03/21/2024-17:45:35.456463 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45940 -> 13.89.179.9:443 +03/21/2024-17:45:38.462003 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45952 -> 13.89.179.9:443 +03/21/2024-17:45:42.435494 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:47972 -> 13.89.179.9:443 +03/21/2024-17:45:49.093814 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:47986 -> 13.89.179.9:443 +03/21/2024-17:45:52.052710 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:32984 -> 13.89.179.9:443 +03/21/2024-17:45:54.114068 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:32990 -> 13.89.179.9:443 +03/21/2024-17:46:06.031659 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:60838 -> 13.89.179.9:443 +03/21/2024-17:46:10.245426 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:60854 -> 13.89.179.9:443 +03/21/2024-17:46:28.030920 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:35942 -> 51.132.193.105:443 +03/21/2024-17:46:35.058930 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:54892 -> 20.189.173.14:443 +03/21/2024-17:46:37.188980 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:54896 -> 20.189.173.14:443 +03/21/2024-17:47:23.226165 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:56038 -> 140.82.121.6:443 +03/21/2024-17:47:24.545191 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:46600 -> 138.68.32.225:443 +03/21/2024-17:47:27.193719 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45822 -> 54.236.113.205:443 +03/21/2024-17:47:27.720069 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45830 -> 54.236.113.205:443 +03/21/2024-17:47:50.922768 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:38382 -> 13.70.79.200:443 +03/21/2024-17:48:30.360670 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:54206 -> 140.82.121.5:443 +03/21/2024-17:49:01.568921 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52350 -> 20.189.173.18:443 +03/21/2024-17:49:41.128544 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:40910 -> 140.82.121.5:443 +03/21/2024-17:50:10.175930 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:59916 -> 146.190.225.48:80 +03/21/2024-17:50:13.374885 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:54840 -> 54.227.20.253:443 +03/21/2024-17:50:13.875172 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:41840 -> 54.198.86.24:443 +03/21/2024-17:50:21.541127 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:54846 -> 54.227.20.253:443 +03/21/2024-17:50:22.041484 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:33128 -> 54.236.113.205:443 +03/21/2024-17:50:47.668116 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:49950 -> 20.42.73.26:443 +03/21/2024-17:50:54.149140 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:49234 -> 20.42.73.26:443 +03/21/2024-17:51:06.513748 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:51112 -> 140.82.121.5:443 +03/21/2024-17:51:21.771557 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:57170 -> 40.79.167.8:443 +03/21/2024-17:51:32.591833 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:41714 -> 13.107.5.93:443 +03/21/2024-17:51:32.626121 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:41728 -> 13.107.5.93:443 +03/21/2024-17:51:33.385437 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:41738 -> 13.107.5.93:443 +03/21/2024-17:51:44.259143 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:36596 -> 13.69.239.72:443 +03/21/2024-17:52:10.233039 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:49526 -> 20.50.73.13:443 +03/21/2024-17:52:12.383974 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:44660 -> 52.182.143.210:443 +03/21/2024-17:52:17.873359 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:43902 -> 40.79.173.40:443 +03/21/2024-17:52:21.407264 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:44670 -> 52.182.143.210:443 +03/21/2024-17:52:23.933808 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:35758 -> 52.182.143.210:443 +03/21/2024-17:52:26.486054 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:33024 -> 52.168.112.67:443 +03/21/2024-17:52:31.506866 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:51786 -> 140.82.121.6:443 +03/21/2024-17:52:32.386188 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:37018 -> 138.68.32.225:443 +03/21/2024-17:52:35.582208 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:53402 -> 54.198.86.24:443 +03/21/2024-17:52:36.194540 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:53418 -> 54.198.86.24:443 +03/21/2024-17:53:13.905247 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:48208 -> 140.82.121.6:443 +03/21/2024-17:53:15.889706 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:32850 -> 54.236.113.205:443 +03/21/2024-17:53:16.318144 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:50662 -> 54.227.20.253:443 +03/21/2024-17:53:22.605377 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:55068 -> 13.107.5.93:443 +03/21/2024-17:54:04.648432 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:55506 -> 140.82.121.6:443 +03/21/2024-17:54:38.115605 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:58014 -> 52.178.17.2:443 +03/21/2024-17:54:44.037176 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45974 -> 40.79.197.35:443 +03/21/2024-17:55:05.335830 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:46962 -> 51.104.15.253:443 +03/21/2024-17:55:10.175540 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:53426 -> 146.190.225.48:80 +03/21/2024-17:55:34.292730 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:42260 -> 51.132.193.104:443 +03/21/2024-17:55:34.845033 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:38378 -> 51.104.15.252:443 +03/21/2024-17:56:15.229659 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:38500 -> 13.89.179.11:443 +03/21/2024-17:57:05.192357 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:39888 -> 40.74.98.192:443 +03/21/2024-17:57:34.997093 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:57330 -> 20.42.65.85:443 +03/21/2024-17:57:58.660703 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:49166 -> 140.82.121.6:443 +03/21/2024-17:57:59.968092 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:36480 -> 138.68.32.225:443 +03/21/2024-17:58:34.098382 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:58544 -> 51.116.246.104:443 +03/21/2024-17:59:34.806494 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:42636 -> 20.42.65.85:443 +03/21/2024-18:00:10.176327 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:58250 -> 146.190.225.48:80 +03/21/2024-18:02:34.815280 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:47650 -> 52.168.112.66:443 +03/21/2024-18:03:12.006167 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:55578 -> 104.208.16.90:443 +03/21/2024-18:05:10.176488 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:32994 -> 146.190.225.48:80 +03/21/2024-18:05:34.894149 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:56712 -> 20.189.173.1:443 +03/21/2024-18:06:03.774049 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:58932 -> 146.190.225.48:80 +03/21/2024-18:23:52.671864 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:38728 -> 199.232.81.91:443 +03/21/2024-18:23:52.671918 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:38642 -> 146.190.225.48:80 +03/21/2024-18:23:52.671966 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45706 -> 199.232.170.49:443 +03/21/2024-18:23:52.671977 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45712 -> 199.232.170.49:443 +03/21/2024-18:23:52.672026 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45726 -> 199.232.170.49:443 +03/21/2024-18:23:52.809831 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:50438 -> 149.154.167.99:443 +03/21/2024-18:23:52.866368 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:36810 -> 52.222.149.107:443 +03/21/2024-18:23:52.870822 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:34284 -> 91.189.91.82:80 +03/21/2024-18:23:52.871619 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45732 -> 199.232.170.49:443 +03/21/2024-18:23:52.871897 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45740 -> 199.232.170.49:443 +03/21/2024-18:23:52.872201 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45744 -> 199.232.170.49:443 +03/21/2024-18:23:52.915203 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45760 -> 199.232.170.49:443 +03/21/2024-18:23:52.920071 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:57336 -> 185.125.190.80:443 +03/21/2024-18:23:52.921193 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:39060 -> 104.16.171.99:80 +03/21/2024-18:23:52.928591 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:35468 -> 52.222.169.120:443 +03/21/2024-18:23:52.932292 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45764 -> 199.232.170.49:443 +03/21/2024-18:23:52.935216 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45772 -> 199.232.170.49:443 +03/21/2024-18:23:52.937793 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:38736 -> 199.232.81.91:443 +03/21/2024-18:23:52.941404 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:50448 -> 149.154.167.99:443 +03/21/2024-18:23:52.951580 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:36600 -> 51.158.154.169:80 +03/21/2024-18:23:53.004911 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:40038 -> 138.68.36.163:443 +03/21/2024-18:23:53.062264 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45774 -> 199.232.170.49:443 +03/21/2024-18:23:53.063242 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45778 -> 199.232.170.49:443 +03/21/2024-18:23:53.064339 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45792 -> 199.232.170.49:443 +03/21/2024-18:23:53.141473 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:38744 -> 199.232.81.91:443 +03/21/2024-18:23:53.415294 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:38748 -> 199.232.81.91:443 +03/21/2024-18:23:53.917112 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:34630 -> 152.199.19.160:443 +03/21/2024-18:23:54.498240 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:36850 -> 13.69.239.77:443 +03/21/2024-18:23:54.748864 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:36852 -> 13.69.239.77:443 +03/21/2024-18:23:55.068923 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:50450 -> 149.154.167.99:443 +03/21/2024-18:23:55.131071 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:51336 -> 20.65.133.233:443 +03/21/2024-18:28:52.463650 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:51750 -> 146.190.225.48:80 +03/21/2024-18:33:52.464855 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:33808 -> 146.190.225.48:80 +03/21/2024-18:36:53.009296 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:49628 -> 20.42.65.85:443 +03/21/2024-18:38:13.007182 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:39852 -> 13.107.5.93:443 +03/21/2024-18:38:13.294991 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:39866 -> 13.107.5.93:443 +03/21/2024-18:38:13.660830 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:42112 -> 20.50.88.244:443 +03/21/2024-18:38:13.669354 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:39874 -> 13.107.5.93:443 +03/21/2024-18:38:13.773579 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:39878 -> 13.107.5.93:443 +03/21/2024-18:38:14.600483 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:48892 -> 104.208.16.89:443 +03/21/2024-18:38:15.015927 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:48902 -> 104.208.16.89:443 +03/21/2024-18:38:16.235495 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:48916 -> 104.208.16.89:443 +03/21/2024-18:38:23.011753 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:48452 -> 52.168.112.66:443 +03/21/2024-18:38:24.019377 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:48452 -> 52.168.112.66:443 +03/21/2024-18:38:28.639446 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:43624 -> 20.42.73.25:443 +03/21/2024-18:40:46.954044 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:56486 -> 140.82.121.6:443 +03/21/2024-18:40:47.968167 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:37836 -> 138.68.32.225:443 +03/21/2024-18:40:51.980958 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:53864 -> 54.236.113.205:443 +03/21/2024-18:40:52.536918 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:53868 -> 54.236.113.205:443 +03/21/2024-18:43:22.557349 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:36282 -> 13.107.5.93:443 +03/21/2024-18:43:24.475601 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45220 -> 20.50.80.214:443 +03/21/2024-18:43:25.546436 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45234 -> 20.50.80.214:443 +03/21/2024-18:43:25.582346 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45238 -> 20.50.80.214:443 +03/21/2024-18:43:28.351171 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45248 -> 20.50.80.214:443 +03/21/2024-18:43:28.597601 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:39616 -> 20.189.173.9:443 +03/21/2024-18:43:30.529913 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:54858 -> 40.79.197.35:443 +03/21/2024-18:43:33.278478 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:54872 -> 40.79.197.35:443 +03/21/2024-18:43:52.464198 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:49664 -> 146.190.225.48:80 +03/21/2024-18:44:24.776651 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:59452 -> 51.132.193.105:443 +03/21/2024-18:47:16.410597 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:32996 -> 20.189.173.23:443 +03/21/2024-18:47:25.205970 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:36206 -> 104.208.16.91:443 +03/21/2024-18:48:52.464157 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:59772 -> 146.190.225.48:80 +03/21/2024-18:53:52.462248 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:41514 -> 146.190.225.48:80 +03/21/2024-18:58:52.464519 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:53986 -> 146.190.225.48:80 +03/21/2024-19:03:52.463804 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:49104 -> 146.190.225.48:80 +03/21/2024-19:06:16.223426 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:40372 -> 140.82.121.6:443 +03/21/2024-19:06:22.455973 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:37948 -> 54.236.113.205:443 +03/21/2024-19:06:23.199813 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:55122 -> 54.227.20.253:443 +03/21/2024-19:06:41.906186 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:32920 -> 20.189.173.16:443 +03/21/2024-19:07:16.455470 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:43176 -> 54.227.20.253:443 +03/21/2024-19:07:16.812093 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52300 -> 54.236.113.205:443 +03/21/2024-19:08:12.727918 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:51946 -> 13.107.5.93:443 +03/21/2024-19:08:13.007733 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:51948 -> 13.107.5.93:443 +03/21/2024-19:08:13.748620 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:51952 -> 13.107.5.93:443 +03/21/2024-19:08:19.723221 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:55768 -> 40.79.173.40:443 +03/21/2024-19:08:24.739771 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:49406 -> 52.182.143.208:443 +03/21/2024-19:08:30.250513 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:60630 -> 20.189.173.12:443 +03/21/2024-19:08:32.544949 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:59574 -> 13.69.116.107:443 +03/21/2024-19:08:37.532217 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:59584 -> 13.69.116.107:443 +03/21/2024-19:08:43.314551 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:41462 -> 140.82.121.5:443 +03/21/2024-19:08:52.464079 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:43064 -> 146.190.225.48:80 +03/21/2024-19:09:40.133511 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:60238 -> 140.82.121.5:443 +03/21/2024-19:13:22.552457 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:37770 -> 13.107.5.93:443 +03/21/2024-19:13:52.463786 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:46528 -> 146.190.225.48:80 +03/21/2024-19:16:03.105782 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:38976 -> 140.82.121.5:443 +03/21/2024-19:16:16.330789 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:50608 -> 104.208.16.88:443 +03/21/2024-19:16:38.723407 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:59798 -> 20.42.65.89:443 +03/21/2024-19:17:24.763844 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:58484 -> 52.182.143.210:443 +03/21/2024-19:17:57.277811 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:42366 -> 20.50.73.10:443 +03/21/2024-19:18:35.870326 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52002 -> 20.189.173.3:443 +03/21/2024-19:18:52.816028 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:32948 -> 146.190.225.48:80 +03/21/2024-19:19:39.835383 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:56542 -> 185.230.212.164:465 +03/21/2024-19:20:24.743677 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:50086 -> 20.189.173.12:443 +03/21/2024-19:20:51.623658 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:50110 -> 140.82.121.6:443 +03/21/2024-19:20:56.146299 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:39936 -> 54.198.86.24:443 +03/21/2024-19:20:57.015392 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:56498 -> 54.236.113.205:443 +03/21/2024-19:21:31.880344 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:46380 -> 140.82.121.6:443 +03/21/2024-19:22:01.619663 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:37272 -> 20.189.173.12:443 +03/21/2024-19:22:24.787669 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:42232 -> 20.189.173.7:443 +03/21/2024-19:22:31.216319 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:37738 -> 20.42.73.27:443 +03/21/2024-19:22:43.072264 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:47710 -> 52.182.143.209:443 +03/21/2024-19:23:52.463710 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52658 -> 146.190.225.48:80 +03/21/2024-19:23:53.051497 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:49790 -> 140.82.121.5:443 +03/21/2024-19:23:55.829314 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:51246 -> 54.227.20.253:443 +03/21/2024-19:23:56.260465 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:55180 -> 54.198.86.24:443 +03/21/2024-19:24:32.297146 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:35964 -> 52.182.143.213:443 +03/21/2024-19:24:50.212577 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52828 -> 140.82.121.5:443 +03/21/2024-19:24:51.860109 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:55924 -> 54.227.20.253:443 +03/21/2024-19:24:52.288056 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:49786 -> 54.198.86.24:443 +03/21/2024-19:24:56.694972 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:39350 -> 138.68.32.225:443 +03/21/2024-19:25:00.819503 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:49916 -> 54.236.113.205:443 +03/21/2024-19:25:01.225426 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:39570 -> 54.198.86.24:443 +03/21/2024-19:25:50.447752 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:47598 -> 149.154.167.99:443 +03/21/2024-19:25:50.693646 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:37178 -> 52.123.137.125:443 +03/21/2024-19:25:50.726880 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:37184 -> 52.123.137.125:443 +03/21/2024-19:25:50.778137 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:37194 -> 52.123.137.125:443 +03/21/2024-19:25:50.992378 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:47610 -> 149.154.167.99:443 +03/21/2024-19:25:51.243133 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:47612 -> 149.154.167.99:443 +03/21/2024-19:25:52.258111 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:47622 -> 149.154.167.99:443 +03/21/2024-19:25:56.049895 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:35940 -> 140.82.121.6:443 +03/21/2024-19:28:52.464371 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:56096 -> 146.190.225.48:80 +03/21/2024-19:30:46.509151 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:37428 -> 40.79.167.8:443 +03/21/2024-19:30:48.626328 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:37438 -> 40.79.167.8:443 +03/21/2024-19:33:07.385011 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:42846 -> 20.42.65.91:443 +03/21/2024-19:33:31.797638 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:55844 -> 20.42.65.85:443 +03/21/2024-19:33:33.786337 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:49412 -> 104.208.16.91:443 +03/21/2024-19:33:40.698278 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:58422 -> 104.208.16.91:443 +03/21/2024-19:33:52.463821 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:38184 -> 146.190.225.48:80 +03/21/2024-19:36:06.170797 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:44678 -> 52.168.117.171:443 +03/21/2024-19:38:41.345650 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:55066 -> 138.68.32.225:443 +03/21/2024-19:38:45.642800 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:38600 -> 54.227.20.253:443 +03/21/2024-19:38:46.242184 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:49524 -> 54.198.86.24:443 +03/21/2024-19:38:52.462966 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:41408 -> 146.190.225.48:80 +03/21/2024-19:41:11.124824 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:55592 -> 185.230.212.164:465 +03/21/2024-19:43:52.462904 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:55264 -> 146.190.225.48:80 +03/21/2024-19:44:21.367893 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:42518 -> 140.82.121.6:443 +03/21/2024-19:44:27.171624 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:54288 -> 54.198.86.24:443 +03/21/2024-19:44:27.884944 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:39458 -> 54.227.20.253:443 +03/21/2024-19:45:57.013064 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:60050 -> 140.82.121.6:443 +03/21/2024-19:46:58.317706 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:46166 -> 184.105.99.43:443 +03/21/2024-19:46:58.568184 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:46178 -> 184.105.99.43:443 +03/21/2024-19:46:59.347354 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:46166 -> 184.105.99.43:443 +03/21/2024-19:46:59.571357 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:46178 -> 184.105.99.43:443 +03/21/2024-19:47:00.371361 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:46166 -> 184.105.99.43:443 +03/21/2024-19:47:00.595363 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:46178 -> 184.105.99.43:443 +03/21/2024-19:48:52.162441 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:35594 -> 140.82.121.6:443 +03/21/2024-19:48:52.464348 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:50274 -> 146.190.225.48:80 +03/21/2024-19:48:53.904752 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:49122 -> 54.236.113.205:443 +03/21/2024-19:48:54.422024 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:43698 -> 54.227.20.253:443 +03/21/2024-19:49:47.420217 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45678 -> 52.182.143.213:443 +03/21/2024-19:49:54.318173 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:58466 -> 51.116.253.169:443 +03/21/2024-19:50:16.210242 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:56560 -> 140.82.121.6:443 +03/21/2024-19:50:24.753080 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:39366 -> 20.42.65.84:443 +03/21/2024-19:51:53.115829 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52560 -> 140.82.121.5:443 +03/21/2024-19:51:53.361457 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52562 -> 140.82.121.5:443 +03/21/2024-19:51:53.552737 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52568 -> 140.82.121.5:443 +03/21/2024-19:51:54.131374 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52560 -> 140.82.121.5:443 +03/21/2024-19:51:54.387394 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52562 -> 140.82.121.5:443 +03/21/2024-19:51:54.579372 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52568 -> 140.82.121.5:443 +03/21/2024-19:51:55.155355 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52560 -> 140.82.121.5:443 +03/21/2024-19:51:55.411374 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52562 -> 140.82.121.5:443 +03/21/2024-19:51:55.603356 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52568 -> 140.82.121.5:443 +03/21/2024-19:51:56.179389 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52560 -> 140.82.121.5:443 +03/21/2024-19:51:56.439359 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52562 -> 140.82.121.5:443 +03/21/2024-19:51:56.627360 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52568 -> 140.82.121.5:443 +03/21/2024-19:51:57.203373 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52560 -> 140.82.121.5:443 +03/21/2024-19:51:57.459392 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52562 -> 140.82.121.5:443 +03/21/2024-19:53:52.463627 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:37684 -> 146.190.225.48:80 +03/21/2024-19:55:06.849528 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:49290 -> 140.82.121.6:443 +03/21/2024-19:57:18.318155 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:37618 -> 184.105.99.43:443 +03/21/2024-19:57:18.568895 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:37634 -> 184.105.99.43:443 +03/21/2024-19:57:19.347367 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:37618 -> 184.105.99.43:443 +03/21/2024-19:57:19.571391 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:37634 -> 184.105.99.43:443 +03/21/2024-19:57:49.702709 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:54990 -> 52.182.143.213:443 +03/21/2024-19:57:52.574442 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:38680 -> 52.182.143.213:443 +03/21/2024-19:57:58.743960 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:47526 -> 13.69.239.77:443 +03/21/2024-19:58:24.499555 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:33070 -> 52.182.143.208:443 +03/21/2024-20:01:27.622853 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:54242 -> 185.230.212.164:465 +03/21/2024-20:03:22.317623 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:48220 -> 184.105.99.43:443 +03/21/2024-20:03:22.568760 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:48234 -> 184.105.99.43:443 +03/21/2024-20:03:23.347396 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:48220 -> 184.105.99.43:443 +03/21/2024-20:03:23.571385 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:48234 -> 184.105.99.43:443 +03/21/2024-20:03:24.371377 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:48220 -> 184.105.99.43:443 +03/21/2024-20:03:43.902384 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52076 -> 140.82.121.6:443 +03/21/2024-20:03:46.136068 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52516 -> 138.68.32.225:443 +03/21/2024-20:03:49.914803 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:46914 -> 54.227.20.253:443 +03/21/2024-20:03:50.638629 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:49410 -> 54.198.86.24:443 +03/21/2024-20:03:52.464943 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:38026 -> 146.190.225.48:80 +03/21/2024-20:04:36.853431 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:60506 -> 140.82.121.6:443 +03/21/2024-20:05:00.563302 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:58620 -> 20.189.173.3:443 +03/21/2024-20:05:02.779954 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:58632 -> 20.189.173.3:443 +03/21/2024-20:05:08.557627 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52528 -> 40.79.197.35:443 +03/21/2024-20:06:12.014314 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:57086 -> 140.82.121.6:443 +03/21/2024-20:06:41.483113 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:46358 -> 138.68.32.225:443 +03/21/2024-20:06:41.566171 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:35392 -> 185.230.212.164:465 +03/21/2024-20:06:45.249554 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52344 -> 54.198.86.24:443 +03/21/2024-20:06:45.626978 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:49154 -> 54.227.20.253:443 +03/21/2024-20:07:58.886066 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:36592 -> 140.82.121.5:443 +03/21/2024-20:08:12.722502 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:53304 -> 13.107.5.93:443 +03/21/2024-20:08:13.005147 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:53308 -> 13.107.5.93:443 +03/21/2024-20:08:13.747544 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:53320 -> 13.107.5.93:443 +03/21/2024-20:08:52.464466 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:48654 -> 146.190.225.48:80 +03/21/2024-20:08:54.119374 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:37084 -> 54.198.86.24:443 +03/21/2024-20:08:54.695309 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:54586 -> 54.227.20.253:443 +03/21/2024-20:09:13.702530 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:44968 -> 138.68.32.225:443 +03/21/2024-20:09:47.919094 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:59440 -> 54.227.20.253:443 +03/21/2024-20:09:48.417302 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:40406 -> 54.236.113.205:443 +03/21/2024-20:10:50.307751 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:41348 -> 140.82.121.5:443 +03/21/2024-20:11:13.514047 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:48468 -> 13.89.179.8:443 +03/21/2024-20:11:18.043283 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:54856 -> 52.168.117.169:443 +03/21/2024-20:11:21.733420 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:56846 -> 104.208.16.89:443 +03/21/2024-20:11:43.186479 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:33256 -> 20.42.73.24:443 +03/21/2024-20:11:59.513451 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:47914 -> 20.50.80.214:443 +03/21/2024-20:12:14.980703 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:48324 -> 104.208.16.90:443 +03/21/2024-20:12:37.998371 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:47212 -> 20.189.173.14:443 +03/21/2024-20:12:41.423206 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:48980 -> 20.42.73.25:443 +03/21/2024-20:13:22.482759 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:51060 -> 13.107.5.93:443 +03/21/2024-20:13:52.638864 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:39442 -> 146.190.225.48:80 +03/21/2024-20:14:12.637397 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:51892 -> 140.82.121.6:443 +03/21/2024-20:14:16.512220 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:54618 -> 138.68.32.225:443 +03/21/2024-20:14:29.771199 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:40624 -> 54.198.86.24:443 +03/21/2024-20:14:30.356419 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:46592 -> 54.198.86.24:443 +03/21/2024-20:15:10.277658 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:35142 -> 140.82.121.5:443 +03/21/2024-20:15:58.895267 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:40620 -> 140.82.121.5:443 +03/21/2024-20:16:00.390676 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:59262 -> 138.68.32.225:443 +03/21/2024-20:16:52.205157 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:57978 -> 54.236.113.205:443 +03/21/2024-20:16:52.747686 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:57986 -> 54.236.113.205:443 +03/21/2024-20:17:50.946713 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:57170 -> 52.182.143.209:443 +03/21/2024-20:18:00.729759 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:40530 -> 20.189.173.7:443 +03/21/2024-20:18:52.463521 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:34020 -> 146.190.225.48:80 +03/21/2024-20:18:53.495369 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:34020 -> 146.190.225.48:80 +03/21/2024-20:18:54.515365 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:34020 -> 146.190.225.48:80 +03/21/2024-20:18:55.539366 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:34020 -> 146.190.225.48:80 +03/21/2024-20:18:56.563375 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:34020 -> 146.190.225.48:80 +03/21/2024-20:19:01.880794 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:47962 -> 51.11.192.48:443 +03/21/2024-20:19:24.728406 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:42988 -> 51.116.246.105:443 +03/21/2024-20:19:38.799977 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:55224 -> 51.116.246.105:443 +03/21/2024-20:20:36.999353 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:34158 -> 140.82.121.6:443 +03/21/2024-20:20:45.636375 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45404 -> 54.227.20.253:443 +03/21/2024-20:20:46.040147 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45078 -> 54.198.86.24:443 +03/21/2024-20:22:21.942460 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:56640 -> 51.105.71.137:443 +03/21/2024-20:22:31.451708 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:58140 -> 20.189.173.12:443 +03/21/2024-20:22:36.051036 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:47098 -> 140.82.121.6:443 +03/21/2024-20:22:44.203964 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:36000 -> 140.82.121.6:443 +03/21/2024-20:22:44.425944 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:36010 -> 140.82.121.6:443 +03/21/2024-20:22:45.235385 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:36000 -> 140.82.121.6:443 +03/21/2024-20:22:45.427647 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:36010 -> 140.82.121.6:443 +03/21/2024-20:22:46.259429 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:36000 -> 140.82.121.6:443 +03/21/2024-20:22:46.451406 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:36010 -> 140.82.121.6:443 +03/21/2024-20:23:01.068323 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:50926 -> 20.189.173.12:443 +03/21/2024-20:23:07.724321 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:41970 -> 20.189.173.15:443 +03/21/2024-20:23:20.627371 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:50054 -> 20.189.173.12:443 +03/21/2024-20:23:32.543607 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:54098 -> 44.240.32.88:443 +03/21/2024-20:24:03.845027 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52106 -> 140.82.121.6:443 +03/21/2024-20:24:12.945972 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:54926 -> 138.68.32.225:443 +03/21/2024-20:24:36.837599 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:40620 -> 185.230.212.164:465 +03/21/2024-20:24:40.056356 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:55416 -> 54.227.20.253:443 +03/21/2024-20:24:40.431870 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:55424 -> 54.227.20.253:443 +03/21/2024-20:25:43.154926 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:40438 -> 52.182.141.63:443 +03/21/2024-20:26:00.958800 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:40748 -> 52.182.141.63:443 +03/21/2024-20:26:22.224508 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:34458 -> 185.230.212.164:465 +03/21/2024-20:26:43.833552 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52704 -> 54.227.20.253:443 +03/21/2024-20:26:44.441114 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52716 -> 54.227.20.253:443 +03/21/2024-20:28:48.495306 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:38808 -> 185.230.212.164:465 +03/21/2024-20:28:49.084940 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:57184 -> 140.82.121.6:443 +03/21/2024-20:28:52.462978 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:39998 -> 146.190.225.48:80 +03/21/2024-20:29:02.911304 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:59550 -> 54.227.20.253:443 +03/21/2024-20:29:03.487437 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:35166 -> 54.236.113.205:443 +03/21/2024-20:29:42.460880 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:50846 -> 140.82.121.5:443 +03/21/2024-20:31:35.110600 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:58418 -> 185.230.212.164:465 +03/21/2024-20:31:50.987093 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:44146 -> 138.68.32.225:443 +03/21/2024-20:31:55.306008 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:35814 -> 54.227.20.253:443 +03/21/2024-20:31:55.668812 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:57978 -> 54.198.86.24:443 +03/21/2024-20:32:00.029950 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:41964 -> 140.82.121.5:443 +03/21/2024-20:32:59.994261 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:46484 -> 104.208.16.88:443 +03/21/2024-20:33:52.463047 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:50076 -> 146.190.225.48:80 +03/21/2024-20:34:29.659532 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:50912 -> 140.82.121.6:443 +03/21/2024-20:37:43.323371 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:36246 -> 140.82.121.5:443 +03/21/2024-20:38:12.661734 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:40836 -> 13.107.5.93:443 +03/21/2024-20:38:13.005210 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:40850 -> 13.107.5.93:443 +03/21/2024-20:38:13.747826 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:40858 -> 13.107.5.93:443 +03/21/2024-20:38:52.472327 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:59192 -> 146.190.225.48:80 +03/21/2024-20:39:30.026120 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:43052 -> 13.70.79.200:443 +03/21/2024-20:39:33.659572 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:57718 -> 13.69.239.74:443 +03/21/2024-20:40:41.815451 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:58814 -> 20.189.173.16:443 +03/21/2024-20:43:42.924691 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:36364 -> 140.82.121.5:443 +03/21/2024-20:43:44.559870 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:58550 -> 138.68.32.225:443 +03/21/2024-20:43:52.537464 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:42002 -> 146.190.225.48:80 +03/21/2024-20:45:31.175750 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:33044 -> 140.82.121.5:443 +03/21/2024-20:47:05.195848 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45482 -> 20.42.73.25:443 +03/21/2024-20:47:12.564431 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:47652 -> 20.50.201.195:443 +03/21/2024-20:47:59.383782 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:53928 -> 140.82.121.6:443 +03/21/2024-20:48:00.464695 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:43608 -> 138.68.32.225:443 +03/21/2024-20:48:05.695721 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:44384 -> 54.198.86.24:443 +03/21/2024-20:48:06.351958 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:44390 -> 54.198.86.24:443 +03/21/2024-20:48:52.463863 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:49894 -> 146.190.225.48:80 +03/21/2024-20:51:26.857971 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:52588 -> 140.82.121.5:443 +03/21/2024-20:53:52.463929 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:34624 -> 146.190.225.48:80 +03/21/2024-20:54:25.966200 [**] [1:1000030:1] Possible SYN Port Scan Detected [**] [Classification: (null)] [Priority: 3] {TCP} 192.168.203.42:45448 -> 13.89.179.9:443