diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 0556a2189..d6deb1ab0 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -39,7 +39,7 @@ jobs: run: cmd/prepare - name: Install Testrun shell: bash {0} - run: TESTRUN_DIR=. cmd/install + run: cmd/install -l timeout-minutes: 30 - name: Run tests shell: bash {0} @@ -55,6 +55,28 @@ jobs: name: runtime_api_${{ github.run_id }} path: runtime.tgz + testrun_unit: + permissions: {} + name: Unit + runs-on: ubuntu-20.04 + timeout-minutes: 15 + steps: + - name: Checkout source + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - name: Install dependencies + shell: bash {0} + run: cmd/prepare + - name: Install Testrun + shell: bash {0} + run: cmd/install -l + - name: Build Testrun + shell: bash {0} + run: cmd/build + timeout-minutes: 10 + - name: Run tests + shell: bash {0} + run: bash testing/unit/run.sh + pylint: permissions: {} name: Pylint diff --git a/.gitignore b/.gitignore index 82b6bbf64..68203577f 100644 --- a/.gitignore +++ b/.gitignore @@ -15,6 +15,7 @@ testing/unit/tls/output/ testing/unit/tls/tmp/ testing/unit/report/output/ testing/unit/risk_profile/output/ +testing/unit/services/output/ *.deb make/DEBIAN/postinst diff --git a/modules/test/baseline/baseline.Dockerfile b/modules/test/baseline/baseline.Dockerfile index f7d21f8c8..5e0288018 100644 --- a/modules/test/baseline/baseline.Dockerfile +++ b/modules/test/baseline/baseline.Dockerfile @@ -24,5 +24,11 @@ COPY $MODULE_DIR/conf /testrun/conf # Copy over all binary files COPY $MODULE_DIR/bin /testrun/bin +# Remove incorrect line endings +RUN dos2unix /testrun/bin/* + +# Make sure all the bin files are executable +RUN chmod u+x /testrun/bin/* + # Copy over all python files COPY $MODULE_DIR/python /testrun/python \ No newline at end of file diff --git a/modules/test/conn/conn.Dockerfile b/modules/test/conn/conn.Dockerfile index a9f523e44..97c411e63 100644 --- a/modules/test/conn/conn.Dockerfile +++ b/modules/test/conn/conn.Dockerfile @@ -35,5 +35,11 @@ COPY $MODULE_DIR/conf /testrun/conf # Copy over all binary files COPY $MODULE_DIR/bin /testrun/bin +# Remove incorrect line endings +RUN dos2unix /testrun/bin/* + +# Make sure all the bin files are executable +RUN chmod u+x /testrun/bin/* + # Copy over all python files COPY $MODULE_DIR/python /testrun/python \ No newline at end of file diff --git a/modules/test/dns/dns.Dockerfile b/modules/test/dns/dns.Dockerfile index 0197fd72e..1b0703ad3 100644 --- a/modules/test/dns/dns.Dockerfile +++ b/modules/test/dns/dns.Dockerfile @@ -30,5 +30,11 @@ COPY $MODULE_DIR/conf /testrun/conf # Copy over all binary files COPY $MODULE_DIR/bin /testrun/bin +# Remove incorrect line endings +RUN dos2unix /testrun/bin/* + +# Make sure all the bin files are executable +RUN chmod u+x /testrun/bin/* + # Copy over all python files COPY $MODULE_DIR/python /testrun/python \ No newline at end of file diff --git a/modules/test/ntp/ntp.Dockerfile b/modules/test/ntp/ntp.Dockerfile index 33b06287e..c0c742596 100644 --- a/modules/test/ntp/ntp.Dockerfile +++ b/modules/test/ntp/ntp.Dockerfile @@ -16,5 +16,11 @@ COPY $MODULE_DIR/conf /testrun/conf # Copy over all binary files COPY $MODULE_DIR/bin /testrun/bin +# Remove incorrect line endings +RUN dos2unix /testrun/bin/* + +# Make sure all the bin files are executable +RUN chmod u+x /testrun/bin/* + # Copy over all python files COPY $MODULE_DIR/python /testrun/python \ No newline at end of file diff --git a/modules/test/protocol/bin/start_test_module b/modules/test/protocol/bin/start_test_module index a0754836c..d85ae7d6b 100644 --- a/modules/test/protocol/bin/start_test_module +++ b/modules/test/protocol/bin/start_test_module @@ -1,53 +1,53 @@ -#!/bin/bash - -# Copyright 2023 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Setup and start the connection test module - -# Define where the python source files are located -PYTHON_SRC_DIR=/testrun/python/src - -# Fetch module name -MODULE_NAME=$1 - -# Default interface should be veth0 for all containers -DEFAULT_IFACE=veth0 - -# Allow a user to define an interface by passing it into this script -DEFINED_IFACE=$2 - -# Select which interace to use -if [[ -z $DEFINED_IFACE || "$DEFINED_IFACE" == "null" ]] -then - echo "No interface defined, defaulting to veth0" - INTF=$DEFAULT_IFACE -else - INTF=$DEFINED_IFACE -fi - -# Create and set permissions on the log files -LOG_FILE=/runtime/output/$MODULE_NAME.log -RESULT_FILE=/runtime/output/$MODULE_NAME-result.json -touch $LOG_FILE -touch $RESULT_FILE -chown $HOST_USER $LOG_FILE -chown $HOST_USER $RESULT_FILE - -# Run the python script that will execute the tests for this module -# -u flag allows python print statements -# to be logged by docker by running unbuffered -python3 -u $PYTHON_SRC_DIR/run.py "-m $MODULE_NAME" - +#!/bin/bash + +# Copyright 2023 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Setup and start the connection test module + +# Define where the python source files are located +PYTHON_SRC_DIR=/testrun/python/src + +# Fetch module name +MODULE_NAME=$1 + +# Default interface should be veth0 for all containers +DEFAULT_IFACE=veth0 + +# Allow a user to define an interface by passing it into this script +DEFINED_IFACE=$2 + +# Select which interace to use +if [[ -z $DEFINED_IFACE || "$DEFINED_IFACE" == "null" ]] +then + echo "No interface defined, defaulting to veth0" + INTF=$DEFAULT_IFACE +else + INTF=$DEFINED_IFACE +fi + +# Create and set permissions on the log files +LOG_FILE=/runtime/output/$MODULE_NAME.log +RESULT_FILE=/runtime/output/$MODULE_NAME-result.json +touch $LOG_FILE +touch $RESULT_FILE +chown $HOST_USER $LOG_FILE +chown $HOST_USER $RESULT_FILE + +# Run the python script that will execute the tests for this module +# -u flag allows python print statements +# to be logged by docker by running unbuffered +python3 -u $PYTHON_SRC_DIR/run.py "-m $MODULE_NAME" + echo Module has finished \ No newline at end of file diff --git a/modules/test/protocol/protocol.Dockerfile b/modules/test/protocol/protocol.Dockerfile index 6f55520e1..ce7b7b272 100644 --- a/modules/test/protocol/protocol.Dockerfile +++ b/modules/test/protocol/protocol.Dockerfile @@ -39,5 +39,11 @@ COPY $MODULE_DIR/bin /testrun/bin # Copy over all binary files COPY $MODULE_DIR/bin /testrun/bin +# Remove incorrect line endings +RUN dos2unix /testrun/bin/* + +# Make sure all the bin files are executable +RUN chmod u+x /testrun/bin/* + # Copy over all python files COPY $MODULE_DIR/python /testrun/python \ No newline at end of file diff --git a/modules/test/services/services.Dockerfile b/modules/test/services/services.Dockerfile index 3a89fc33c..cad8ea314 100644 --- a/modules/test/services/services.Dockerfile +++ b/modules/test/services/services.Dockerfile @@ -30,5 +30,11 @@ COPY $MODULE_DIR/conf /testrun/conf # Copy over all binary files COPY $MODULE_DIR/bin /testrun/bin +# Remove incorrect line endings +RUN dos2unix /testrun/bin/* + +# Make sure all the bin files are executable +RUN chmod u+x /testrun/bin/* + # Copy over all python files COPY $MODULE_DIR/python /testrun/python \ No newline at end of file diff --git a/modules/test/tls/bin/get_tls_client_connections.sh b/modules/test/tls/bin/get_tls_client_connections.sh index e2e6da91b..7335cac80 100755 --- a/modules/test/tls/bin/get_tls_client_connections.sh +++ b/modules/test/tls/bin/get_tls_client_connections.sh @@ -1,32 +1,32 @@ -#!/bin/bash - -# Copyright 2023 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -CAPTURE_FILE="$1" -SRC_IP="$2" -PROTOCOL=$3 - -TSHARK_OUTPUT="-T json -e ip.src -e tcp.dstport -e ip.dst" -TSHARK_FILTER="ip.src == $SRC_IP and tls" - -# Add a protocol filter if defined -if [ -n "$PROTOCOL" ];then - TSHARK_FILTER="$TSHARK_FILTER and $PROTOCOL" -fi - -response=$(tshark -r "$CAPTURE_FILE" $TSHARK_OUTPUT $TSHARK_FILTER) - -echo "$response" +#!/bin/bash + +# Copyright 2023 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +CAPTURE_FILE="$1" +SRC_IP="$2" +PROTOCOL=$3 + +TSHARK_OUTPUT="-T json -e ip.src -e tcp.dstport -e ip.dst" +TSHARK_FILTER="ip.src == $SRC_IP and tls" + +# Add a protocol filter if defined +if [ -n "$PROTOCOL" ];then + TSHARK_FILTER="$TSHARK_FILTER and $PROTOCOL" +fi + +response=$(tshark -r "$CAPTURE_FILE" $TSHARK_OUTPUT $TSHARK_FILTER) + +echo "$response" \ No newline at end of file diff --git a/modules/test/tls/python/requirements-test.txt b/modules/test/tls/python/requirements-test.txt new file mode 100644 index 000000000..93b351f44 --- /dev/null +++ b/modules/test/tls/python/requirements-test.txt @@ -0,0 +1 @@ +scapy \ No newline at end of file diff --git a/modules/test/tls/tls.Dockerfile b/modules/test/tls/tls.Dockerfile index cedf9531b..987ede591 100644 --- a/modules/test/tls/tls.Dockerfile +++ b/modules/test/tls/tls.Dockerfile @@ -31,14 +31,20 @@ COPY $MODULE_DIR/conf /testrun/conf # Copy over all binary files COPY $MODULE_DIR/bin /testrun/bin +# Remove incorrect line endings +RUN dos2unix /testrun/bin/* + +# Make sure all the bin files are executable +RUN chmod u+x /testrun/bin/* + # Copy over all python files COPY $MODULE_DIR/python /testrun/python -#Install all python requirements for the module +# Install all python requirements for the module RUN pip3 install -r /testrun/python/requirements.txt +# Install all python requirements for the modules unit test +RUN pip3 install -r /testrun/python/requirements-test.txt + # Create a directory inside the container to store the root certificates RUN mkdir -p /testrun/root_certs - - - diff --git a/testing/unit/build.sh b/testing/unit/build.sh deleted file mode 100644 index db84e0299..000000000 --- a/testing/unit/build.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash -e - -# Copyright 2023 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -sudo docker build -f testing/unit/unit_test.Dockerfile -t testrun/unit-test . \ No newline at end of file diff --git a/testing/unit/dns/dns_module_test.py b/testing/unit/dns/dns_module_test.py index 6c3dec74d..11bd73b68 100644 --- a/testing/unit/dns/dns_module_test.py +++ b/testing/unit/dns/dns_module_test.py @@ -16,7 +16,6 @@ import unittest from scapy.all import rdpcap, DNS, wrpcap import os -from testreport import TestReport MODULE = 'dns' @@ -28,7 +27,6 @@ LOCAL_REPORT = os.path.join(REPORTS_DIR, 'dns_report_local.html') LOCAL_REPORT_NO_DNS = os.path.join(REPORTS_DIR, 'dns_report_local_no_dns.html') -CONF_FILE = 'modules/test/' + MODULE + '/conf/module_config.json' # Define the capture files to be used for the test DNS_SERVER_CAPTURE_FILE = os.path.join(CAPTURES_DIR, 'dns.pcap') @@ -48,7 +46,6 @@ def setUpClass(cls): def dns_module_report_test(self): dns_module = DNSModule(module=MODULE, log_dir=OUTPUT_DIR, - conf_file=CONF_FILE, results_dir=OUTPUT_DIR, dns_server_capture_file=DNS_SERVER_CAPTURE_FILE, startup_capture_file=STARTUP_CAPTURE_FILE, @@ -59,12 +56,6 @@ def dns_module_report_test(self): # Read the generated report with open(report_out_path, 'r', encoding='utf-8') as file: report_out = file.read() - formatted_report = self.add_formatting(report_out) - - # Write back the new formatted_report value - out_report_path = os.path.join(OUTPUT_DIR, 'dns_report_with_dns.html') - with open(out_report_path, 'w', encoding='utf-8') as file: - file.write(formatted_report) # Read the local good report with open(LOCAL_REPORT, 'r', encoding='utf-8') as file: @@ -104,7 +95,6 @@ def dns_module_report_no_dns_test(self): dns_module = DNSModule(module='dns', log_dir=OUTPUT_DIR, - conf_file=CONF_FILE, results_dir=OUTPUT_DIR, dns_server_capture_file=dns_server_cap_file, startup_capture_file=startup_cap_file, @@ -115,12 +105,6 @@ def dns_module_report_no_dns_test(self): # Read the generated report with open(report_out_path, 'r', encoding='utf-8') as file: report_out = file.read() - formatted_report = self.add_formatting(report_out) - - # Write back the new formatted_report value - out_report_path = os.path.join(OUTPUT_DIR, 'dns_report_no_dns.html') - with open(out_report_path, 'w', encoding='utf-8') as file: - file.write(formatted_report) # Read the local good report with open(LOCAL_REPORT_NO_DNS, 'r', encoding='utf-8') as file: @@ -128,17 +112,6 @@ def dns_module_report_no_dns_test(self): self.assertEqual(report_out, report_local) - def add_formatting(self, body): - return f''' - - - {TestReport().generate_head()} -
- {body} - - - - {TestReport().generate_head()} - - {body} - - NTP Module| 10.10.10.15 | -10.10.10.5 | +216.239.35.12 | Client | 4 | -Feb 15, 2024 22:12:29.447 | +Feb 15, 2024 22:12:28.681 | |
| 10.10.10.5 | +216.239.35.12 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:29.448 | +Feb 15, 2024 22:12:28.728 | |
| 10.10.10.15 | -10.10.10.5 | +216.239.35.4 | Client | 4 | -Feb 15, 2024 22:12:31.577 | +Feb 15, 2024 22:12:28.842 | |
| 10.10.10.5 | +216.239.35.4 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:31.577 | +Feb 15, 2024 22:12:28.888 | |
| 10.10.10.15 | -10.10.10.5 | +216.239.35.8 | Client | 4 | -Feb 15, 2024 22:12:33.694 | +Feb 15, 2024 22:12:29.042 | |
| 10.10.10.5 | +216.239.35.8 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:33.694 | +Feb 15, 2024 22:12:29.089 | |
| 10.10.10.15 | -10.10.10.5 | +216.239.35.0 | Client | 4 | -Feb 15, 2024 22:12:35.785 | +Feb 15, 2024 22:12:29.243 | |
| 10.10.10.5 | +216.239.35.0 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:35.786 | +Feb 15, 2024 22:12:29.290 | |
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:12:37.806 | +Feb 15, 2024 22:12:29.447 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:37.806 | +Feb 15, 2024 22:12:29.448 | ||
| 10.10.10.15 | -10.10.10.5 | +216.239.35.12 | Client | 4 | -Feb 15, 2024 22:12:39.856 | +Feb 15, 2024 22:12:30.802 | |
| 10.10.10.5 | +216.239.35.12 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:39.856 | +Feb 15, 2024 22:12:30.850 | |
| 10.10.10.15 | -10.10.10.5 | +216.239.35.4 | Client | 4 | -Feb 15, 2024 22:12:41.931 | +Feb 15, 2024 22:12:30.973 | |
| 10.10.10.5 | +216.239.35.4 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:41.932 | +Feb 15, 2024 22:12:31.032 | |
| 10.10.10.15 | -10.10.10.5 | +216.239.35.8 | Client | 4 | -Feb 15, 2024 22:12:43.954 | +Feb 15, 2024 22:12:31.173 | |
| 10.10.10.5 | +216.239.35.8 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:43.956 | +Feb 15, 2024 22:12:31.220 | |
| 10.10.10.15 | -10.10.10.5 | +216.239.35.0 | Client | 4 | -Feb 15, 2024 22:13:06.439 | +Feb 15, 2024 22:12:31.376 | |
| 10.10.10.5 | +216.239.35.0 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:13:06.439 | +Feb 15, 2024 22:12:31.423 | |
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:13:08.492 | +Feb 15, 2024 22:12:31.577 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:13:08.494 | +Feb 15, 2024 22:12:31.577 | ||
| 10.10.10.15 | -10.10.10.5 | +216.239.35.12 | Client | 4 | -Feb 15, 2024 22:13:40.536 | +Feb 15, 2024 22:12:32.867 | |
| 10.10.10.5 | +216.239.35.12 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:13:40.541 | +Feb 15, 2024 22:12:32.914 | |
| 10.10.10.15 | -10.10.10.5 | +216.239.35.4 | Client | 4 | -Feb 15, 2024 22:13:48.274 | +Feb 15, 2024 22:12:33.112 | |
| 10.10.10.5 | +216.239.35.4 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:13:48.277 | +Feb 15, 2024 22:12:33.159 | |
| 10.10.10.15 | -10.10.10.5 | +216.239.35.8 | Client | 4 | -Feb 15, 2024 22:14:12.619 | +Feb 15, 2024 22:12:33.271 | |
| 10.10.10.5 | +216.239.35.8 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:14:12.624 | +Feb 15, 2024 22:12:33.318 | |
| 10.10.10.15 | -10.10.10.5 | +216.239.35.0 | Client | 4 | -Feb 15, 2024 22:14:44.702 | +Feb 15, 2024 22:12:33.475 | |
| 10.10.10.5 | +216.239.35.0 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:14:44.703 | +Feb 15, 2024 22:12:33.522 | |
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:14:53.026 | +Feb 15, 2024 22:12:33.694 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:14:53.029 | +Feb 15, 2024 22:12:33.694 | ||
| 10.10.10.15 | -10.10.10.5 | +216.239.35.12 | Client | 4 | -Feb 15, 2024 22:15:16.786 | +Feb 15, 2024 22:12:34.956 | |
| 10.10.10.5 | +216.239.35.12 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:15:16.791 | +Feb 15, 2024 22:12:35.002 | |
| 10.10.10.15 | -10.10.10.5 | +216.239.35.4 | Client | 4 | -Feb 15, 2024 22:15:48.884 | +Feb 15, 2024 22:12:35.182 | |
| 10.10.10.5 | +216.239.35.4 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:15:48.887 | +Feb 15, 2024 22:12:35.228 | |
| 10.10.10.15 | -10.10.10.5 | +216.239.35.8 | Client | 4 | -Feb 15, 2024 22:15:57.829 | +Feb 15, 2024 22:12:35.398 | |
| 10.10.10.5 | +216.239.35.8 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:15:57.829 | +Feb 15, 2024 22:12:35.445 | |
| 10.10.10.15 | -10.10.10.5 | +216.239.35.0 | Client | 4 | -Feb 15, 2024 22:16:20.970 | +Feb 15, 2024 22:12:35.625 | |
| 10.10.10.5 | +216.239.35.0 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:16:20.970 | +Feb 15, 2024 22:12:35.673 | |
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:16:54.054 | +Feb 15, 2024 22:12:35.785 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:16:54.054 | +Feb 15, 2024 22:12:35.786 | ||
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:17:02.738 | +Feb 15, 2024 22:12:37.806 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:17:02.740 | +Feb 15, 2024 22:12:37.806 | ||
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:17:26.136 | +Feb 15, 2024 22:12:39.856 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:17:26.139 | +Feb 15, 2024 22:12:39.856 | ||
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:17:59.293 | +Feb 15, 2024 22:12:41.931 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:17:59.293 | +Feb 15, 2024 22:12:41.932 | ||
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:18:07.242 | +Feb 15, 2024 22:12:43.954 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:18:07.242 | +Feb 15, 2024 22:12:43.956 | ||
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:18:32.379 | +Feb 15, 2024 22:13:06.439 | ||
| 10.10.10.5 | 10.10.10.15 | -Server | +216.239.35.0 | +Client | 4 | -Feb 15, 2024 22:18:32.379 | +Feb 15, 2024 22:13:06.439 |
| 10.10.10.15 | 10.10.10.5 | -Client | +10.10.10.15 | +Server | 4 | -Feb 15, 2024 22:20:06.908 | +Feb 15, 2024 22:13:06.439 |
| 10.10.10.5 | +216.239.35.0 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:20:06.908 | +Feb 15, 2024 22:13:06.489 | |
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:20:08.936 | +Feb 15, 2024 22:13:08.492 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:20:08.937 | +Feb 15, 2024 22:13:08.494 | ||
| 216.239.35.0 | 10.10.10.15 | -10.10.10.5 | -Client | +Server | 4 | -Feb 15, 2024 22:20:10.974 | +Feb 15, 2024 22:13:08.543 |
| 10.10.10.5 | 10.10.10.15 | -Server | +216.239.35.12 | +Client | 4 | -Feb 15, 2024 22:20:10.974 | +Feb 15, 2024 22:13:40.310 |
| 216.239.35.12 | 10.10.10.15 | -10.10.10.5 | -Client | +Server | 4 | -Feb 15, 2024 22:20:12.998 | +Feb 15, 2024 22:13:40.357 |
| 10.10.10.5 | 10.10.10.15 | -Server | +216.239.35.4 | +Client | 4 | -Feb 15, 2024 22:20:12.999 | +Feb 15, 2024 22:13:40.512 |
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:20:59.581 | +Feb 15, 2024 22:13:40.536 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:20:59.582 | +Feb 15, 2024 22:13:40.542 | ||
| 216.239.35.4 | 10.10.10.15 | -10.10.10.5 | -Client | +Server | 4 | -Feb 15, 2024 22:21:34.063 | +Feb 15, 2024 22:13:40.574 |
| 10.10.10.5 | +216.239.35.0 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:21:34.063 | +Feb 15, 2024 22:13:40.583 | |
| 10.10.10.15 | -10.10.10.5 | +216.239.35.8 | Client | 4 | -Feb 15, 2024 22:21:36.121 | +Feb 15, 2024 22:13:40.714 | |
| 10.10.10.5 | +216.239.35.8 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:21:36.121 | +Feb 15, 2024 22:13:40.764 | |
| 10.10.10.15 | -10.10.10.5 | +216.239.35.0 | Client | 4 | -Feb 15, 2024 22:21:38.176 | +Feb 15, 2024 22:13:40.917 | |
| 10.10.10.5 | +216.239.35.0 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:21:38.176 | +Feb 15, 2024 22:13:40.965 | |
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:21:40.277 | +Feb 15, 2024 22:13:48.274 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:21:40.277 | +Feb 15, 2024 22:13:48.277 | ||
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:22:05.704 | +Feb 15, 2024 22:14:12.619 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:22:05.706 | -|||
| 10.10.10.15 | -10.10.10.5 | -Client | -4 | -Feb 15, 2024 22:22:45.469 | +Feb 15, 2024 22:14:12.624 | ||
| 10.10.10.5 | +216.239.35.0 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:22:45.470 | +Feb 15, 2024 22:14:12.668 | |
| 10.10.10.15 | -10.10.10.5 | +216.239.35.12 | Client | 4 | -Feb 15, 2024 22:23:09.826 | +Feb 15, 2024 22:14:44.515 | |
| 10.10.10.5 | +216.239.35.12 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:23:09.828 | +Feb 15, 2024 22:14:44.562 | |
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:23:50.337 | +Feb 15, 2024 22:14:44.702 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:23:50.343 | +Feb 15, 2024 22:14:44.704 | ||
| 10.10.10.15 | -10.10.10.5 | +216.239.35.4 | Client | 4 | -Feb 15, 2024 22:24:13.945 | +Feb 15, 2024 22:14:45.158 | |
| 10.10.10.5 | +216.239.35.4 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:24:13.946 | +Feb 15, 2024 22:14:45.219 | |
| 10.10.10.15 | -10.10.10.5 | +216.239.35.0 | Client | 4 | -Feb 15, 2024 22:24:54.876 | +Feb 15, 2024 22:14:45.359 | |
| 10.10.10.5 | +216.239.35.0 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:24:54.877 | +Feb 15, 2024 22:14:45.406 | |
| 10.10.10.15 | -10.10.10.5 | +216.239.35.0 | Client | 4 | -Feb 15, 2024 22:25:59.000 | +Feb 15, 2024 22:14:45.707 | |
| 10.10.10.5 | +216.239.35.0 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:25:59.001 | +Feb 15, 2024 22:14:45.755 | |
| 10.10.10.15 | -216.239.35.12 | +216.239.35.8 | Client | 4 | -Feb 15, 2024 22:12:28.681 | +Feb 15, 2024 22:14:45.980 | |
| 216.239.35.12 | +216.239.35.8 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:28.728 | +Feb 15, 2024 22:14:46.027 | |
| 10.10.10.15 | -216.239.35.4 | +10.10.10.5 | Client | 4 | -Feb 15, 2024 22:12:28.842 | +Feb 15, 2024 22:14:53.026 | |
| 216.239.35.4 | +10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:28.888 | +Feb 15, 2024 22:14:53.029 | |
| 10.10.10.15 | -216.239.35.8 | +10.10.10.5 | Client | 4 | -Feb 15, 2024 22:12:29.042 | +Feb 15, 2024 22:15:16.786 | |
| 216.239.35.8 | +10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:29.089 | +Feb 15, 2024 22:15:16.791 | |
| 10.10.10.15 | 216.239.35.0 | Client | 4 | -Feb 15, 2024 22:12:29.243 | +Feb 15, 2024 22:15:18.794 | ||
| 216.239.35.0 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:29.290 | +Feb 15, 2024 22:15:18.843 | ||
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:12:29.447 | +Feb 15, 2024 22:15:48.884 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:29.448 | +Feb 15, 2024 22:15:48.887 | ||
| 10.10.10.15 | 216.239.35.12 | Client | 4 | -Feb 15, 2024 22:12:30.802 | +Feb 15, 2024 22:15:49.063 | ||
| 216.239.35.12 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:30.850 | +Feb 15, 2024 22:15:49.110 | ||
| 10.10.10.15 | 216.239.35.4 | Client | 4 | -Feb 15, 2024 22:12:30.973 | +Feb 15, 2024 22:15:49.462 | ||
| 216.239.35.4 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:31.032 | +Feb 15, 2024 22:15:49.509 | ||
| 10.10.10.15 | -216.239.35.8 | +216.239.35.0 | Client | 4 | -Feb 15, 2024 22:12:31.173 | +Feb 15, 2024 22:15:50.127 | |
| 216.239.35.8 | +216.239.35.0 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:31.220 | +Feb 15, 2024 22:15:50.175 | |
| 10.10.10.15 | -216.239.35.0 | +216.239.35.8 | Client | 4 | -Feb 15, 2024 22:12:31.376 | +Feb 15, 2024 22:15:51.107 | |
| 216.239.35.0 | +216.239.35.8 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:31.423 | +Feb 15, 2024 22:15:51.154 | |
| 10.10.10.15 | -10.10.10.5 | +216.239.35.0 | Client | 4 | -Feb 15, 2024 22:12:31.577 | +Feb 15, 2024 22:15:51.890 | |
| 10.10.10.5 | +216.239.35.0 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:31.577 | +Feb 15, 2024 22:15:51.938 | |
| 10.10.10.15 | -216.239.35.12 | +10.10.10.5 | Client | 4 | -Feb 15, 2024 22:12:32.867 | +Feb 15, 2024 22:15:57.829 | |
| 216.239.35.12 | +10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:32.914 | +Feb 15, 2024 22:15:57.829 | |
| 10.10.10.15 | -216.239.35.4 | +10.10.10.5 | Client | 4 | -Feb 15, 2024 22:12:33.112 | +Feb 15, 2024 22:16:20.970 | |
| 216.239.35.4 | +10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:33.159 | +Feb 15, 2024 22:16:20.971 | |
| 10.10.10.15 | -216.239.35.8 | +216.239.35.0 | Client | 4 | -Feb 15, 2024 22:12:33.271 | +Feb 15, 2024 22:16:24.975 | |
| 216.239.35.8 | +216.239.35.0 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:33.318 | +Feb 15, 2024 22:16:25.023 | |
| 10.10.10.15 | -216.239.35.0 | +216.239.35.4 | Client | 4 | -Feb 15, 2024 22:12:33.475 | +Feb 15, 2024 22:16:53.677 | |
| 216.239.35.0 | +216.239.35.4 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:33.522 | +Feb 15, 2024 22:16:53.739 | |
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:12:33.694 | +Feb 15, 2024 22:16:54.054 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:33.694 | +Feb 15, 2024 22:16:54.054 | ||
| 10.10.10.15 | 216.239.35.12 | Client | 4 | -Feb 15, 2024 22:12:34.956 | +Feb 15, 2024 22:16:54.276 | ||
| 216.239.35.12 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:35.002 | +Feb 15, 2024 22:16:54.322 | ||
| 10.10.10.15 | -216.239.35.4 | +216.239.35.0 | Client | 4 | -Feb 15, 2024 22:12:35.182 | +Feb 15, 2024 22:16:54.593 | |
| 216.239.35.4 | +216.239.35.0 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:35.228 | +Feb 15, 2024 22:16:54.648 | |
| 10.10.10.15 | 216.239.35.8 | Client | 4 | -Feb 15, 2024 22:12:35.398 | +Feb 15, 2024 22:16:55.435 | ||
| 216.239.35.8 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:35.445 | +Feb 15, 2024 22:16:55.481 | ||
| 10.10.10.15 | 216.239.35.0 | Client | 4 | -Feb 15, 2024 22:12:35.625 | +Feb 15, 2024 22:16:57.059 | ||
| 216.239.35.0 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:35.673 | +Feb 15, 2024 22:16:57.107 | ||
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:12:35.785 | +Feb 15, 2024 22:17:02.738 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:35.786 | +Feb 15, 2024 22:17:02.740 | ||
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:12:37.806 | +Feb 15, 2024 22:17:26.136 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:37.806 | +Feb 15, 2024 22:17:26.139 | ||
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:12:39.856 | +Feb 15, 2024 22:12:29.447 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:39.856 | +Feb 15, 2024 22:12:29.448 | ||
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:12:41.931 | +Feb 15, 2024 22:12:31.577 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:41.932 | +Feb 15, 2024 22:12:31.577 | ||
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:12:43.954 | +Feb 15, 2024 22:12:33.694 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:12:43.956 | +Feb 15, 2024 22:12:33.694 | ||
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:13:06.439 | +Feb 15, 2024 22:12:35.785 | ||
| 10.10.10.5 | 10.10.10.15 | -216.239.35.0 | -Client | +Server | 4 | -Feb 15, 2024 22:13:06.439 | +Feb 15, 2024 22:12:35.786 |
| 10.10.10.5 | 10.10.10.15 | -Server | +10.10.10.5 | +Client | 4 | -Feb 15, 2024 22:13:06.439 | +Feb 15, 2024 22:12:37.806 |
| 216.239.35.0 | +10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:13:06.489 | +Feb 15, 2024 22:12:37.806 | |
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:13:08.492 | +Feb 15, 2024 22:12:39.856 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:13:08.494 | +Feb 15, 2024 22:12:39.856 | ||
| 216.239.35.0 | 10.10.10.15 | -Server | +10.10.10.5 | +Client | 4 | -Feb 15, 2024 22:13:08.543 | +Feb 15, 2024 22:12:41.931 |
| 10.10.10.5 | 10.10.10.15 | -216.239.35.12 | -Client | +Server | 4 | -Feb 15, 2024 22:13:40.310 | +Feb 15, 2024 22:12:41.932 |
| 216.239.35.12 | 10.10.10.15 | -Server | +10.10.10.5 | +Client | 4 | -Feb 15, 2024 22:13:40.357 | +Feb 15, 2024 22:12:43.954 |
| 10.10.10.5 | 10.10.10.15 | -216.239.35.4 | -Client | +Server | 4 | -Feb 15, 2024 22:13:40.512 | +Feb 15, 2024 22:12:43.956 |
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:13:40.536 | +Feb 15, 2024 22:13:06.439 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:13:40.542 | +Feb 15, 2024 22:13:06.439 | ||
| 216.239.35.4 | 10.10.10.15 | -Server | +10.10.10.5 | +Client | 4 | -Feb 15, 2024 22:13:40.574 | +Feb 15, 2024 22:13:08.492 |
| 216.239.35.0 | +10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:13:40.583 | +Feb 15, 2024 22:13:08.494 | |
| 10.10.10.15 | -216.239.35.8 | +10.10.10.5 | Client | 4 | -Feb 15, 2024 22:13:40.714 | +Feb 15, 2024 22:13:40.536 | |
| 216.239.35.8 | +10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:13:40.764 | +Feb 15, 2024 22:13:40.541 | |
| 10.10.10.15 | -216.239.35.0 | +10.10.10.5 | Client | 4 | -Feb 15, 2024 22:13:40.917 | +Feb 15, 2024 22:13:48.274 | |
| 216.239.35.0 | +10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:13:40.965 | +Feb 15, 2024 22:13:48.277 | |
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:13:48.274 | +Feb 15, 2024 22:14:12.619 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:13:48.277 | +Feb 15, 2024 22:14:12.624 | ||
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:14:12.619 | +Feb 15, 2024 22:14:44.702 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:14:12.624 | +Feb 15, 2024 22:14:44.703 | ||
| 216.239.35.0 | +10.10.10.15 | +10.10.10.5 | +Client | +4 | +Feb 15, 2024 22:14:53.026 | +||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:14:12.668 | +Feb 15, 2024 22:14:53.029 | ||
| 10.10.10.15 | -216.239.35.12 | +10.10.10.5 | Client | 4 | -Feb 15, 2024 22:14:44.515 | +Feb 15, 2024 22:15:16.786 | |
| 216.239.35.12 | +10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:14:44.562 | +Feb 15, 2024 22:15:16.791 | |
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:14:44.702 | +Feb 15, 2024 22:15:48.884 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:14:44.704 | +Feb 15, 2024 22:15:48.887 | ||
| 10.10.10.15 | -216.239.35.4 | +10.10.10.5 | Client | 4 | -Feb 15, 2024 22:14:45.158 | +Feb 15, 2024 22:15:57.829 | |
| 216.239.35.4 | +10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:14:45.219 | +Feb 15, 2024 22:15:57.829 | |
| 10.10.10.15 | -216.239.35.0 | +10.10.10.5 | Client | 4 | -Feb 15, 2024 22:14:45.359 | +Feb 15, 2024 22:16:20.970 | |
| 216.239.35.0 | +10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:14:45.406 | +Feb 15, 2024 22:16:20.970 | |
| 10.10.10.15 | -216.239.35.0 | +10.10.10.5 | Client | 4 | -Feb 15, 2024 22:14:45.707 | +Feb 15, 2024 22:16:54.054 | |
| 216.239.35.0 | +10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:14:45.755 | +Feb 15, 2024 22:16:54.054 | |
| 10.10.10.15 | -216.239.35.8 | +10.10.10.5 | Client | 4 | -Feb 15, 2024 22:14:45.980 | +Feb 15, 2024 22:17:02.738 | |
| 216.239.35.8 | +10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:14:46.027 | +Feb 15, 2024 22:17:02.740 | |
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:14:53.026 | +Feb 15, 2024 22:17:26.136 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:14:53.029 | +Feb 15, 2024 22:17:26.139 | ||
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:15:16.786 | +Feb 15, 2024 22:17:59.293 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:15:16.791 | +Feb 15, 2024 22:17:59.293 | ||
| 10.10.10.15 | -216.239.35.0 | +10.10.10.5 | Client | 4 | -Feb 15, 2024 22:15:18.794 | +Feb 15, 2024 22:18:07.242 | |
| 216.239.35.0 | +10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:15:18.843 | +Feb 15, 2024 22:18:07.242 | |
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:15:48.884 | +Feb 15, 2024 22:18:32.379 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:15:48.887 | +Feb 15, 2024 22:18:32.379 | ||
| 10.10.10.15 | -216.239.35.12 | +10.10.10.5 | Client | 4 | -Feb 15, 2024 22:15:49.063 | +Feb 15, 2024 22:20:06.908 | |
| 216.239.35.12 | +10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:15:49.110 | +Feb 15, 2024 22:20:06.908 | |
| 10.10.10.15 | -216.239.35.4 | +10.10.10.5 | Client | 4 | -Feb 15, 2024 22:15:49.462 | +Feb 15, 2024 22:20:08.936 | |
| 216.239.35.4 | +10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:15:49.509 | +Feb 15, 2024 22:20:08.937 | |
| 10.10.10.15 | -216.239.35.0 | +10.10.10.5 | Client | 4 | -Feb 15, 2024 22:15:50.127 | +Feb 15, 2024 22:20:10.974 | |
| 216.239.35.0 | +10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:15:50.175 | +Feb 15, 2024 22:20:10.974 | |
| 10.10.10.15 | -216.239.35.8 | +10.10.10.5 | Client | 4 | -Feb 15, 2024 22:15:51.107 | +Feb 15, 2024 22:20:12.998 | |
| 216.239.35.8 | +10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:15:51.154 | +Feb 15, 2024 22:20:12.999 | |
| 10.10.10.15 | -216.239.35.0 | +10.10.10.5 | Client | 4 | -Feb 15, 2024 22:15:51.890 | +Feb 15, 2024 22:20:59.581 | |
| 216.239.35.0 | +10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:15:51.938 | +Feb 15, 2024 22:20:59.582 | |
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:15:57.829 | +Feb 15, 2024 22:21:34.063 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:15:57.829 | +Feb 15, 2024 22:21:34.063 | ||
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:16:20.970 | +Feb 15, 2024 22:21:36.121 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:16:20.971 | +Feb 15, 2024 22:21:36.121 | ||
| 10.10.10.15 | -216.239.35.0 | +10.10.10.5 | Client | 4 | -Feb 15, 2024 22:16:24.975 | +Feb 15, 2024 22:21:38.176 | |
| 216.239.35.0 | +10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:16:25.023 | +Feb 15, 2024 22:21:38.176 | |
| 10.10.10.15 | -216.239.35.4 | +10.10.10.5 | Client | 4 | -Feb 15, 2024 22:16:53.677 | +Feb 15, 2024 22:21:40.277 | |
| 216.239.35.4 | +10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:16:53.739 | +Feb 15, 2024 22:21:40.277 | |
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:16:54.054 | +Feb 15, 2024 22:22:05.704 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:16:54.054 | +Feb 15, 2024 22:22:05.706 | ||
| 10.10.10.15 | -216.239.35.12 | +10.10.10.5 | Client | 4 | -Feb 15, 2024 22:16:54.276 | +Feb 15, 2024 22:22:45.469 | |
| 216.239.35.12 | +10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:16:54.322 | +Feb 15, 2024 22:22:45.470 | |
| 10.10.10.15 | -216.239.35.0 | +10.10.10.5 | Client | 4 | -Feb 15, 2024 22:16:54.593 | +Feb 15, 2024 22:23:09.826 | |
| 216.239.35.0 | +10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:16:54.648 | +Feb 15, 2024 22:23:09.828 | |
| 10.10.10.15 | -216.239.35.8 | +10.10.10.5 | Client | 4 | -Feb 15, 2024 22:16:55.435 | +Feb 15, 2024 22:23:50.337 | |
| 216.239.35.8 | +10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:16:55.481 | +Feb 15, 2024 22:23:50.343 | |
| 10.10.10.15 | -216.239.35.0 | +10.10.10.5 | Client | 4 | -Feb 15, 2024 22:16:57.059 | +Feb 15, 2024 22:24:13.945 | |
| 216.239.35.0 | +10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:16:57.107 | +Feb 15, 2024 22:24:13.946 | |
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:17:02.738 | +Feb 15, 2024 22:24:54.876 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:17:02.740 | +Feb 15, 2024 22:24:54.877 | ||
| 10.10.10.15 | 10.10.10.5 | Client | 4 | -Feb 15, 2024 22:17:26.136 | +Feb 15, 2024 22:25:59.000 | ||
| 10.10.10.5 | 10.10.10.15 | Server | 4 | -Feb 15, 2024 22:17:26.139 | +Feb 15, 2024 22:25:59.001 |