Defender API: Features, Functionality, and Usage

Defender API: Features, Functionality, and Usage

The Lumu Defender API uses HTTP requests and returns JSON responses. This documentation outlines the required endpoints, request parameters, sample JSON payloads, and expected response messages.

Idea
The Defender API provides a framework for maximizing the value of your existing cybersecurity investments by integrating real-time data on confirmed compromise instances with your current security stack, enabling unified automation of mitigation and remediation efforts. To get started, refer to our comprehensive documentation

The Defender API is language-agnostic and supports both incoming and outgoing data. All API calls are secured with HTTPS (SSL/TLS) and authenticated using API keys.

Access and Authentication

The Defender API requires each client to use a unique API key, referred to in this documentation as {company-key}. This key is available in the Integrations section of the Lumu Portal and is managed directly by your organization's administrators.

Alert The revocation process generates a new Defender API key. This action cannot be undone and will cause your existing API integrations to stop working until you update your integrations with the new key. This option should be used only in specific scenarios, such as when the current API key is compromised or must be rotated due to security policies.

The ability to integrate Lumu with your security stack via the Defender API is included in the Lumu Defender subscription. This tier enables seamless integration of Lumu’s real-time analysis into your existing security tools, helping you mitigate and remediate compromise incidents quickly and accurately.

Info
Lumu Insights customers have access to the Defender API, though with certain limitations. In this document, resources available to Insights accounts are marked with the tag  [Available for Insights].
You can access the API using various methods, including:
  1. Applications that support REST calls, such as Postman or Insomnia
  2. Programming languages or command-line tools, like Python or curl
  3. Third-party platforms that support REST integration, such as Fortinet, QRadar, or Splunk

Choose the method that best fits your organization’s needs and environment.

Postman Tutorial

Lumu provides a Postman collection, which is a structured set of pre-configured HTTP requests grouped together to test and document an API. Collections can include variables, authentication details, test scripts, and environment settings to streamline development and collaboration. You can use this collection to test the Lumu Defender API.

Resources overview

The following resources are accessible via the Lumu Defender API. These are familiar terms that can be traced to their counterpart in the Lumu Portal.

Resource
Description
administration
Used to retrieve data on users and labels.
incidents
Used to subscribe to incident updates, retrieve incident data, and manage incident statuses.
adversarial-activity
Used to retrieve all adversarial activity detected across your network perimeter.
spambox
Used to retrieve adversarial activity associated with your organization’s email intelligence.

Syntax, pagination and date format

General Syntax

Info
The public host of the Lumu API is: https://defender.lumu.io

All API endpoints are relative to the base URL. For example, since the base URL is URL of https://defender.lumu.io/api , the /incidents endpoint would be https://defender.lumu.io/api/incidents

Pagination

Paging results can be controlled using query string parameters. This feature is available for endpoints that return more data than can fit in a single response.

Query Params
Data Type
Description
page
integer (optional)
Page number of the result set (default: 1).
items
integer (optional)
Limit the number of results per page (default: 50, max: 100)
hints
String, array or JSON object
(optional)

An opaque object used to optimize result pagination. It can be a string, array, or JSON object.

Example of URI that includes paging parameters: https://defender.lumu.io/api/administration/labels?key={company-key}&items=20&page=3

Paginated queries deliver pagination info at the end of each query, for example:

Example
"paginationInfo": {
     "total": 20,
     "page": 2, 
     "items": 2, 
     "next": 3, 
     "prev": 1
}
 Note that "prev" or "next" may not be returned if there is no previous or next page; "total" may appear in some specific services, such as for the administration endpoint.

Date Format

The Defender API uses a standardized date and time format to ensure consistency and interoperability with third-party applications. All date and time values are returned in Coordinated Universal Time (UTC) and follow the formats defined by RFC 3339 and ISO 8601 (YYYY-MM-DDTHH:mm:ss:sssZ). For example, 2021-03-21T18:25:43.000Z , where the trailing Z indicates that the time zone is UTC (GMT).

You can submit queries to the Defender API using date and time values in your local time zone. However, note that the API will automatically convert all time zone values to UTC.

The following are examples of date and time formats currently accepted by the Defender API:
Example
"2025-02-23T10:15:30.00-05:00[Europe/Paris]"
"2025-02-23T16:15:30.234+01:00[America/Bogota]"
"2025-02-23T16:15:30.234+01:00"
"2025-12-23T16:15:30.235"
"2025-02-23T10:15:30"
All the dates and times provided in the example above will be converted automatically by the Defender API to UTC format. Example: "2025-02-23T15:15:30.234Z"

When using the fromDate and ToDate parameters in your queries, ensure that the specified date range does not exceed 31 calendar days and is not older than 180 calendar days from the current date.

The following example will return error 400 as it includes a time range greater than 31 days:

Example
{
  "fromDate": "2025-02-0923T15:15:30.234Z",
  "toDate": "2025-03-23T15:15:30.234Z"
}
Queries that include the hours parameter are limited to a maximum of 767 hours (approximately 30 days) prior to the current date and time. The following example shows a query where the  hours value exceeds this limit, which will result in a 400 Bad Request error.
Example
{
  "hours": 800,
}

Error Responses

The Lumu API uses standard HTTP features and standard HTTP status codes to indicate errors.

HTTP Code
Description
200
OK Everything worked as expected. The expected data was returned.
400
Bad Request  Client-side error status. Verify malformed request syntax, invalid request message parameters, etc.
401
Unauthorized  The provided API key is not valid.
403
Forbidden  Your company does not have sufficient privileges to access the API resource.
500
Internal server error  Our application server encountered a problem, try again later and if the problem persist, please let us know.

Rate Limits

Info
The default rate limits for API calls are 50 requests per minute and 10,000 requests per day.

For queries that return listed results, you can specify the maximum number of items to be returned using the following query string parameter:

Query Params
Data Type
Description
max-items
Integer (optional)
The maximum number of items to be returned (default: 10, max: 10240).

Example: https://defender.lumu.io/resources/administration/labels?key={company-key}&items=20&page=3&max-items=50
Notes The response examples in this document are not exhaustive and do not cover all possible parameter configurations or operations. They are intended to illustrate the basic structure, formatting, and labeling of the data returned by the API. Actual responses may include additional parameters depending on the context of the request.

Working with Users and Labels

The /administration endpoints contain information about labels and users of the company. Labels help identify and classify compromise distribution across your infrastructure.

Info
Consult our documentation to get started with Labels and Accounts.

Retrieve labels  [Available for Insights]

Get a paginated list of all the labels created for the company and its details such as id, name and business relevance. The items are sorted by the label id in ascending order.

GET Request
GET Request
GET https://defender.lumu.io/api/administration/labels?key={company-key}

Query Params


Description
key
Your company's unique API key, available in the Lumu Portal.
page
Page number of the result set (default: 1)
items
Limit the number of results per page (default: 50, max: 100)

Example Request
curl --location --request GET 'https://defender.lumu.io/api/administration/labels?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3&page=1&items=50' \ --data-raw ''

Example Response
{
    "labels": [
        {
            "id": 1, 
            "name": "Sales", 
            "relevance": 3
        }, 
        {
            "id": 2, 
            "name": "Customers", 
            "relevance": 1
        }, 
    ],
   "paginationInfo": {
        "page": 2, 
        "items": 2, 
        "next": 3, 
        "prev": 1
    }
}  

Additional response definitions
Parameter
Description
relevance
Business relevance. Companies define label relevance according to their business reality for faster data-supported decisions. The possible values are 1 (low), 2 (medium) and 3 (high).

Retrieve a specific label  [Available for Insights]

Get details such as id, name and business relevance from a specific label.

GET Request
GET Request
GET https://defender.lumu.io/api/administration/labels/{label-id}?key={company-key}
Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.

Example Request
curl --location --request GET 'https://defender.lumu.io/api/administration/labels/1?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3' \ --data-raw ''

Example Response
{
     "id": 1, 
     "name": "Sales", 
     "relevance": 3
}

Retrieve users  [Available for Insights]

Get a paginated list of all the users registered in the company and their details. The items are sorted by the user id in ascending order.

GET Request
GET Request
GET https://defender.lumu.io/api/administration/users?key={company-key}
Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.
page
Page number of the result set (default: 1)
items
Limit the number of results per page (default: 50, max: 100)

Example Request
curl --location --request GET 'https://defender.lumu.io/api/administration/users?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3&page=1&items50' \ --data-raw ''
Example Response
{
    "users": [
        {
            "id": 1, 
            "role": "admin", 
            "email": "john@company.com", 
            "name": "John Doe", 
            "time_zone": "Etc/UTC",
"deactivated": false
        }, 
        {
            "id": 2, 
            "role": "admin", 
            "email": "sara@company.com", 
            "name": "Sara Green", 
            "time_zone": "Etc/UTC",
"deactivated": true
        }
    ], 
    "paginationInfo": {
        "page": 2, 
        "items": 2, 
        "next": 3, 
        "prev": 1
    }
}

Additional response definitions

Parameter
Description
deactivated
User account status. The two possible values are false(user is active) and true(user is deactivated). A deactivated account  cannot login in to the Lumu Portal.

Retrieve a specific user  [Available for Insights]

Get specific user details such as id, name, and role.

GET Request
GET Request
GET https://defender.lumu.io/api/administration/users/{user-id}?key={company-key}
Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.

Example Request
curl --location --request GET 'https://defender.lumu.io/api/administration/users/2?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3' \ --data-raw ''' 
Example Response
{
      "id": 2,
      "role": "admin", 
      "email": "sara@company.com", 
      "name": "Sara Green", 
      "time_zone": "Etc/UTC",
      "deactivated": false
}

Working with Incidents [NEW]

Notes This endpoint replaces the legacy /incidents path, which is now deprecated. While legacy services will remain active, we strongly recommend routing all new integrations through this endpoint.

The /secops/incidents contain extensive information about incidents and security events of your company. This endpoint supports the new incident detections (Login Brute Force, Unusual Login, Network Brute Force, etc.) and provides extended information about the security events of each type of incident detection. 

Info
To get started with Incidents, consult our documentation.

Grouping logic

The API groups related security events into compact, manageable incidents to help security operators focus on the most relevant information during investigation, instead of manually sorting through large volumes of raw data. 
The API uses specific identifiers to systematically organize incoming security events. The incident_id is always present across all detections, whereas events_grouping_id and episode_id are conditional elements, present only if they make sense for the specific incident type. 
  1. Incident grouping (incident_id): Determines the top-level incident boundary. All events sharing this ID are aggregated into the same incident. A common baseline for this parameter is the incident type or adversary type. This ID is always present. 
  2. Events grouping (events_grouping_id): Organizes events inside an incident into meaningful collections to make large incidents more manageable for investigation. Common events grouping criteria include: 
    1. Endpoint (device ID or hostname)
    2. User account 
    3. Destination (IP, domain)
  3. Episodes (episode_id): Tracks a single, continuous instance of malicious behavior, for example, a concentrated series of authentication attempts against a specific account within a time window (a Login Brute Force incident). Due to its nature, this identifier will only show up when it makes sense for the incident. 
Notes The grouping logic is strictly defined by the Defender API and it cannot be changed.

Retrieving grouping ids

To dig into the data provided by the security events provided by the API, you will need to to obtain the incident_id and the events_grouping_id. You can obtain these values using the following endpoint of the API: 
  1. incidentId: You can retrieve this value using the following endpoints. 
    1. Get all incidents
    2. Get open incidents
  2. eventsGroupingId: Having obtained the incidentId, you can obtain the eventsGroupingId of that specific incident by using the following endpoint.
    1. Get incident events grouping
With both the incidentId and eventsGroupingId in hand, you can then pass these values into the Get security event details endpoint to retrieve the raw data of the specific event within the incident. Alternatively, you can use the Get incident security events details endpoint to consult the data of all the security events within a single incident. 

General considerations

Incident statuses and types may vary over time. Therefore, any implementation using endpoints that accept these as query parameters should account for possible changes.

The following are the current values for these parameters:

  • status:  "open", "muted", "closed" 
  • event-types:  "malicious-infrastructure", "network-brute-force", "login-brute-force", "unusual-login", "cloud-exfiltration", "dns-tunneling", "anonymized-login"
Notes All previous incidents (C&C, Malware, DGA, Mining, Spam, Phishing) fall under the new malicious_infrastructure incident type.

User identification considerations

To associate a specific user with POST API actions (such as mark as read, mute, unmute, and close), include the  Lumu-User-Id header in the request, using the user's ID as its value.
Notes Example:  Lumu-User-Id:2. This parameter is optional. If it is not included, the action will not be associated with any specific user. For example, if the query header includes the ID 2, which corresponds to the user "Integration user", the incident log will appear as shown in the following image.

Get all incidents  [Available for Insights]

Get a paginated list of incidents for the company. The items are listed by the most recent.
POST Request
POST Request
POST https://defender.lumu.io/api/secops/incidents/all?key={company-key}&page={n}&items={n}

Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.
page
Page number of the result set (default: 1)
items
Limit the number of results per page (default: 50, max: 100)

Body parameters

Name
Data Type
Description
fromDate
date-time (optional)
Search start date. The default value is 7 days before the current date. Example: "2021-04-01T14:40:14.939Z"
toDate
date-time (optional)
Search end date. The default value is the current date. Example: "2021-04-07T14:40:14.939Z"
status
array (optional)
Incident status. If not specified, all objects are returned. Example: "open", "muted", "closed"
adversary-types
array (optional)
Adversary types. If not specified, all objects are returned. Examples: "Unusual Login", "Login Brute Force", "Network Brute Force"
labels
array (optional)
Label IDs — You can use the Labels API call beforehand to retrieve available label IDs and their corresponding names. If not specified, all objects are returned. Example: 2, 3, 5
Example Request
curl --location --request POST 'https://defender.lumu.io/api/secops/incidents/all?key=c522c290-fd61-11f0-bcb7-57f3fdca792c&page=1&items=50'
Example Response (200 - Success)
{
"items": [
{
"id": "d3db9100-fd92-11f0-a001-9d0905147b8a",
"timestamp": "2026-01-30T04:19:10.992Z",
"status": "open",
"statusTimestamp": "2026-01-30T04:19:10.992Z",
"incidentGroupingFields": {
"src_ip": "192.168.5.22",
"src_label": "2"
},
"detectorType": "network-access-abuse-detector",
"incidentType": "network-brute-force",
"totalEvents": 10,
"firstEvent": {
"timestamp": "2026-01-30T04:14:00Z",
"id": "1a74cc40-fd92-11f0-83bb-9a0ae04d690a"
},
"lastEvent": {
"timestamp": "2026-01-30T04:16:59.820Z",
"id": "859e9320-fd92-11f0-83bb-9a0ae04d690a"
},
"adversaryTypes": [
"Network Brute Force"
],
"description": "Potential brute-force activity or protocol abuse.",
"environmentStats": [
{
"environment": {
"id": "2",
"type": "network-label"
},
"count": 10
}
],
"counts": {
"endpointTargetsCount": 1,
"userTargetsCount": 0,
"otherTargetsCount": 0,
"totalTargetsCount": 1,
"offendersCount": 1
},
"offendersSamples": [
{
"type": "network-endpoint",
"name": "192.168.5.22",
"endpoint_ip": "192.168.5.22",
"label": "2"
}
],
"targetsSamples": [
{
"type": "network-endpoint",
"name": "192.168.1.20",
"endpoint_ip": "192.168.1.20",
"label": "2"
}
],
"unread": true,
"hasPlaybackEvents": false,
"autopilotOperation": null,
"integrationsThatResponded": [],
"builtInResponseTypes": [],
"accumulators": [
{
"type": "int_accumulator",
"key": "packages_sent",
"value": 196831
},
{
"type": "int_accumulator",
"key": "elapsed_time_ms",
"value": 179100
},
{
"type": "int_accumulator",
"key": "requests_sent",
"value": 2000
},
{
"type": "int_accumulator",
"key": "duration_ms",
"value": 14095516
},
{
"type": "int_accumulator",
"key": "bytes_sent",
"value": 13777291
}
],
"eventsGroupingsCount": 1
},
{
"id": "b0c04ad0-fd92-11f0-a001-9d0905147b8a",
"timestamp": "2026-01-30T04:18:12.093Z",
"status": "open",
"statusTimestamp": "2026-01-30T04:18:12.093Z",
"incidentGroupingFields": {
"domain": "QA",
"user_name": "rfandino"
},
"detectorType": "unusual-login-detector",
"incidentType": "unusual-login",
"totalEvents": 2,
"firstEvent": {
"timestamp": "2026-01-29T04:18:00Z",
"id": "b0b61d6c-fd92-11f0-b960-1e50caf39e4c"
},
"lastEvent": {
"timestamp": "2026-01-29T09:18:00Z",
"id": "b0b610ec-fd92-11f0-b960-1e50caf39e4c"
},
"adversaryTypes": [
"Unusual Login"
],
"description": "Logged in at an unusual time or on an uncommon day",
"environmentStats": [],
"counts": {
"endpointTargetsCount": 0,
"userTargetsCount": 1,
"otherTargetsCount": 0,
"totalTargetsCount": 1,
"offendersCount": 1
},
"offendersSamples": [
{
"type": "network-endpoint",
"endpoint_ip": "192.168.1.100",
"name": "WORKSTATION1"
}
],
"targetsSamples": [
{
"type": "user",
"realm": "QA",
"name": "rfandino"
}
],
"unread": true,
"hasPlaybackEvents": false,
"autopilotOperation": null,
"integrationsThatResponded": [],
"builtInResponseTypes": [],
"accumulators": [],
"eventsGroupingsCount": 0
},
{
"id": "aab11570-fd92-11f0-a001-9d0905147b8a",
"timestamp": "2026-01-30T04:18:01.927Z",
"status": "open",
"statusTimestamp": "2026-01-30T04:18:01.927Z",
"incidentGroupingFields": {
"domain": "testJor.lumu"
},
"detectorType": "login-brute-force-detector",
"incidentType": "login-brute-force",
"totalEvents": 1,
"firstEvent": {
"timestamp": "2026-01-30T04:08:00.076Z",
"id": "43f5e8c0-fd91-11f0-b586-d64521420cb0"
},
"lastEvent": {
"timestamp": "2026-01-30T04:08:00.076Z",
"id": "43f5e8c0-fd91-11f0-b586-d64521420cb0"
},
"adversaryTypes": [
"Login Brute Force"
],
"description": "Login Brute Force Activity",
"environmentStats": [
{
"environment": {
"id": "testJor.lumu",
"type": "active-directory"
},
"count": 1
}
],
"counts": {
"endpointTargetsCount": 0,
"userTargetsCount": 1,
"otherTargetsCount": 0,
"totalTargetsCount": 1,
"offendersCount": 1
},
"offendersSamples": [
{
"type": "network-endpoint",
"name": "WIN-4274QRK4U73",
"endpoint_ip": "192.168.1.100",
"_id": "WIN-4274QRK4U73"
}
],
"targetsSamples": [
{
"type": "user",
"realm": "testJor.lumu",
"name": "user450",
"_id": "testJor.lumu:S-1-5-21-887190572-887190572-24807815-1001"
}
],
"unread": true,
"hasPlaybackEvents": false,
"autopilotOperation": null,
"integrationsThatResponded": [],
"builtInResponseTypes": [],
"accumulators": [
{
"type": "int_accumulator",
"key": "failed_attempts",
"value": 80
},
{
"type": "int_accumulator",
"key": "elapsed_time_ms",
"value": 3000
}
],
"eventsGroupingsCount": 1
},
{
"id": "91ab8140-fd5c-11f0-bcb7-57f3fdca792c",
"timestamp": "2026-01-29T21:50:47.124Z",
"status": "open",
"statusTimestamp": "2026-01-29T21:50:47.124Z",
"incidentGroupingFields": {
"adversary": "www.casaducale.it"
},
"detectorType": "activity",
"incidentType": "malicious-infrastructure",
"totalEvents": 2,
"firstEvent": {
"timestamp": "2026-01-29T08:15:51.125Z",
"id": "b9622850-fcea-11f0-afea-8197aef5e7a7"
},
"lastEvent": {
"timestamp": "2026-01-29T09:15:51.125Z",
"id": "1b269050-fcf3-11f0-afeb-8197aef5e7a7"
},
"adversaryTypes": [
"Phishing"
],
"description": "Phishing domain",
"environmentStats": [
{
"environment": {
"id": "13",
"type": "network-label"
},
"count": 2
}
],
"counts": {
"endpointTargetsCount": 1,
"userTargetsCount": 0,
"otherTargetsCount": 0,
"totalTargetsCount": 1,
"offendersCount": 1
},
"offendersSamples": [
{
"_id": "www.casaducale.it",
"type": "network-location",
"value": "www.casaducale.it"
}
],
"targetsSamples": [
{
"_id": "Acme Gateway|13",
"type": "network-endpoint",
"label": "13",
"name": "Acme Gateway",
"endpoint_ip": "190.27.75.165"
}
],
"unread": false,
"hasPlaybackEvents": false,
"lastAssignee": 1,
"autopilotOperation": null,
"integrationsThatResponded": [],
"builtInResponseTypes": [],
"accumulators": [
{
"type": "int_accumulator",
"key": "4|21",
"value": 2
}
],
"eventsGroupingsCount": 1
}
],
"timestamp": "2026-01-30T19:58:15.954Z",
"paginationInfo": {
"page": 1,
"items": 50,
"count": 4
}
}

Get open incidents [Available for Insights]

Get a paginated list of all open incidents of the company.
POST Request
POST Request
POST https://defender.lumu.io/api/secops/incidents/open?key={company-key}&page={n}&items={n}

Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.
page
Page number of the result set (default: 1)
items
Limit the number of results per page (default: 50, max: 100)

Body parameters

Name Data Type Description
adversary-types array (optional) Adversary types. If not specified, all objects are returned. Examples: "Unusual Login", "Login Brute Force", "Network Brute Force"
labels array (optional) Label IDs — You can use the Labels API call beforehand to retrieve available label IDs and their corresponding names. If not specified, all objects are returned. Example: 2, 3, 5
Example Request
curl --location --request POST 'https://defender.lumu.io/api/secops/incidents/open?key=c522c290-fd61-11f0-bcb7-57f3fdca792c&page=1&items=50'
Example Response (200 - Success)
{
"items": [
{
"id": "e99fa020-fd57-11f0-9776-41104e67f3e4",
"timestamp": "2026-01-29T21:17:27.202Z",
"status": "open",
"statusTimestamp": "2026-01-29T21:17:27.202Z",
"incidentGroupingFields": {
"adversary": "twitterlays.com"
},
"detectorType": "activity",
"incidentType": "malicious-infrastructure",
"totalEvents": 2,
"firstEvent": {
"timestamp": "2025-01-29T08:20:51.125Z",
"id": "f36bc650-de19-11ef-afec-8197aef5e7a7"
},
"lastEvent": {
"timestamp": "2025-01-29T08:20:51.125Z",
"id": "f36bc650-de19-11ef-afec-8197aef5e7a7"
},
"adversaryTypes": [
"Malware"
],
"description": "Malware related",
"environmentStats": [
{
"environment": {
"id": "4",
"type": "network-label"
},
"count": 2
}
],
"counts": {
"endpointTargetsCount": 1,
"userTargetsCount": 0,
"otherTargetsCount": 0,
"totalTargetsCount": 1,
"offendersCount": 1
},
"offendersSamples": [
{
"_id": "twitterlays.com",
"type": "network-location",
"value": "twitterlays.com"
}
],
"targetsSamples": [
{
"_id": "FW_SGM_DC_01|4",
"type": "network-endpoint",
"label": "4",
"name": "FW_SGM_DC_01",
"endpoint_ip": "10.0.0.46"
}
],
"unread": false,
"hasPlaybackEvents": false,
"lastAssignee": 1,
"autopilotOperation": null,
"integrationsThatResponded": [],
"builtInResponseTypes": [],
"accumulators": [
{
"type": "int_accumulator",
"key": "4|21",
"value": 2
}
],
"eventsGroupingsCount": 1
}
],
"timestamp": "2026-01-30T20:09:49.861Z",
"paginationInfo": {
"page": 1,
"items": 50,
"count": 1
}
}

Get muted incidents [Available for Insights]

Get a paginated list of all muted incidents of the company.
POST Request
POST Request
POST https://defender.lumu.io/api/secops/incidents/muted?key={company-key}&page={n}&items={n}

Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.
page
Page number of the result set (default: 1)
items
Limit the number of results per page (default: 50, max: 100)

Body parameters
Name
Data Type
Description
adversary-types
array (optional)
Adversary types. If not specified, all objects are returned. Examples: "Unusual Login", "Login Brute Force", "Network Brute Force"
labels
array (optional)
Label IDs — You can use the Labels API call beforehand to retrieve available label IDs and their corresponding names. If not specified, all objects are returned. Example: 2, 3, 5

Example Request
curl --location --request POST 'https://defender.lumu.io/api/secops/incidents/muted?key=c522c290-fd61-11f0-bcb7-57f3fdca792c&page=1&items=50'
Example Response (200 - Success)
{
"items": [
{
"id": "91ab8140-fd5c-11f0-bcb7-57f3fdca792c",
"timestamp": "2026-01-29T21:50:47.124Z",
"status": "muted",
"statusTimestamp": "2026-01-29T21:50:47.124Z",
"incidentGroupingFields": {
"adversary": "www.casaducale.it"
},
"detectorType": "activity",
"incidentType": "malicious-infrastructure",
"totalEvents": 2,
"firstEvent": {
"timestamp": "2026-01-29T08:15:51.125Z",
"id": "b9622850-fcea-11f0-afea-8197aef5e7a7"
},
"lastEvent": {
"timestamp": "2026-01-29T09:15:51.125Z",
"id": "1b269050-fcf3-11f0-afeb-8197aef5e7a7"
},
"adversaryTypes": [
"Phishing"
],
"description": "Phishing domain",
"environmentStats": [
{
"environment": {
"id": "13",
"type": "network-label"
},
"count": 2
}
],
"counts": {
"endpointTargetsCount": 1,
"userTargetsCount": 0,
"otherTargetsCount": 0,
"totalTargetsCount": 1,
"offendersCount": 1
},
"offendersSamples": [
{
"_id": "www.casaducale.it",
"type": "network-location",
"value": "www.casaducale.it"
}
],
"targetsSamples": [
{
"_id": "Acme Gateway|13",
"type": "network-endpoint",
"label": "13",
"name": "Acme Gateway",
"endpoint_ip": "190.27.75.165"
}
],
"unread": false,
"hasPlaybackEvents": false,
"lastAssignee": 1,
"autopilotOperation": null,
"integrationsThatResponded": [],
"builtInResponseTypes": [],
"accumulators": [
{
"type": "int_accumulator",
"key": "4|21",
"value": 2
}
],
"eventsGroupingsCount": 1
}
],
"timestamp": "2026-01-30T20:14:00.515Z",
"paginationInfo": {
"page": 1,
"items": 50,
"count": 1
}
}

Get closed incidents [Available for Insights]

Get a paginated list of all closed incidents of the company.
POST Request
POST Request
POST https://defender.lumu.io/api/secops/incidents/closed?key={company-key}&page={n}&items={n}

Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.
page
Page number of the result set (default: 1)
items
Limit the number of results per page (default: 50, max: 100)

Body parameters
Name Data Type Description
adversary-types array (optional) Adversary types. If not specified, all objects are returned. Examples: "Unusual Login", "Login Brute Force", "Network Brute Force"
labels array (optional) Label IDs — You can use the Labels API call beforehand to retrieve available label IDs and their corresponding names. If not specified, all objects are returned. Example: 2, 3, 5
Example Request
curl --location --request POST 'https://defender.lumu.io/api/secops/incidents/closed?key=c522c290-fd61-11f0-bcb7-57f3fdca792c&page=1&items=50'
Example Response (200 - Success)
{
    "items": [
        {
            "id": "73986b40-fd5d-11f0-bcb7-57f3fdca792c",
            "timestamp": "2026-01-29T21:57:06.164Z",
            "status": "closed",
            "statusTimestamp": "2026-01-29T21:57:06.164Z",
            "incidentGroupingFields": {
                "src_ip": "192.168.5.22",
                "src_label": "2"
            },
            "detectorType": "network-access-abuse-detector",
            "incidentType": "network-brute-force",
            "totalEvents": 20,
            "firstEvent": {
                "timestamp": "2026-01-29T21:49:00Z",
                "id": "51c88640-fd5c-11f0-900d-fef7b4b0b2ca"
            },
            "lastEvent": {
                "timestamp": "2026-01-29T21:54:59.640Z",
                "id": "2820a7e0-fd5d-11f0-900d-fef7b4b0b2ca"
            },
            "adversaryTypes": [
                "Network Brute Force"
            ],
            "description": "Potential brute-force activity or protocol abuse.",
            "environmentStats": [
                {
                    "environment": {
                        "id": "2",
                        "type": "network-label"
                    },
                    "count": 20
                }
            ],
            "counts": {
                "endpointTargetsCount": 1,
                "userTargetsCount": 0,
                "otherTargetsCount": 0,
                "totalTargetsCount": 1,
                "offendersCount": 1
            },
            "offendersSamples": [
                {
                    "type": "network-endpoint",
                    "name": "192.168.5.22",
                    "endpoint_ip": "192.168.5.22",
                    "label": "2"
                }
            ],
            "targetsSamples": [
                {
                    "type": "network-endpoint",
                    "name": "192.168.1.20",
                    "endpoint_ip": "192.168.1.20",
                    "label": "2"
                }
            ],
            "unread": false,
            "hasPlaybackEvents": false,
            "lastAssignee": 1,
            "autopilotOperation": null,
            "integrationsThatResponded": [],
            "builtInResponseTypes": [],
            "accumulators": [
                {
                    "type": "int_accumulator",
                    "key": "bytes_sent",
                    "value": 27068232
                },
                {
                    "type": "int_accumulator",
                    "key": "requests_sent",
                    "value": 4000
                },
                {
                    "type": "int_accumulator",
                    "key": "duration_ms",
                    "value": 27788981
                },
                {
                    "type": "int_accumulator",
                    "key": "packages_sent",
                    "value": 401023
                },
                {
                    "type": "int_accumulator",
                    "key": "elapsed_time_ms",
                    "value": 358200
                }
            ],
            "eventsGroupingsCount": 1
        }
    ],
    "timestamp": "2026-01-30T20:17:01.477Z",
    "paginationInfo": {
        "page": 1,
        "items": 50,
        "count": 1
    }
}

Get incident events groupings [Available for Insights]

Retrieve the eventsGroupingId of a specific incident.
POST Request
POST Request
POST https://defender.lumu.io/api/secops/incidents/{incidentId}/events-groupings?key={company-key}

Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.
page
Page number of the result set (default: 1)
items
Limit the number of results per page (default: 50, max: 100)

Body parameters

Name
Data Type
Description
status
array (optional)
Incident status. If not specified, all objects are returned. Example: "open", "muted", "closed"
sort-criteria
array (optional)
Array of sorting criteria. Available sorting criteria are: first_event_timestamp, last_event_timestamp, events_count, offenders_count, total_targets_count, affected_environment_count, grouping_fields. If not specified, all objects are returned.
filters
array (optional)
Array of filter criteria. Available filter criteria are: network_label, has_playback_events, events_grouping_fields. If not specified, all objects are returned.
Example Request
curl --location --request POST 'https://defender.lumu.io/api/secops/incidents/c67d19b2-131e-11f1-0000-000000000000/events-groupings?key=c522c290-fd61-11f0-bcb7-57f3fdca792c&page=1&items=50'

Example Response (200 - Success)
{
    "items": [
        {
            "incidentId": "c67d19b2-131e-11f1-0000-000000000000",
            "eventsGroupingId": "eyJlbmRwb2ludCI6IkZXX1NHTV9EQ18wMSIsImxhYmVsIjoiNCJ9",
            "eventsGroupingFields": {
                "label": "4",
                "endpoint": "FW_SGM_DC_01"
            },
            "totalEvents": 4,
            "firstEvent": {
                "timestamp": "2026-02-08T14:23:45.835Z",
                "id": "c71117b0-04f9-11f1-bad1-31c2dc940cc1"
            },
            "lastEvent": {
                "timestamp": "2026-02-20T14:25:07.164Z",
                "id": "f47fe9c0-0e67-11f1-bb20-31c2dc940cc1"
            },
            "targets": 1,
            "offenders": 1,
            "environmentStats": [
                {
                    "environment": {
                        "id": "4",
                        "type": "network-label"
                    },
                    "count": 4
                }
            ],
            "hasPlaybackEvents": false,
            "accumulators": [
                {
                    "type": "int_accumulator",
                    "key": "4|14",
                    "value": 4
                }
            ]
        },
        {
            "incidentId": "c67d19b2-131e-11f1-0000-000000000000",
            "eventsGroupingId": "eyJlbmRwb2ludCI6IkZXX1NHTV9EQ18wMSIsImxhYmVsIjoiMCJ9",
            "eventsGroupingFields": {
                "label": "0",
                "endpoint": "FW_SGM_DC_01"
            },
            "totalEvents": 3,
            "firstEvent": {
                "timestamp": "2026-02-14T22:29:50.208Z",
                "id": "acddc000-09f4-11f1-9b6e-b7bfc70a151f"
            },
            "lastEvent": {
                "timestamp": "2026-02-24T15:34:27.875Z",
                "id": "4e210730-1196-11f1-be36-9fc45ebf69ea"
            },
            "targets": 1,
            "offenders": 1,
            "environmentStats": [
                {
                    "environment": {
                        "id": "0",
                        "type": "network-label"
                    },
                    "count": 3
                }
            ],
            "hasPlaybackEvents": false,
            "accumulators": [
                {
                    "type": "int_accumulator",
                    "key": "5|22",
                    "value": 2
                },
                {
                    "type": "int_accumulator",
                    "key": "5|15",
                    "value": 1
                }
            ]
        },
        {
            "incidentId": "c67d19b2-131e-11f1-0000-000000000000",
            "eventsGroupingId": "eyJlbmRwb2ludCI6IkFjbWUiLCJsYWJlbCI6IjQifQ==",
            "eventsGroupingFields": {
                "label": "4",
                "endpoint": "Acme"
            },
            "totalEvents": 2,
            "firstEvent": {
                "timestamp": "2026-02-12T14:24:12.374Z",
                "id": "80899f60-081e-11f1-baec-31c2dc940cc1"
            },
            "lastEvent": {
                "timestamp": "2026-02-22T14:25:19.324Z",
                "id": "5092e1c0-0ffa-11f1-bb2f-31c2dc940cc1"
            },
            "targets": 1,
            "offenders": 1,
            "environmentStats": [
                {
                    "environment": {
                        "id": "4",
                        "type": "network-label"
                    },
                    "count": 2
                }
            ],
            "hasPlaybackEvents": false,
            "accumulators": [
                {
                    "type": "int_accumulator",
                    "key": "4|14",
                    "value": 2
                }
            ]
        },
        {
            "incidentId": "c67d19b2-131e-11f1-0000-000000000000",
            "eventsGroupingId": "eyJlbmRwb2ludCI6IkFjbWUgR2F0ZXdheSIsImxhYmVsIjoiMTMifQ==",
            "eventsGroupingFields": {
                "label": "13",
                "endpoint": "Acme Gateway"
            },
            "totalEvents": 2,
            "firstEvent": {
                "timestamp": "2026-02-07T14:23:38.496Z",
                "id": "98478000-0430-11f1-bacb-31c2dc940cc1"
            },
            "lastEvent": {
                "timestamp": "2026-02-21T14:25:13.246Z",
                "id": "2289b3e0-0f31-11f1-bb25-31c2dc940cc1"
            },
            "targets": 1,
            "offenders": 1,
            "environmentStats": [
                {
                    "environment": {
                        "id": "13",
                        "type": "network-label"
                    },
                    "count": 2
                }
            ],
            "hasPlaybackEvents": false,
            "accumulators": [
                {
                    "type": "int_accumulator",
                    "key": "4|14",
                    "value": 2
                }
            ]
        }
    ],
    "timestamp": "2026-02-27T22:54:03.161Z",
    "paginationInfo": {
        "page": 1,
        "items": 50,
        "count": 4
    }
}

Get incident details [Available for Insights]

Get the details of a specific incident.
GET Request
GET Request
GET https://defender.lumu.io/api/secops/incidents/{incidentId}/details?key={company-key}

Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.
Example Request
curl --location --request POST 'https://defender.lumu.io/api/secops/incidents/2d4ace10-fd55-11f0-9776-41104e67f3e4/details?key=c522c290-fd61-11f0-bcb7-57f3fdca792c'
Example Response (200 - Success)
{
    "id": "2d4ace10-fd55-11f0-9776-41104e67f3e4",
    "timestamp": "2026-01-29T20:57:52.241Z",
    "isUnread": false,
    "hasPlaybackEvents": false,
    "totalEvents": 2,
    "eventsGroupingsCount": 1,
    "incidentGroupingId": "117ddf569f3e58a2997f0dbcb65915e9d1a89a06c5dcfb6ce916abb752b69e15",
    "incidentGroupingFields": {
        "adversary": "www.casaducale.it"
    },
    "detectorType": "activity",
    "incidentType": "malicious-infrastructure",
    "offendersSamples": [
        {
            "_id": "www.casaducale.it",
            "type": "network-location",
            "value": "www.casaducale.it"
        }
    ],
    "targetsSamples": [
        {
            "_id": "Acme Gateway|13",
            "type": "network-endpoint",
            "label": "13",
            "name": "Acme Gateway",
            "endpoint_ip": "190.27.75.165"
        }
    ],
    "adversaryTypes": [
        "Phishing"
    ],
    "description": "Phishing domain",
    "environmentStats": [
        {
            "environment": {
                "id": "13",
                "type": "network-label"
            },
            "count": 2
        }
    ],
    "actions": [
        {
            "datetime": "2026-01-29T21:09:10.965Z",
            "userId": 1,
            "action": "close",
            "comment": "Closing"
        },
        {
            "datetime": "2026-01-29T21:08:42.683Z",
            "userId": 1,
            "action": "comment",
            "comment": "Commenting"
        },
        {
            "datetime": "2026-01-29T21:08:19.853Z",
            "userId": 1,
            "action": "unmute",
            "comment": "Unmuting"
        },
        {
            "datetime": "2026-01-29T21:07:57.987Z",
            "userId": 1,
            "action": "mute",
            "comment": "Muting"
        },
        {
            "datetime": "2026-01-29T21:07:29.598Z",
            "userId": 1,
            "action": "incident-assigned",
            "comment": "Marking as in progress"
        },
        {
            "datetime": "2026-01-29T20:58:45.188Z",
            "userId": 1,
            "action": "read",
            "comment": ""
        }
    ],
    "status": "closed",
    "firstEvent": {
        "timestamp": "2026-01-29T08:15:51.125Z",
        "id": "b9622850-fcea-11f0-afea-8197aef5e7a7"
    },
    "lastEvent": {
        "timestamp": "2026-01-29T09:15:51.125Z",
        "id": "1b269050-fcf3-11f0-afeb-8197aef5e7a7"
    },
    "lastAssignee": 1,
    "autopilotOperation": null,
    "integrationsThatResponded": [],
    "builtInResponseTypes": [],
    "counts": {
        "endpointTargetsCount": 1,
        "userTargetsCount": 0,
        "otherTargetsCount": 0,
        "totalTargetsCount": 1,
        "offendersCount": 1
    },
    "accumulators": [
        {
            "type": "int_accumulator",
            "key": "4|21",
            "value": 1
        },
        {
            "type": "int_accumulator",
            "key": "4|20",
            "value": 1
        }
    ]
}

Mark incident as read [Available for Insights]

Marks an specific incident as read.
POST Request
POST Request
POST https://defender.lumu.io/api/secops/incidents/{incidentId}/mark-as-read?key={company-key}

Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.
Example Request
curl --location --request POST 'https://defender.lumu.io/api/secops/incidents/c522c290-fd61-11f0-bcb7-57f3fdca792c/mark-as-read?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3'

Begin incident work [Available for Insights]

Initiates operations on a specific incident. It can be assigned to a specific user. 
POST Request
POST Request
POST https://defender.lumu.io/api/secops/incidents/{incidentId}/begin-work?key={company-key}

Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.

Body parameters
Name Data Type Description
comment array (mandatory) Comment to be added in the Incident log. Example: Initial investigation and testing. 
assignee array (optional)  ID of the user assigned to the incident.
Example Request
curl --location --request POST 'https://defender.lumu.io/api/secops/incidents/2d4ace10-fd55-11f0-9776-41104e67f3e4/begin-work?key=c522c290-fd61-11f0-bcb7-57f3fdca792c' \ --header 'Content-Type: application/json' \ --data-raw '{ "comment": "Initial investigation and testing", "data": { "assignee": 1 } }'

Comment incident [Available for Insights]

Add a comment to a specific incident.
POST Request
POST Request
POST https://defender.lumu.io/api/secops/incidents/{incidentId}/comment?key={company-key}

Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.

Body parameters
Name Data Type Description
comment array (mandatory) Comment to be added in the Incident log. Example: Initial investigation and testing. 
assignee array (optional)  ID of the user assigned to the incident.
Example Request
curl --location --request POST 'https://defender.lumu.io/api/secops/incidents/2d4ace10-fd55-11f0-9776-41104e67f3e4/comment?key=c522c290-fd61-11f0-bcb7-57f3fdca792c' \ --header 'Content-Type: application/json' \ --data-raw '{ "comment": "Added new information", "reason": "New information found" }'

Mute incident [Available for Insights]

Mute a specific incident.
POST Request
POST Request
POST https://defender.lumu.io/api/secops/incidents/{incidentId}/mute?key={company-key}

Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.

Body parameters
Name Data Type Description
comment array (mandatory) Comment to be added in the Incident log. Example: "Muting incident, no longer needed”.
Example Request
curl --location --request POST 'https://defender.lumu.io/api/secops/incidents/2d4ace10-fd55-11f0-9776-41104e67f3e4/mute?key=c522c290-fd61-11f0-bcb7-57f3fdca792c' \ --header 'Content-Type: application/json' \ --data-raw '{ "comment": "Muting incident, no longer needed" }'

Unmute incident [Available for Insights]

Unmute a specific incident.
POST Request
POST Request
POST https://defender.lumu.io/api/secops/incidents/{incidentId}/unmute?key={company-key}

Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.

Body parameters
Name Data Type Description
comment array (mandatory) Comment to be added in the Incident log. Example: "The issue is now relevant”.
Example Request
curl --location --request POST 'https://defender.lumu.io/api/secops/incidents/2d4ace10-fd55-11f0-9776-41104e67f3e4/unmute?key=c522c290-fd61-11f0-bcb7-57f3fdca792c' \ --header 'Content-Type: application/json' \ --data-raw '{ "comment": "The issue is now relevant" }'

Close incident [Available for Insights]

Close a specific incident. To associate a specific user to this transaction, include the header Lumu-User-Id with the user id as a value.
POST Request
POST Request
POST https://defender.lumu.io/api/secops/incidents/{incidentId}/close?key={company-key}

Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.

Body parameters
Name Data Type Description
comment array (mandatory) Comment to be added in the Incident log. Example: "Closed by the SecOps team”.
Example Request
curl --location --request POST 'https://defender.lumu.io/api/secops/incidents/2d4ace10-fd55-11f0-9776-41104e67f3e4/close?key=c522c290-fd61-11f0-bcb7-57f3fdca792c' \ --header 'Content-Type: application/json' \ --data-raw '{ "comment": "Solved by the SecOps team" }'

Consult incidents updates [Available for Insights]

Obtain real-time updates on incident operations
GET Request
GET Request
GET https://defender.lumu.io/api/secops/incidents/updates?key={company-key}

Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.
offset
Optional. Page number of the result set (default: 1)
items
Limit the number of results per page (default: 50, max: 100)
time
Optional. The maximum duration (in seconds) the server will wait to accumulate records before returning a response.
Example Request
curl --location --request GET 'https://defender.lumu.io/api/secops/incidents/updates?key=c522c290-fd61-11f0-bcb7-57f3fdca792c'
Example Response (200 - Success)
{
"updates": [
{
"IncidentMarkedAsRead": {
"companyId": "abe6e0e3-f53a-4961-bf37-5ce4a51255d0",
"incidentId": "22a03a30-18d6-11f1-a435-bbbe6676a63e",
"incident": {
"id": "22a03a30-18d6-11f1-a435-bbbe6676a63e",
"timestamp": "2026-03-05T20:59:00.819Z",
"status": "open",
"statusTimestamp": "2026-03-05T20:59:00.819Z",
"incidentGroupingFields": {
"adversary": "www.casaducale.it"
},
"detectorType": "activity",
"incidentType": "malicious-infrastructure",
"totalEvents": 1,
"firstEvent": {
"timestamp": "2026-03-05T09:15:51.125Z",
"id": "e79bd050-1873-11f1-96c4-9308f78bb03d"
},
"lastEvent": {
"timestamp": "2026-03-05T09:15:51.125Z",
"id": "e79bd050-1873-11f1-96c4-9308f78bb03d"
},
"adversaryTypes": [
"Phishing"
],
"description": "Phishing domain",
"environmentStats": [
{
"environment": {
"id": "13",
"type": "network-label"
},
"count": 1
}
],
"counts": {
"endpointTargetsCount": 1,
"userTargetsCount": 0,
"otherTargetsCount": 0,
"totalTargetsCount": 1,
"offendersCount": 1
},
"offendersSamples": [
{
"_id": "www.casaducale.it",
"type": "network-location",
"value": "www.casaducale.it"
}
],
"targetsSamples": [
{
"_id": "Acme Gateway|13",
"type": "network-endpoint",
"label": "13",
"name": "Acme Gateway",
"endpoint_ip": "190.27.75.165"
}
],
"unread": false,
"hasPlaybackEvents": false,
"autopilotOperation": null,
"integrationsThatResponded": [],
"builtInResponseTypes": [],
"accumulators": [
{
"type": "int_accumulator",
"key": "4|20",
"value": 1
}
],
"eventsGroupingsCount": 1
}
}
},
{
"IncidentAssigned": {
"companyId": "abe6e0e3-f53a-4961-bf37-5ce4a51255d0",
"msgId": "416ce6c0-18d6-11f1-a435-bbbe6676a63e",
"incidentId": "22a03a30-18d6-11f1-a435-bbbe6676a63e",
"payload": {
"comment": "working"
},
"incident": {
"id": "22a03a30-18d6-11f1-a435-bbbe6676a63e",
"timestamp": "2026-03-05T20:59:00.819Z",
"status": "open",
"statusTimestamp": "2026-03-05T20:59:00.819Z",
"incidentGroupingFields": {
"adversary": "www.casaducale.it"
},
"detectorType": "activity",
"incidentType": "malicious-infrastructure",
"totalEvents": 1,
"firstEvent": {
"timestamp": "2026-03-05T09:15:51.125Z",
"id": "e79bd050-1873-11f1-96c4-9308f78bb03d"
},
"lastEvent": {
"timestamp": "2026-03-05T09:15:51.125Z",
"id": "e79bd050-1873-11f1-96c4-9308f78bb03d"
},
"adversaryTypes": [
"Phishing"
],
"description": "Phishing domain",
"environmentStats": [
{
"environment": {
"id": "13",
"type": "network-label"
},
"count": 1
}
],
"counts": {
"endpointTargetsCount": 1,
"userTargetsCount": 0,
"otherTargetsCount": 0,
"totalTargetsCount": 1,
"offendersCount": 1
},
"offendersSamples": [
{
"_id": "www.casaducale.it",
"type": "network-location",
"value": "www.casaducale.it"
}
],
"targetsSamples": [
{
"_id": "Acme Gateway|13",
"type": "network-endpoint",
"label": "13",
"name": "Acme Gateway",
"endpoint_ip": "190.27.75.165"
}
],
"unread": false,
"hasPlaybackEvents": false,
"lastAssignee": 1,
"autopilotOperation": null,
"integrationsThatResponded": [],
"builtInResponseTypes": [],
"accumulators": [
{
"type": "int_accumulator",
"key": "4|20",
"value": 1
}
],
"eventsGroupingsCount": 1
},
"assigner": 1,
"assignee": 1
}
},
{
"OpenIncidentStatsUpdated": {
"companyId": "abe6e0e3-f53a-4961-bf37-5ce4a51255d0",
"stats": {
"openIncidents": 20,
"inProgressIncidents": 4,
"automaticallyResponded": 0,
"assignedToAutopilot": 0,
"escalatedByAutopilot": 0,
"totalEvents": 317,
"typeDistribution": {
"DGA": 1,
"C2C": 3,
"Login Brute Force": 1,
"Spam": 1,
"Network Brute Force": 2,
"Malware": 4,
"Unusual Login": 1,
"Network Scan": 1,
"Mining": 2,
"Anonymizer": 2,
"Phishing": 2
},
"environmentStats": [
{
"environment": {
"id": "13",
"type": "network-label"
},
"count": 2
},
{
"environment": {
"id": "4",
"type": "network-label"
},
"count": 0
},
{
"environment": {
"id": "testJor.lumu",
"type": "active-directory"
},
"count": 1
},
{
"environment": {
"id": "0",
"type": "network-label"
},
"count": 0
},
{
"environment": {
"id": "2",
"type": "network-label"
},
"count": 1
}
],
"affectedEndpoints": 105,
"affectedUsers": 2,
"otherAffectedEntities": 0
}
}
},
{
"IncidentCommentAdded": {
"companyId": "abe6e0e3-f53a-4961-bf37-5ce4a51255d0",
"msgId": "451fb590-18d6-11f1-a435-bbbe6676a63e",
"incidentId": "22a03a30-18d6-11f1-a435-bbbe6676a63e",
"payload": {
"comment": "Commenting"
},
"incident": {
"id": "22a03a30-18d6-11f1-a435-bbbe6676a63e",
"timestamp": "2026-03-05T20:59:00.819Z",
"status": "open",
"statusTimestamp": "2026-03-05T20:59:00.819Z",
"incidentGroupingFields": {
"adversary": "www.casaducale.it"
},
"detectorType": "activity",
"incidentType": "malicious-infrastructure",
"totalEvents": 1,
"firstEvent": {
"timestamp": "2026-03-05T09:15:51.125Z",
"id": "e79bd050-1873-11f1-96c4-9308f78bb03d"
},
"lastEvent": {
"timestamp": "2026-03-05T09:15:51.125Z",
"id": "e79bd050-1873-11f1-96c4-9308f78bb03d"
},
"adversaryTypes": [
"Phishing"
],
"description": "Phishing domain",
"environmentStats": [
{
"environment": {
"id": "13",
"type": "network-label"
},
"count": 1
}
],
"counts": {
"endpointTargetsCount": 1,
"userTargetsCount": 0,
"otherTargetsCount": 0,
"totalTargetsCount": 1,
"offendersCount": 1
},
"offendersSamples": [
{
"_id": "www.casaducale.it",
"type": "network-location",
"value": "www.casaducale.it"
}
],
"targetsSamples": [
{
"_id": "Acme Gateway|13",
"type": "network-endpoint",
"label": "13",
"name": "Acme Gateway",
"endpoint_ip": "190.27.75.165"
}
],
"unread": false,
"hasPlaybackEvents": false,
"lastAssignee": 1,
"autopilotOperation": null,
"integrationsThatResponded": [],
"builtInResponseTypes": [],
"accumulators": [
{
"type": "int_accumulator",
"key": "4|20",
"value": 1
}
],
"eventsGroupingsCount": 1
},
"userId": 1
}
}
],
"offset": 1276
}

Get security event details [Available for Insights]

Retrieve the raw data of a specific event group within an incident.
POST Request
POST Request
POST https://defender.lumu.io/secops/incidents/{incident_id}/security-events/{event_id}/details?key={company-key}&page={n}&items={n}

Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.
page
Page number of the result set (default: 1)
items
Limit the number of results per page (default: 50, max: 100)

Body parameters
Name Data Type Description
sort array (optional) Adversary types. If not specified, all objects are returned. Examples: "Unusual Login", "Login Brute Force", "Network Brute Force"
hints String, array or JSON object (optional) An opaque object used to optimize result pagination. It can be a string, array, or JSON object.
Example Request
curl --location --request POST 'https://defender.lumu.io/secops/incidents/40f1b840-068b-11f1-9808-7da957a4189e/security-events/8f357340-1c8c-11f1-901e-3d1e28da23e4/details?key=c522c290-fd61-11f0-bcb7-57f3fdca792c&page=<1>&items=<50>' \ --header 'Content-Type: application/json' \ --data-raw '{ "sort": ["asc"], "hints": [] }'
Example Response (200 - Success)
{
"paginationInfo": {
"page": 1,
"items": 1,
"count": 1
},
"response_timestamp": "2026-03-10T14:22:24Z",
"summary": {
"company_id": "abe6e0e3-f53a-4961-bf37-5ce4a51255d0",
"event_id": "8f357340-1c8c-11f1-901e-3d1e28da23e4",
"timestamp": "2026-03-10T14:22:24Z",
"detector_type": "activity",
"event_type": "malicious-infrastructure",
"event_description": "Phishing domain",
"source_type": "virtual_appliance",
"source_id": "287f1a04-ac7d-48ed-98cb-c4585f8b10ff|f1680e2d-c41a-481b-b6c8-812162db6088",
"adversary_types": [
"Phishing"
],
"incident_grouping_fields": {
"adversary": "www.casaducale.it"
},
"events_grouping_fields": {
"label": "4",
"endpoint": "Acme"
},
"affected_environments": [
{
"type": "network-label",
"id": "4"
}
],
"targets": [
{
"_id": "Acme|4",
"type": "network-endpoint",
"label": "4",
"name": "Acme",
"endpoint_ip": "192.168.0.103"
}
],
"offenders": [
{
"_id": "www.casaducale.it",
"type": "network-location",
"value": "www.casaducale.it"
}
],
"from_playback": false
},
"items": [
{
"record_count": 1,
"first_record_timestamp": "2026-03-10T14:22:24Z",
"first_record": {
"source_data": {
"DNSPacketExtraInfo": {
"question": {
"type": "A",
"name": "www.casaducale.it",
"class": "IN"
},
"responseCode": "NOERROR",
"flags": {
"authoritative": false,
"recursion_available": true,
"truncated_response": false,
"checking_disabled": false,
"recursion_desired": true,
"authentic_data": false
},
"collectorIndex": "f1680e2d-c41a-481b-b6c8-812162db6088",
"answers": [
{
"name": "www.casaducale.it",
"type": "A",
"class": "IN",
"ttl": 2549,
"data": "69.172.201.153"
}
],
"opCode": "QUERY"
}
},
"endpoint_ip": "192.168.0.103"
}
}
]
}

Get incident security events details [Available for Insights]

Retrieve the raw data of all event groups within an incident.
POST Request
POST Request
POST https://defender.lumu.io/secops/incidents/{incident_id}/security-events/details?key={company-key}

Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.
page
Page number of the result set (default: 1)
items
Limit the number of results per page (default: 50, max: 100)

Body parameters
Name
Data Type
Description
events_grouping_id
array (optional)
Unique identifier used to organize events within an incident into meaningful collections (e.g., by endpoint or user)
episode_id
array (optional)
Unique identifier of  a single occurrence of malicious behavior within an incident.
sort
array (optional)
Order of the data within the file, for example, "asc" and "desc". If not specified, desc will be used as default.
hints
String, array or JSON object (optional)
An opaque object used to optimize result pagination. It can be a string, array, or JSON object
Example Request
curl --location --request POST 'https://defender.lumu.io/secops/incidents/40f1b840-068b-11f1-9808-7da957a4189e/security-events/details?key=c522c290-fd61-11f0-bcb7-57f3fdca792c&page=1&items=10' \ --header 'Content-Type: application/json' \ --data-raw '{ "events_grouping_id": [], "episode_id": [], "sort": ["asc"], "hints": [] }'
Example Response (200 - Success)
{
"paginationInfo": {
"page": 1,
"items": 10,
"hints": {
"1": "01f69900-22d6-11f1-9052-3d1e28da23e4"
}
},
"response_timestamp": "2026-04-13T17:36:23Z",
"items": [
{
"company_id": "abe6e0e3-f53a-4961-bf37-5ce4a51255d0",
"event_id": "01f69900-22d6-11f1-9052-3d1e28da23e4",
"timestamp": "2026-03-18T14:23:17Z",
"detector_type": "activity",
"event_type": "malicious-infrastructure",
"event_description": "Phishing domain",
"source_type": "virtual_appliance",
"source_id": "287f1a04-ac7d-48ed-98cb-c4585f8b10ff|838c5752-9112-4e93-ad15-9705bcefa604",
"adversary_types": [
"Phishing"
],
"incident_grouping_fields": {
"adversary": "www.casaducale.it"
},
"events_grouping_fields": {
"label": "4",
"endpoint": "FW_SGM_DC_01"
},
"affected_environments": [
{
"type": "network-label",
"id": "4"
}
],
"targets": [
{
"_id": "FW_SGM_DC_01|4",
"type": "network-endpoint",
"label": "4",
"name": "FW_SGM_DC_01",
"endpoint_ip": "10.0.0.46"
}
],
"offenders": [
{
"_id": "www.casaducale.it",
"type": "network-location",
"value": "www.casaducale.it"
}
],
"from_playback": false,
"raw_data": {
"record_count": 1,
"first_record_timestamp": "2026-03-18T14:23:17Z",
"first_record": {
"path": "/index.html",
"source_data": {
"FirewallEntryExtraInfo": {
"source": {
"ip": "10.0.0.46",
"port": 54786,
"name": "FW_SGM_DC_01"
},
"collectorIndex": "838c5752-9112-4e93-ad15-9705bcefa604",
"sent": {
"bytes": 53489,
"packets": 183
},
"destination": {
"ip": "206.188.193.40",
"port": 8081,
"name": "www.casaducale.it"
},
"action": "accept",
"protocol": "dns",
"received": {
"bytes": 67385,
"packets": 163
}
}
},
"endpoint_ip": "10.0.0.46"
}
}
},
{
"company_id": "abe6e0e3-f53a-4961-bf37-5ce4a51255d0",
"event_id": "d4873a20-220c-11f1-904b-3d1e28da23e4",
"timestamp": "2026-03-17T14:23:12Z",
"detector_type": "activity",
"event_type": "malicious-infrastructure",
"event_description": "Phishing domain",
"source_type": "virtual_appliance",
"source_id": "287f1a04-ac7d-48ed-98cb-c4585f8b10ff",
"adversary_types": [
"Phishing"
],
"incident_grouping_fields": {
"adversary": "www.casaducale.it"
},
"events_grouping_fields": {
"label": "4",
"endpoint": "Acme"
},
"affected_environments": [
{
"type": "network-label",
"id": "4"
}
],
"targets": [
{
"_id": "Acme|4",
"type": "network-endpoint",
"label": "4",
"name": "Acme",
"endpoint_ip": "192.168.1.99"
}
],
"offenders": [
{
"_id": "www.casaducale.it",
"type": "network-location",
"value": "www.casaducale.it"
}
],
"from_playback": false,
"raw_data": {
"record_count": 1,
"first_record_timestamp": "2026-03-17T14:23:12Z",
"first_record": {
"source_data": {
"DNSPacketExtraInfo": {
"question": {
"type": "A",
"name": "www.casaducale.it",
"class": "IN"
},
"responseCode": "NOERROR",
"flags": {
"authoritative": false,
"recursion_available": true,
"truncated_response": false,
"checking_disabled": false,
"recursion_desired": true,
"authentic_data": false
},
"answers": [
{
"name": "www.casaducale.it",
"type": "A",
"class": "IN",
"ttl": 2549,
"data": "69.172.201.153"
}
],
"opCode": "QUERY"
}
},
"endpoint_ip": "192.168.1.99"
}
}
},
{
"company_id": "abe6e0e3-f53a-4961-bf37-5ce4a51255d0",
"event_id": "67abfa20-2145-11f1-9126-3d1e28da23e4",
"timestamp": "2026-03-16T14:35:40Z",
"detector_type": "activity",
"event_type": "malicious-infrastructure",
"event_description": "Phishing domain",
"source_type": "lha_appliance",
"source_id": "44fa4c38-e5b9-11f0-a4f0-3e502a25a4ba|LAN II",
"adversary_types": [
"Phishing"
],
"incident_grouping_fields": {
"adversary": "www.casaducale.it"
},
"events_grouping_fields": {
"label": "0",
"endpoint": "Acme"
},
"affected_environments": [
{
"type": "network-label",
"id": "0"
}
],
"targets": [
{
"_id": "Acme|0",
"type": "network-endpoint",
"label": "0",
"name": "Acme",
"endpoint_ip": "192.168.0.103"
}
],
"offenders": [
{
"_id": "www.casaducale.it",
"type": "network-location",
"value": "www.casaducale.it"
}
],
"from_playback": false,
"raw_data": {
"record_count": 1,
"first_record_timestamp": "2026-03-16T14:35:40Z",
"first_record": {
"source_data": {
"DNSPacketExtraInfo": {
"question": {
"type": "A",
"name": "www.casaducale.it",
"class": "IN"
},
"responseCode": "NOERROR",
"flags": {
"authoritative": false,
"recursion_available": true,
"truncated_response": false,
"checking_disabled": false,
"recursion_desired": true,
"authentic_data": false
},
"collectorIndex": "LAN II",
"answers": [
{
"name": "www.casaducale.it",
"type": "A",
"class": "IN",
"ttl": 2549,
"data": "69.172.201.153"
}
],
"extraData": {
"collectorInfo": {
"interface": "ENP2S0",
"interface_display_name": "LAN II",
"group": "ETH"
}
},
"opCode": "QUERY"
}
},
"endpoint_ip": "192.168.0.103"
}
}
},
{
"company_id": "abe6e0e3-f53a-4961-bf37-5ce4a51255d0",
"event_id": "77d7db10-207a-11f1-9045-3d1e28da23e4",
"timestamp": "2026-03-15T14:22:59Z",
"detector_type": "activity",
"event_type": "malicious-infrastructure",
"event_description": "Phishing domain",
"source_type": "virtual_appliance",
"source_id": "287f1a04-ac7d-48ed-98cb-c4585f8b10ff",
"adversary_types": [
"Phishing"
],
"incident_grouping_fields": {
"adversary": "www.casaducale.it"
},
"events_grouping_fields": {
"label": "4",
"endpoint": "Acme"
},
"affected_environments": [
{
"type": "network-label",
"id": "4"
}
],
"targets": [
{
"_id": "Acme|4",
"type": "network-endpoint",
"label": "4",
"name": "Acme",
"endpoint_ip": "192.168.1.99"
}
],
"offenders": [
{
"_id": "www.casaducale.it",
"type": "network-location",
"value": "www.casaducale.it"
}
],
"from_playback": false,
"raw_data": {
"record_count": 1,
"first_record_timestamp": "2026-03-15T14:22:59Z",
"first_record": {
"source_data": {
"DNSPacketExtraInfo": {
"question": {
"type": "A",
"name": "www.casaducale.it",
"class": "IN"
},
"responseCode": "NOERROR",
"flags": {
"authoritative": false,
"recursion_available": true,
"truncated_response": false,
"checking_disabled": false,
"recursion_desired": true,
"authentic_data": false
},
"answers": [
{
"name": "www.casaducale.it",
"type": "A",
"class": "IN",
"ttl": 2549,
"data": "69.172.201.153"
}
],
"opCode": "QUERY"
}
},
"endpoint_ip": "192.168.1.99"
}
}
},
{
"company_id": "abe6e0e3-f53a-4961-bf37-5ce4a51255d0",
"event_id": "ebe93f20-1e1e-11f1-9030-3d1e28da23e4",
"timestamp": "2026-03-12T14:22:38Z",
"detector_type": "activity",
"event_type": "malicious-infrastructure",
"event_description": "Phishing domain",
"source_type": "virtual_appliance",
"source_id": "287f1a04-ac7d-48ed-98cb-c4585f8b10ff|3c7d6d71-655a-4af9-b219-7a58590e74a8",
"adversary_types": [
"Phishing"
],
"incident_grouping_fields": {
"adversary": "www.casaducale.it"
},
"events_grouping_fields": {
"label": "4",
"endpoint": "Acme"
},
"affected_environments": [
{
"type": "network-label",
"id": "4"
}
],
"targets": [
{
"_id": "Acme|4",
"type": "network-endpoint",
"label": "4",
"name": "Acme",
"endpoint_ip": "192.168.0.104"
}
],
"offenders": [
{
"_id": "www.casaducale.it",
"type": "network-location",
"value": "www.casaducale.it"
}
],
"from_playback": false,
"raw_data": {
"record_count": 1,
"first_record_timestamp": "2026-03-12T14:22:38Z",
"first_record": {
"path": "/proxy/entries.html",
"source_data": {
"ProxyEntryExtraInfo": {
"collectorIndex": "3c7d6d71-655a-4af9-b219-7a58590e74a8",
"remoteIp": "178.79.163.131",
"request": {
"uri": {
"host": "www.casaducale.it",
"port": 80,
"scheme": "https",
"path": "/proxy/entries.html",
"query": "name=myname&wlkd=ksi"
},
"method": "post",
"length": 1034,
"body_length": 887,
"referrer": "vera.chalmersspexet.se",
"user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 1..."
},
"response": {
"code": 200,
"phrase": "Success",
"length": 3049,
"body_length": 2978
}
}
},
"arguments": "name=myname&wlkd=ksi",
"endpoint_ip": "192.168.0.104"
}
}
},
{
"company_id": "abe6e0e3-f53a-4961-bf37-5ce4a51255d0",
"event_id": "8f357340-1c8c-11f1-901e-3d1e28da23e4",
"timestamp": "2026-03-10T14:22:24Z",
"detector_type": "activity",
"event_type": "malicious-infrastructure",
"event_description": "Phishing domain",
"source_type": "virtual_appliance",
"source_id": "287f1a04-ac7d-48ed-98cb-c4585f8b10ff|f1680e2d-c41a-481b-b6c8-812162db6088",
"adversary_types": [
"Phishing"
],
"incident_grouping_fields": {
"adversary": "www.casaducale.it"
},
"events_grouping_fields": {
"label": "4",
"endpoint": "Acme"
},
"affected_environments": [
{
"type": "network-label",
"id": "4"
}
],
"targets": [
{
"_id": "Acme|4",
"type": "network-endpoint",
"label": "4",
"name": "Acme",
"endpoint_ip": "192.168.0.103"
}
],
"offenders": [
{
"_id": "www.casaducale.it",
"type": "network-location",
"value": "www.casaducale.it"
}
],
"from_playback": false,
"raw_data": {
"record_count": 1,
"first_record_timestamp": "2026-03-10T14:22:24Z",
"first_record": {
"source_data": {
"DNSPacketExtraInfo": {
"question": {
"type": "A",
"name": "www.casaducale.it",
"class": "IN"
},
"responseCode": "NOERROR",
"flags": {
"authoritative": false,
"recursion_available": true,
"truncated_response": false,
"checking_disabled": false,
"recursion_desired": true,
"authentic_data": false
},
"collectorIndex": "f1680e2d-c41a-481b-b6c8-812162db6088",
"answers": [
{
"name": "www.casaducale.it",
"type": "A",
"class": "IN",
"ttl": 2549,
"data": "69.172.201.153"
}
],
"opCode": "QUERY"
}
},
"endpoint_ip": "192.168.0.103"
}
}
}
]
}

Export security event details [Available for Insights]

Export the raw data of a specific event into a csv or json file.
GET Request
GET Request
GET https://defender.lumu.io/secops/incidents/{incident_id}/security-events/{event_id}/details/export?key={company-key}&limit={n}&file_name={filename}&format={csv|jsonl}&sort={asc|desc}

Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.
limit
The maximum number of records to include in the generated file
file_name
The desired name for the generated output file
format 
The file format for the export. Supported values: csv (Comma Separated Values) or jsonl (JSON Lines).
sort
Order of the data within the file, for example, "asc" and "desc". If not specified, desc will be used as default.
Example Request
curl --location --request POST 'https://defender.lumu.io/secops/incidents/40f1b840-068b-11f1-9808-7da957a4189e/security-events/8f357340-1c8c-11f1-901e-3d1e28da23e4/details/export?key=c522c290-fd61-11f0-bcb7-57f3fdca792c&limit=10&file_name=test&format=jsonl&sort=asc'
Example Response (200 - Success)
{
    "company_id": "b321cdd2-9732-49f4-aa20-309b975ea60c",
    "event_id": "dcfb6940-6502-11f1-a5ae-2eff16f18868",
    "timestamp": "2026-06-10T19:30:39.700000",
    "detector_type": "network-access-abuse-detector",
    "event_type": "network-brute-force",
    "event_description": "Potential brute-force activity or protocol abuse.",
    "source_type": "custom_collector",
    "source_id": "8c60127d-b083-411a-ba9c-d4533589a318",
    "from_playback": false,
    "adversary_types": [
        "Network Brute Force"
    ],
    "incident_grouping_fields": {
        "src_ip": "192.168.59.235",
        "src_label": "0"
    },
    "events_grouping_fields": {
        "transport_protocol": "tcp",
        "port": 3389,
        "dest_ip": "10.10.40.5",
        "dest_label": "0",
        "service": "rdp"
    },
    "raw_data": [
        {
            "timestamp": "2026-06-10T19:30:59.700000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.700000Z",
                    "protocol": "tcp",
                    "time_taken": 89728,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 32725
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.640000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.640000Z",
                    "protocol": "tcp",
                    "time_taken": 89398,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26454
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.580000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.580000Z",
                    "protocol": "tcp",
                    "time_taken": 89817,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43852
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.520000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.520000Z",
                    "protocol": "tcp",
                    "time_taken": 89663,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 14128
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.460000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.460000Z",
                    "protocol": "tcp",
                    "time_taken": 89631,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20953
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.400000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.400000Z",
                    "protocol": "tcp",
                    "time_taken": 89168,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 64812
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.340000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.340000Z",
                    "protocol": "tcp",
                    "time_taken": 89921,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 64087
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.280000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.280000Z",
                    "protocol": "tcp",
                    "time_taken": 89302,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13094
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.220000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.220000Z",
                    "protocol": "tcp",
                    "time_taken": 89447,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 60086
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.160000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.160000Z",
                    "protocol": "tcp",
                    "time_taken": 89043,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 47469
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.100000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.100000Z",
                    "protocol": "tcp",
                    "time_taken": 89841,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 61524
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.040000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.040000Z",
                    "protocol": "tcp",
                    "time_taken": 89021,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 39659
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.980000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.980000Z",
                    "protocol": "tcp",
                    "time_taken": 89464,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20943
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4146,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.920000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.920000Z",
                    "protocol": "tcp",
                    "time_taken": 89727,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26880
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4143,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.860000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.860000Z",
                    "protocol": "tcp",
                    "time_taken": 89700,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 23241
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.800000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.800000Z",
                    "protocol": "tcp",
                    "time_taken": 89880,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 38744
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.740000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.740000Z",
                    "protocol": "tcp",
                    "time_taken": 89133,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 59400
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.680000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.680000Z",
                    "protocol": "tcp",
                    "time_taken": 89875,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 44595
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.620000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.620000Z",
                    "protocol": "tcp",
                    "time_taken": 89391,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 56856
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.560000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.560000Z",
                    "protocol": "tcp",
                    "time_taken": 89098,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 35863
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.500000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.500000Z",
                    "protocol": "tcp",
                    "time_taken": 89573,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 40709
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.440000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.440000Z",
                    "protocol": "tcp",
                    "time_taken": 89320,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 29011
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.380000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.380000Z",
                    "protocol": "tcp",
                    "time_taken": 89334,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 36210
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.320000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.320000Z",
                    "protocol": "tcp",
                    "time_taken": 89377,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 60723
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.260000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.260000Z",
                    "protocol": "tcp",
                    "time_taken": 89989,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26604
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.200000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.200000Z",
                    "protocol": "tcp",
                    "time_taken": 89614,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 63105
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.140000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.140000Z",
                    "protocol": "tcp",
                    "time_taken": 89009,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 48292
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4154,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.080000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.080000Z",
                    "protocol": "tcp",
                    "time_taken": 89744,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26229
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.020000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.020000Z",
                    "protocol": "tcp",
                    "time_taken": 89425,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43474
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.960000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.960000Z",
                    "protocol": "tcp",
                    "time_taken": 89844,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 15236
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.900000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.900000Z",
                    "protocol": "tcp",
                    "time_taken": 89167,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 15528
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.840000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.840000Z",
                    "protocol": "tcp",
                    "time_taken": 89190,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 30252
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.780000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.780000Z",
                    "protocol": "tcp",
                    "time_taken": 89720,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 10219
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.720000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.720000Z",
                    "protocol": "tcp",
                    "time_taken": 89151,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58185
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.660000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.660000Z",
                    "protocol": "tcp",
                    "time_taken": 89424,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 64040
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.600000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.600000Z",
                    "protocol": "tcp",
                    "time_taken": 89735,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 59364
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.540000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.540000Z",
                    "protocol": "tcp",
                    "time_taken": 89689,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25559
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.480000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.480000Z",
                    "protocol": "tcp",
                    "time_taken": 89817,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54153
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.420000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.420000Z",
                    "protocol": "tcp",
                    "time_taken": 89807,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 55408
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.360000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.360000Z",
                    "protocol": "tcp",
                    "time_taken": 89373,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 12214
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4146,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.300000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.300000Z",
                    "protocol": "tcp",
                    "time_taken": 89447,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 48146
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.240000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.240000Z",
                    "protocol": "tcp",
                    "time_taken": 89722,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54412
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.180000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.180000Z",
                    "protocol": "tcp",
                    "time_taken": 89452,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 27186
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.120000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.120000Z",
                    "protocol": "tcp",
                    "time_taken": 89764,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 31148
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.060000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.060000Z",
                    "protocol": "tcp",
                    "time_taken": 89527,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 10756
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57Z",
                    "protocol": "tcp",
                    "time_taken": 89114,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58227
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.940000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.940000Z",
                    "protocol": "tcp",
                    "time_taken": 89296,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 35277
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.880000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.880000Z",
                    "protocol": "tcp",
                    "time_taken": 89545,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13636
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.820000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.820000Z",
                    "protocol": "tcp",
                    "time_taken": 89369,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20540
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.760000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.760000Z",
                    "protocol": "tcp",
                    "time_taken": 89044,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 64875
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.700000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.700000Z",
                    "protocol": "tcp",
                    "time_taken": 89372,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 34351
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.640000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.640000Z",
                    "protocol": "tcp",
                    "time_taken": 89564,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 41455
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.580000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.580000Z",
                    "protocol": "tcp",
                    "time_taken": 89594,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 44870
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.520000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.520000Z",
                    "protocol": "tcp",
                    "time_taken": 89136,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 36864
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.460000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.460000Z",
                    "protocol": "tcp",
                    "time_taken": 89689,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43687
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.400000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.400000Z",
                    "protocol": "tcp",
                    "time_taken": 89836,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13862
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.340000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.340000Z",
                    "protocol": "tcp",
                    "time_taken": 89941,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54087
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.280000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.280000Z",
                    "protocol": "tcp",
                    "time_taken": 89663,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 45040
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4143,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.220000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.220000Z",
                    "protocol": "tcp",
                    "time_taken": 89431,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 57499
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.160000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.160000Z",
                    "protocol": "tcp",
                    "time_taken": 89651,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 34738
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.100000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.100000Z",
                    "protocol": "tcp",
                    "time_taken": 89010,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 39970
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4154,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.040000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.040000Z",
                    "protocol": "tcp",
                    "time_taken": 89009,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54293
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.980000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.980000Z",
                    "protocol": "tcp",
                    "time_taken": 89535,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 24340
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.920000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.920000Z",
                    "protocol": "tcp",
                    "time_taken": 89615,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26795
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.860000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.860000Z",
                    "protocol": "tcp",
                    "time_taken": 89472,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 36294
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.800000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.800000Z",
                    "protocol": "tcp",
                    "time_taken": 89817,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 23619
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.740000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.740000Z",
                    "protocol": "tcp",
                    "time_taken": 89702,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20596
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.680000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.680000Z",
                    "protocol": "tcp",
                    "time_taken": 89496,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 46420
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.620000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.620000Z",
                    "protocol": "tcp",
                    "time_taken": 89500,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 57347
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.560000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.560000Z",
                    "protocol": "tcp",
                    "time_taken": 89696,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 46468
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4143,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.500000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.500000Z",
                    "protocol": "tcp",
                    "time_taken": 89248,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 19447
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.440000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.440000Z",
                    "protocol": "tcp",
                    "time_taken": 89745,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 17431
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.380000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.380000Z",
                    "protocol": "tcp",
                    "time_taken": 89190,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 62839
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.320000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.320000Z",
                    "protocol": "tcp",
                    "time_taken": 89099,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 52734
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.260000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.260000Z",
                    "protocol": "tcp",
                    "time_taken": 89849,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 51645
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.200000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.200000Z",
                    "protocol": "tcp",
                    "time_taken": 89118,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 59241
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.140000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.140000Z",
                    "protocol": "tcp",
                    "time_taken": 89069,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26255
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.080000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.080000Z",
                    "protocol": "tcp",
                    "time_taken": 89815,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 19711
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.020000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.020000Z",
                    "protocol": "tcp",
                    "time_taken": 89668,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 28085
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.960000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.960000Z",
                    "protocol": "tcp",
                    "time_taken": 89180,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43248
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.900000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.900000Z",
                    "protocol": "tcp",
                    "time_taken": 89967,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54134
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.840000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.840000Z",
                    "protocol": "tcp",
                    "time_taken": 89239,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 22179
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.780000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.780000Z",
                    "protocol": "tcp",
                    "time_taken": 89547,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58150
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.720000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.720000Z",
                    "protocol": "tcp",
                    "time_taken": 89494,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 60265
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.660000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.660000Z",
                    "protocol": "tcp",
                    "time_taken": 89196,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 42287
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.600000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.600000Z",
                    "protocol": "tcp",
                    "time_taken": 89851,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 44801
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.540000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.540000Z",
                    "protocol": "tcp",
                    "time_taken": 89621,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 60815
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.480000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.480000Z",
                    "protocol": "tcp",
                    "time_taken": 89775,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 29635
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.420000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.420000Z",
                    "protocol": "tcp",
                    "time_taken": 89275,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 47809
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.360000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.360000Z",
                    "protocol": "tcp",
                    "time_taken": 89377,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 11836
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.300000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.300000Z",
                    "protocol": "tcp",
                    "time_taken": 89064,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 53445
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4143,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.240000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.240000Z",
                    "protocol": "tcp",
                    "time_taken": 89825,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 33690
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.180000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.180000Z",
                    "protocol": "tcp",
                    "time_taken": 89812,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43940
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.120000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.120000Z",
                    "protocol": "tcp",
                    "time_taken": 89424,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 60432
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.060000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.060000Z",
                    "protocol": "tcp",
                    "time_taken": 89669,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 55262
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54Z",
                    "protocol": "tcp",
                    "time_taken": 89010,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 34596
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:53.940000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:53.940000Z",
                    "protocol": "tcp",
                    "time_taken": 89954,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 40835
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:53.880000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:53.880000Z",
                    "protocol": "tcp",
                    "time_taken": 89015,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 18497
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:53.820000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:53.820000Z",
                    "protocol": "tcp",
                    "time_taken": 89110,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 27955
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:53.760000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:53.760000Z",
                    "protocol": "tcp",
                    "time_taken": 89945,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 39695
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        }
    ]
}
{
    "company_id": "b321cdd2-9732-49f4-aa20-309b975ea60c",
    "event_id": "d10fa740-6502-11f1-a5ae-2eff16f18868",
    "timestamp": "2026-06-10T19:30:19.700000",
    "detector_type": "network-access-abuse-detector",
    "event_type": "network-brute-force",
    "event_description": "Potential brute-force activity or protocol abuse.",
    "source_type": "custom_collector",
    "source_id": "8c60127d-b083-411a-ba9c-d4533589a318",
    "from_playback": false,
    "adversary_types": [
        "Network Brute Force"
    ],
    "incident_grouping_fields": {
        "src_ip": "192.168.59.235",
        "src_label": "0"
    },
    "events_grouping_fields": {
        "transport_protocol": "tcp",
        "port": 3389,
        "dest_ip": "10.10.40.5",
        "dest_label": "0",
        "service": "rdp"
    },
    "raw_data": [
        {
            "timestamp": "2026-06-10T19:30:39.660000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.660000Z",
                    "protocol": "tcp",
                    "time_taken": 89739,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 52602
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.600000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.600000Z",
                    "protocol": "tcp",
                    "time_taken": 89274,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 11627
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.540000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.540000Z",
                    "protocol": "tcp",
                    "time_taken": 89049,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 52587
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4154,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.480000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.480000Z",
                    "protocol": "tcp",
                    "time_taken": 89759,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58876
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.420000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.420000Z",
                    "protocol": "tcp",
                    "time_taken": 89652,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 23490
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.360000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.360000Z",
                    "protocol": "tcp",
                    "time_taken": 89523,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 10660
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.300000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.300000Z",
                    "protocol": "tcp",
                    "time_taken": 89073,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 39613
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.240000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.240000Z",
                    "protocol": "tcp",
                    "time_taken": 89473,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 28621
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.180000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.180000Z",
                    "protocol": "tcp",
                    "time_taken": 89541,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 40111
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.120000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.120000Z",
                    "protocol": "tcp",
                    "time_taken": 89282,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 61529
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4154,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.060000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.060000Z",
                    "protocol": "tcp",
                    "time_taken": 89268,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13922
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4154,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39Z",
                    "protocol": "tcp",
                    "time_taken": 89636,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 59567
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.940000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.940000Z",
                    "protocol": "tcp",
                    "time_taken": 89190,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 59349
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.880000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.880000Z",
                    "protocol": "tcp",
                    "time_taken": 89865,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25815
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4146,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.820000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.820000Z",
                    "protocol": "tcp",
                    "time_taken": 89349,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 28574
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.760000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.760000Z",
                    "protocol": "tcp",
                    "time_taken": 89609,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26501
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.700000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.700000Z",
                    "protocol": "tcp",
                    "time_taken": 89596,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 49993
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.640000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.640000Z",
                    "protocol": "tcp",
                    "time_taken": 89400,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 33359
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.580000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.580000Z",
                    "protocol": "tcp",
                    "time_taken": 89216,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 30084
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.520000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.520000Z",
                    "protocol": "tcp",
                    "time_taken": 89062,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 46811
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.460000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.460000Z",
                    "protocol": "tcp",
                    "time_taken": 89598,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43486
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.400000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.400000Z",
                    "protocol": "tcp",
                    "time_taken": 89087,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13003
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.340000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.340000Z",
                    "protocol": "tcp",
                    "time_taken": 89602,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20775
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.280000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.280000Z",
                    "protocol": "tcp",
                    "time_taken": 89146,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13676
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.220000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.220000Z",
                    "protocol": "tcp",
                    "time_taken": 89613,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54615
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.160000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.160000Z",
                    "protocol": "tcp",
                    "time_taken": 89132,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 10118
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.100000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.100000Z",
                    "protocol": "tcp",
                    "time_taken": 89115,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 57805
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.040000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.040000Z",
                    "protocol": "tcp",
                    "time_taken": 89619,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 10608
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.980000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.980000Z",
                    "protocol": "tcp",
                    "time_taken": 89202,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 39029
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.920000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.920000Z",
                    "protocol": "tcp",
                    "time_taken": 89638,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 48144
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.860000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.860000Z",
                    "protocol": "tcp",
                    "time_taken": 89092,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 61553
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.800000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.800000Z",
                    "protocol": "tcp",
                    "time_taken": 89844,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26062
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.740000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.740000Z",
                    "protocol": "tcp",
                    "time_taken": 89002,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 34278
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.680000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.680000Z",
                    "protocol": "tcp",
                    "time_taken": 89808,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 11398
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.620000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.620000Z",
                    "protocol": "tcp",
                    "time_taken": 89743,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25452
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.560000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.560000Z",
                    "protocol": "tcp",
                    "time_taken": 89184,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54980
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.500000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.500000Z",
                    "protocol": "tcp",
                    "time_taken": 89347,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 51344
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.440000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.440000Z",
                    "protocol": "tcp",
                    "time_taken": 89977,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 17133
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.380000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.380000Z",
                    "protocol": "tcp",
                    "time_taken": 89919,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 44778
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.320000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.320000Z",
                    "protocol": "tcp",
                    "time_taken": 89216,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58600
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.260000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.260000Z",
                    "protocol": "tcp",
                    "time_taken": 89842,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 40381
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.200000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.200000Z",
                    "protocol": "tcp",
                    "time_taken": 89231,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 44331
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.140000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.140000Z",
                    "protocol": "tcp",
                    "time_taken": 89504,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 27334
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.080000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.080000Z",
                    "protocol": "tcp",
                    "time_taken": 89071,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 41934
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.020000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.020000Z",
                    "protocol": "tcp",
                    "time_taken": 89528,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 46641
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.960000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.960000Z",
                    "protocol": "tcp",
                    "time_taken": 89411,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 35336
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.900000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.900000Z",
                    "protocol": "tcp",
                    "time_taken": 89709,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 22908
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.840000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.840000Z",
                    "protocol": "tcp",
                    "time_taken": 89503,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 63922
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.780000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.780000Z",
                    "protocol": "tcp",
                    "time_taken": 89491,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 64421
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.720000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.720000Z",
                    "protocol": "tcp",
                    "time_taken": 89130,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26107
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.660000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.660000Z",
                    "protocol": "tcp",
                    "time_taken": 89475,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 32326
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.600000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.600000Z",
                    "protocol": "tcp",
                    "time_taken": 89873,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25308
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.540000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.540000Z",
                    "protocol": "tcp",
                    "time_taken": 89310,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 52449
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.480000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.480000Z",
                    "protocol": "tcp",
                    "time_taken": 89376,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 32135
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.420000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.420000Z",
                    "protocol": "tcp",
                    "time_taken": 89608,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 23174
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.360000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.360000Z",
                    "protocol": "tcp",
                    "time_taken": 89910,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20968
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.300000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.300000Z",
                    "protocol": "tcp",
                    "time_taken": 89722,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 49766
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.240000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.240000Z",
                    "protocol": "tcp",
                    "time_taken": 89258,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 40863
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.180000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.180000Z",
                    "protocol": "tcp",
                    "time_taken": 89435,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 17550
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.120000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.120000Z",
                    "protocol": "tcp",
                    "time_taken": 89106,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 57299
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.060000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.060000Z",
                    "protocol": "tcp",
                    "time_taken": 89826,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 51424
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36Z",
                    "protocol": "tcp",
                    "time_taken": 89875,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 64619
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.940000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.940000Z",
                    "protocol": "tcp",
                    "time_taken": 89177,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 40815
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.880000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.880000Z",
                    "protocol": "tcp",
                    "time_taken": 89448,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 36775
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.820000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.820000Z",
                    "protocol": "tcp",
                    "time_taken": 89611,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 61329
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.760000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.760000Z",
                    "protocol": "tcp",
                    "time_taken": 89673,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43832
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.700000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.700000Z",
                    "protocol": "tcp",
                    "time_taken": 89575,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 47547
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.640000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.640000Z",
                    "protocol": "tcp",
                    "time_taken": 89870,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54448
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.580000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.580000Z",
                    "protocol": "tcp",
                    "time_taken": 89535,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 31483
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.520000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.520000Z",
                    "protocol": "tcp",
                    "time_taken": 89558,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58582
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.460000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.460000Z",
                    "protocol": "tcp",
                    "time_taken": 89325,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 51193
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.400000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.400000Z",
                    "protocol": "tcp",
                    "time_taken": 89066,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 38485
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.340000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.340000Z",
                    "protocol": "tcp",
                    "time_taken": 89409,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 31959
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.280000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.280000Z",
                    "protocol": "tcp",
                    "time_taken": 89876,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25071
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.220000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.220000Z",
                    "protocol": "tcp",
                    "time_taken": 89447,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 29164
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4146,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.160000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.160000Z",
                    "protocol": "tcp",
                    "time_taken": 89453,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20523
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.100000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.100000Z",
                    "protocol": "tcp",
                    "time_taken": 89364,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 24334
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.040000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.040000Z",
                    "protocol": "tcp",
                    "time_taken": 89862,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 45982
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.980000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.980000Z",
                    "protocol": "tcp",
                    "time_taken": 89212,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25280
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.920000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.920000Z",
                    "protocol": "tcp",
                    "time_taken": 89852,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 62897
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.860000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.860000Z",
                    "protocol": "tcp",
                    "time_taken": 89673,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 28964
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.800000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.800000Z",
                    "protocol": "tcp",
                    "time_taken": 89707,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 52459
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.740000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.740000Z",
                    "protocol": "tcp",
                    "time_taken": 89924,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 15367
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.680000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.680000Z",
                    "protocol": "tcp",
                    "time_taken": 89083,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 34327
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.620000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.620000Z",
                    "protocol": "tcp",
                    "time_taken": 89179,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 48804
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.560000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.560000Z",
                    "protocol": "tcp",
                    "time_taken": 89746,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 10995
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.500000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.500000Z",
                    "protocol": "tcp",
                    "time_taken": 89009,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 42659
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.440000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.440000Z",
                    "protocol": "tcp",
                    "time_taken": 89223,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 45311
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.380000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.380000Z",
                    "protocol": "tcp",
                    "time_taken": 89854,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 30387
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.320000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.320000Z",
                    "protocol": "tcp",
                    "time_taken": 89171,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 50044
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4146,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.260000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.260000Z",
                    "protocol": "tcp",
                    "time_taken": 89186,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13220
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.200000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.200000Z",
                    "protocol": "tcp",
                    "time_taken": 89449,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 22491
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.140000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.140000Z",
                    "protocol": "tcp",
                    "time_taken": 89343,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 47261
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.080000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.080000Z",
                    "protocol": "tcp",
                    "time_taken": 89258,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 50855
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.020000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.020000Z",
                    "protocol": "tcp",
                    "time_taken": 89961,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 45178
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:33.960000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:33.960000Z",
                    "protocol": "tcp",
                    "time_taken": 89127,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 50092
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:33.900000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:33.900000Z",
                    "protocol": "tcp",
                    "time_taken": 89973,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25744
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:33.840000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:33.840000Z",
                    "protocol": "tcp",
                    "time_taken": 89783,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 22981
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:33.780000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:33.780000Z",
                    "protocol": "tcp",
                    "time_taken": 89437,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43072
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:33.720000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:33.720000Z",
                    "protocol": "tcp",
                    "time_taken": 89923,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58486
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        }
    ]
}
{
    "company_id": "b321cdd2-9732-49f4-aa20-309b975ea60c",
    "event_id": "c523e540-6502-11f1-a5ae-2eff16f18868",
    "timestamp": "2026-06-10T19:29:59.700000",
    "detector_type": "network-access-abuse-detector",
    "event_type": "network-brute-force",
    "event_description": "Potential brute-force activity or protocol abuse.",
    "source_type": "custom_collector",
    "source_id": "8c60127d-b083-411a-ba9c-d4533589a318",
    "from_playback": false,
    "adversary_types": [
        "Network Brute Force"
    ],
    "incident_grouping_fields": {
        "src_ip": "192.168.59.235",
        "src_label": "0"
    },
    "events_grouping_fields": {
        "transport_protocol": "tcp",
        "port": 3389,
        "dest_ip": "10.10.40.5",
        "dest_label": "0",
        "service": "rdp"
    },
    "raw_data": [
        {
            "timestamp": "2026-06-10T19:30:19.680000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.680000Z",
                    "protocol": "tcp",
                    "time_taken": 89648,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 28018
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.620000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.620000Z",
                    "protocol": "tcp",
                    "time_taken": 89058,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 59375
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.560000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.560000Z",
                    "protocol": "tcp",
                    "time_taken": 89951,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 19021
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.500000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.500000Z",
                    "protocol": "tcp",
                    "time_taken": 89441,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 41975
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.440000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.440000Z",
                    "protocol": "tcp",
                    "time_taken": 89562,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 27223
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.380000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.380000Z",
                    "protocol": "tcp",
                    "time_taken": 89571,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 42673
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.320000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.320000Z",
                    "protocol": "tcp",
                    "time_taken": 89136,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 33473
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.260000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.260000Z",
                    "protocol": "tcp",
                    "time_taken": 89073,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 19747
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.200000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.200000Z",
                    "protocol": "tcp",
                    "time_taken": 89342,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13045
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.140000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.140000Z",
                    "protocol": "tcp",
                    "time_taken": 89886,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 33237
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.080000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.080000Z",
                    "protocol": "tcp",
                    "time_taken": 89539,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 48190
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4146,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.020000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.020000Z",
                    "protocol": "tcp",
                    "time_taken": 89329,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 33672
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.960000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.960000Z",
                    "protocol": "tcp",
                    "time_taken": 89885,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 53482
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.900000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.900000Z",
                    "protocol": "tcp",
                    "time_taken": 89081,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 48323
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.840000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.840000Z",
                    "protocol": "tcp",
                    "time_taken": 89148,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 32597
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.780000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.780000Z",
                    "protocol": "tcp",
                    "time_taken": 89077,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 44663
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.720000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.720000Z",
                    "protocol": "tcp",
                    "time_taken": 89616,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 30716
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.660000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.660000Z",
                    "protocol": "tcp",
                    "time_taken": 89225,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 53401
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.600000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.600000Z",
                    "protocol": "tcp",
                    "time_taken": 89224,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 60705
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.540000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.540000Z",
                    "protocol": "tcp",
                    "time_taken": 89048,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 34823
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.480000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.480000Z",
                    "protocol": "tcp",
                    "time_taken": 89852,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 36383
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.420000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.420000Z",
                    "protocol": "tcp",
                    "time_taken": 89630,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43297
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.360000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.360000Z",
                    "protocol": "tcp",
                    "time_taken": 89590,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 38487
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.300000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.300000Z",
                    "protocol": "tcp",
                    "time_taken": 89242,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 39424
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.240000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.240000Z",
                    "protocol": "tcp",
                    "time_taken": 89208,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 15812
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.180000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.180000Z",
                    "protocol": "tcp",
                    "time_taken": 89845,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 21199
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.120000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.120000Z",
                    "protocol": "tcp",
                    "time_taken": 89895,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 17047
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.060000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.060000Z",
                    "protocol": "tcp",
                    "time_taken": 89932,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 46687
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18Z",
                    "protocol": "tcp",
                    "time_taken": 89190,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 29247
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.940000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.940000Z",
                    "protocol": "tcp",
                    "time_taken": 89134,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 22704
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.880000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.880000Z",
                    "protocol": "tcp",
                    "time_taken": 89813,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 39463
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.820000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.820000Z",
                    "protocol": "tcp",
                    "time_taken": 89949,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 42477
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.760000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.760000Z",
                    "protocol": "tcp",
                    "time_taken": 89827,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 22843
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.700000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.700000Z",
                    "protocol": "tcp",
                    "time_taken": 89102,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 42837
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.640000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.640000Z",
                    "protocol": "tcp",
                    "time_taken": 89035,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 11691
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.580000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.580000Z",
                    "protocol": "tcp",
                    "time_taken": 89503,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 14528
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.520000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.520000Z",
                    "protocol": "tcp",
                    "time_taken": 89611,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 50668
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4154,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.460000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.460000Z",
                    "protocol": "tcp",
                    "time_taken": 89793,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 42806
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.400000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.400000Z",
                    "protocol": "tcp",
                    "time_taken": 89221,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 15730
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4146,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.340000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.340000Z",
                    "protocol": "tcp",
                    "time_taken": 89554,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58119
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.280000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.280000Z",
                    "protocol": "tcp",
                    "time_taken": 89805,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 63370
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.220000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.220000Z",
                    "protocol": "tcp",
                    "time_taken": 89537,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 62425
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.160000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.160000Z",
                    "protocol": "tcp",
                    "time_taken": 89835,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 24606
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.100000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.100000Z",
                    "protocol": "tcp",
                    "time_taken": 89366,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 14197
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.040000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.040000Z",
                    "protocol": "tcp",
                    "time_taken": 89767,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 29271
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.980000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.980000Z",
                    "protocol": "tcp",
                    "time_taken": 89273,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 24286
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.920000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.920000Z",
                    "protocol": "tcp",
                    "time_taken": 89411,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25586
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.860000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.860000Z",
                    "protocol": "tcp",
                    "time_taken": 89990,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54551
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.800000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.800000Z",
                    "protocol": "tcp",
                    "time_taken": 89391,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 37407
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.740000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.740000Z",
                    "protocol": "tcp",
                    "time_taken": 89357,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 60025
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.680000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.680000Z",
                    "protocol": "tcp",
                    "time_taken": 89407,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 22117
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.620000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.620000Z",
                    "protocol": "tcp",
                    "time_taken": 89399,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54956
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.560000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.560000Z",
                    "protocol": "tcp",
                    "time_taken": 89673,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 63892
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.500000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.500000Z",
                    "protocol": "tcp",
                    "time_taken": 89601,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 16827
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.440000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.440000Z",
                    "protocol": "tcp",
                    "time_taken": 89802,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 44948
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.380000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.380000Z",
                    "protocol": "tcp",
                    "time_taken": 89813,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 28602
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.320000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.320000Z",
                    "protocol": "tcp",
                    "time_taken": 89784,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 55905
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.260000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.260000Z",
                    "protocol": "tcp",
                    "time_taken": 89106,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43913
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.200000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.200000Z",
                    "protocol": "tcp",
                    "time_taken": 89685,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 35910
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.140000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.140000Z",
                    "protocol": "tcp",
                    "time_taken": 89404,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 15362
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.080000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.080000Z",
                    "protocol": "tcp",
                    "time_taken": 89638,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 61412
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.020000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.020000Z",
                    "protocol": "tcp",
                    "time_taken": 89899,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20726
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.960000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.960000Z",
                    "protocol": "tcp",
                    "time_taken": 89376,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58522
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.900000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.900000Z",
                    "protocol": "tcp",
                    "time_taken": 89110,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54270
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.840000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.840000Z",
                    "protocol": "tcp",
                    "time_taken": 89487,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 41978
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.780000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.780000Z",
                    "protocol": "tcp",
                    "time_taken": 89313,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 42002
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.720000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.720000Z",
                    "protocol": "tcp",
                    "time_taken": 89447,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 52310
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.660000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.660000Z",
                    "protocol": "tcp",
                    "time_taken": 89016,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 50677
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.600000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.600000Z",
                    "protocol": "tcp",
                    "time_taken": 89016,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58195
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4154,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.540000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.540000Z",
                    "protocol": "tcp",
                    "time_taken": 89650,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 47414
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4146,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.480000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.480000Z",
                    "protocol": "tcp",
                    "time_taken": 89964,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 32039
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.420000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.420000Z",
                    "protocol": "tcp",
                    "time_taken": 89467,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 24851
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.360000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.360000Z",
                    "protocol": "tcp",
                    "time_taken": 89708,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 37540
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.300000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.300000Z",
                    "protocol": "tcp",
                    "time_taken": 89233,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 23598
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.240000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.240000Z",
                    "protocol": "tcp",
                    "time_taken": 89482,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 17410
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.180000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.180000Z",
                    "protocol": "tcp",
                    "time_taken": 89130,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 28286
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.120000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.120000Z",
                    "protocol": "tcp",
                    "time_taken": 89970,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 55173
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4154,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.060000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.060000Z",
                    "protocol": "tcp",
                    "time_taken": 89501,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 16581
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15Z",
                    "protocol": "tcp",
                    "time_taken": 89597,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 14840
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.940000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.940000Z",
                    "protocol": "tcp",
                    "time_taken": 89873,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 55504
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.880000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.880000Z",
                    "protocol": "tcp",
                    "time_taken": 89627,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 50384
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.820000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.820000Z",
                    "protocol": "tcp",
                    "time_taken": 89918,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 48651
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.760000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.760000Z",
                    "protocol": "tcp",
                    "time_taken": 89223,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 55811
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.700000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.700000Z",
                    "protocol": "tcp",
                    "time_taken": 89922,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26229
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.640000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.640000Z",
                    "protocol": "tcp",
                    "time_taken": 89605,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20193
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.580000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.580000Z",
                    "protocol": "tcp",
                    "time_taken": 89987,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 56581
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.520000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.520000Z",
                    "protocol": "tcp",
                    "time_taken": 89404,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 29992
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.460000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.460000Z",
                    "protocol": "tcp",
                    "time_taken": 89196,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 44087
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.400000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.400000Z",
                    "protocol": "tcp",
                    "time_taken": 89837,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58165
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.340000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.340000Z",
                    "protocol": "tcp",
                    "time_taken": 89722,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 65424
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.280000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.280000Z",
                    "protocol": "tcp",
                    "time_taken": 89409,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 39043
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.220000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.220000Z",
                    "protocol": "tcp",
                    "time_taken": 89064,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 17455
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.160000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.160000Z",
                    "protocol": "tcp",
                    "time_taken": 89572,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 56024
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.100000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.100000Z",
                    "protocol": "tcp",
                    "time_taken": 89510,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 32409
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.040000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.040000Z",
                    "protocol": "tcp",
                    "time_taken": 89337,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 56002
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:13.980000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:13.980000Z",
                    "protocol": "tcp",
                    "time_taken": 89147,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 17451
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:13.920000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:13.920000Z",
                    "protocol": "tcp",
                    "time_taken": 89989,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 50872
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:13.860000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:13.860000Z",
                    "protocol": "tcp",
                    "time_taken": 89332,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54145
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:13.800000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:13.800000Z",
                    "protocol": "tcp",
                    "time_taken": 89479,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 34980
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:13.740000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:13.740000Z",
                    "protocol": "tcp",
                    "time_taken": 89100,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 21034
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        }
    ]
}{
    "company_id": "b321cdd2-9732-49f4-aa20-309b975ea60c",
    "event_id": "dcfb6940-6502-11f1-a5ae-2eff16f18868",
    "timestamp": "2026-06-10T19:30:39.700000",
    "detector_type": "network-access-abuse-detector",
    "event_type": "network-brute-force",
    "event_description": "Potential brute-force activity or protocol abuse.",
    "source_type": "custom_collector",
    "source_id": "8c60127d-b083-411a-ba9c-d4533589a318",
    "from_playback": false,
    "adversary_types": [
        "Network Brute Force"
    ],
    "incident_grouping_fields": {
        "src_ip": "192.168.59.235",
        "src_label": "0"
    },
    "events_grouping_fields": {
        "transport_protocol": "tcp",
        "port": 3389,
        "dest_ip": "10.10.40.5",
        "dest_label": "0",
        "service": "rdp"
    },
    "raw_data": [
        {
            "timestamp": "2026-06-10T19:30:59.700000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.700000Z",
                    "protocol": "tcp",
                    "time_taken": 89728,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 32725
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.640000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.640000Z",
                    "protocol": "tcp",
                    "time_taken": 89398,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26454
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.580000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.580000Z",
                    "protocol": "tcp",
                    "time_taken": 89817,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43852
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.520000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.520000Z",
                    "protocol": "tcp",
                    "time_taken": 89663,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 14128
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.460000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.460000Z",
                    "protocol": "tcp",
                    "time_taken": 89631,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20953
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.400000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.400000Z",
                    "protocol": "tcp",
                    "time_taken": 89168,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 64812
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.340000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.340000Z",
                    "protocol": "tcp",
                    "time_taken": 89921,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 64087
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.280000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.280000Z",
                    "protocol": "tcp",
                    "time_taken": 89302,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13094
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.220000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.220000Z",
                    "protocol": "tcp",
                    "time_taken": 89447,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 60086
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.160000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.160000Z",
                    "protocol": "tcp",
                    "time_taken": 89043,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 47469
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.100000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.100000Z",
                    "protocol": "tcp",
                    "time_taken": 89841,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 61524
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.040000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.040000Z",
                    "protocol": "tcp",
                    "time_taken": 89021,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 39659
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.980000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.980000Z",
                    "protocol": "tcp",
                    "time_taken": 89464,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20943
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4146,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.920000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.920000Z",
                    "protocol": "tcp",
                    "time_taken": 89727,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26880
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4143,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.860000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.860000Z",
                    "protocol": "tcp",
                    "time_taken": 89700,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 23241
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.800000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.800000Z",
                    "protocol": "tcp",
                    "time_taken": 89880,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 38744
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.740000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.740000Z",
                    "protocol": "tcp",
                    "time_taken": 89133,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 59400
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.680000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.680000Z",
                    "protocol": "tcp",
                    "time_taken": 89875,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 44595
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.620000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.620000Z",
                    "protocol": "tcp",
                    "time_taken": 89391,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 56856
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.560000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.560000Z",
                    "protocol": "tcp",
                    "time_taken": 89098,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 35863
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.500000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.500000Z",
                    "protocol": "tcp",
                    "time_taken": 89573,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 40709
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.440000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.440000Z",
                    "protocol": "tcp",
                    "time_taken": 89320,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 29011
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.380000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.380000Z",
                    "protocol": "tcp",
                    "time_taken": 89334,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 36210
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.320000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.320000Z",
                    "protocol": "tcp",
                    "time_taken": 89377,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 60723
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.260000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.260000Z",
                    "protocol": "tcp",
                    "time_taken": 89989,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26604
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.200000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.200000Z",
                    "protocol": "tcp",
                    "time_taken": 89614,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 63105
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.140000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.140000Z",
                    "protocol": "tcp",
                    "time_taken": 89009,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 48292
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4154,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.080000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.080000Z",
                    "protocol": "tcp",
                    "time_taken": 89744,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26229
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.020000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.020000Z",
                    "protocol": "tcp",
                    "time_taken": 89425,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43474
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.960000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.960000Z",
                    "protocol": "tcp",
                    "time_taken": 89844,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 15236
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.900000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.900000Z",
                    "protocol": "tcp",
                    "time_taken": 89167,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 15528
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.840000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.840000Z",
                    "protocol": "tcp",
                    "time_taken": 89190,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 30252
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.780000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.780000Z",
                    "protocol": "tcp",
                    "time_taken": 89720,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 10219
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.720000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.720000Z",
                    "protocol": "tcp",
                    "time_taken": 89151,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58185
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.660000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.660000Z",
                    "protocol": "tcp",
                    "time_taken": 89424,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 64040
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.600000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.600000Z",
                    "protocol": "tcp",
                    "time_taken": 89735,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 59364
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.540000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.540000Z",
                    "protocol": "tcp",
                    "time_taken": 89689,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25559
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.480000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.480000Z",
                    "protocol": "tcp",
                    "time_taken": 89817,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54153
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.420000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.420000Z",
                    "protocol": "tcp",
                    "time_taken": 89807,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 55408
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.360000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.360000Z",
                    "protocol": "tcp",
                    "time_taken": 89373,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 12214
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4146,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.300000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.300000Z",
                    "protocol": "tcp",
                    "time_taken": 89447,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 48146
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.240000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.240000Z",
                    "protocol": "tcp",
                    "time_taken": 89722,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54412
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.180000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.180000Z",
                    "protocol": "tcp",
                    "time_taken": 89452,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 27186
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.120000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.120000Z",
                    "protocol": "tcp",
                    "time_taken": 89764,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 31148
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.060000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.060000Z",
                    "protocol": "tcp",
                    "time_taken": 89527,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 10756
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57Z",
                    "protocol": "tcp",
                    "time_taken": 89114,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58227
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.940000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.940000Z",
                    "protocol": "tcp",
                    "time_taken": 89296,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 35277
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.880000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.880000Z",
                    "protocol": "tcp",
                    "time_taken": 89545,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13636
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.820000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.820000Z",
                    "protocol": "tcp",
                    "time_taken": 89369,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20540
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.760000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.760000Z",
                    "protocol": "tcp",
                    "time_taken": 89044,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 64875
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.700000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.700000Z",
                    "protocol": "tcp",
                    "time_taken": 89372,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 34351
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.640000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.640000Z",
                    "protocol": "tcp",
                    "time_taken": 89564,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 41455
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.580000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.580000Z",
                    "protocol": "tcp",
                    "time_taken": 89594,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 44870
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.520000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.520000Z",
                    "protocol": "tcp",
                    "time_taken": 89136,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 36864
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.460000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.460000Z",
                    "protocol": "tcp",
                    "time_taken": 89689,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43687
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.400000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.400000Z",
                    "protocol": "tcp",
                    "time_taken": 89836,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13862
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.340000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.340000Z",
                    "protocol": "tcp",
                    "time_taken": 89941,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54087
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.280000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.280000Z",
                    "protocol": "tcp",
                    "time_taken": 89663,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 45040
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4143,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.220000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.220000Z",
                    "protocol": "tcp",
                    "time_taken": 89431,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 57499
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.160000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.160000Z",
                    "protocol": "tcp",
                    "time_taken": 89651,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 34738
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.100000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.100000Z",
                    "protocol": "tcp",
                    "time_taken": 89010,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 39970
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4154,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.040000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.040000Z",
                    "protocol": "tcp",
                    "time_taken": 89009,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54293
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.980000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.980000Z",
                    "protocol": "tcp",
                    "time_taken": 89535,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 24340
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.920000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.920000Z",
                    "protocol": "tcp",
                    "time_taken": 89615,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26795
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.860000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.860000Z",
                    "protocol": "tcp",
                    "time_taken": 89472,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 36294
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.800000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.800000Z",
                    "protocol": "tcp",
                    "time_taken": 89817,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 23619
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.740000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.740000Z",
                    "protocol": "tcp",
                    "time_taken": 89702,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20596
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.680000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.680000Z",
                    "protocol": "tcp",
                    "time_taken": 89496,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 46420
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.620000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.620000Z",
                    "protocol": "tcp",
                    "time_taken": 89500,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 57347
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.560000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.560000Z",
                    "protocol": "tcp",
                    "time_taken": 89696,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 46468
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4143,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.500000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.500000Z",
                    "protocol": "tcp",
                    "time_taken": 89248,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 19447
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.440000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.440000Z",
                    "protocol": "tcp",
                    "time_taken": 89745,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 17431
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.380000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.380000Z",
                    "protocol": "tcp",
                    "time_taken": 89190,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 62839
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.320000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.320000Z",
                    "protocol": "tcp",
                    "time_taken": 89099,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 52734
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.260000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.260000Z",
                    "protocol": "tcp",
                    "time_taken": 89849,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 51645
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.200000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.200000Z",
                    "protocol": "tcp",
                    "time_taken": 89118,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 59241
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.140000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.140000Z",
                    "protocol": "tcp",
                    "time_taken": 89069,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26255
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.080000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.080000Z",
                    "protocol": "tcp",
                    "time_taken": 89815,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 19711
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.020000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.020000Z",
                    "protocol": "tcp",
                    "time_taken": 89668,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 28085
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.960000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.960000Z",
                    "protocol": "tcp",
                    "time_taken": 89180,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43248
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.900000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.900000Z",
                    "protocol": "tcp",
                    "time_taken": 89967,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54134
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.840000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.840000Z",
                    "protocol": "tcp",
                    "time_taken": 89239,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 22179
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.780000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.780000Z",
                    "protocol": "tcp",
                    "time_taken": 89547,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58150
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.720000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.720000Z",
                    "protocol": "tcp",
                    "time_taken": 89494,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 60265
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.660000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.660000Z",
                    "protocol": "tcp",
                    "time_taken": 89196,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 42287
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.600000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.600000Z",
                    "protocol": "tcp",
                    "time_taken": 89851,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 44801
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.540000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.540000Z",
                    "protocol": "tcp",
                    "time_taken": 89621,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 60815
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.480000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.480000Z",
                    "protocol": "tcp",
                    "time_taken": 89775,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 29635
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.420000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.420000Z",
                    "protocol": "tcp",
                    "time_taken": 89275,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 47809
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.360000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.360000Z",
                    "protocol": "tcp",
                    "time_taken": 89377,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 11836
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.300000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.300000Z",
                    "protocol": "tcp",
                    "time_taken": 89064,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 53445
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4143,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.240000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.240000Z",
                    "protocol": "tcp",
                    "time_taken": 89825,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 33690
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.180000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.180000Z",
                    "protocol": "tcp",
                    "time_taken": 89812,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43940
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.120000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.120000Z",
                    "protocol": "tcp",
                    "time_taken": 89424,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 60432
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.060000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.060000Z",
                    "protocol": "tcp",
                    "time_taken": 89669,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 55262
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54Z",
                    "protocol": "tcp",
                    "time_taken": 89010,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 34596
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:53.940000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:53.940000Z",
                    "protocol": "tcp",
                    "time_taken": 89954,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 40835
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:53.880000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:53.880000Z",
                    "protocol": "tcp",
                    "time_taken": 89015,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 18497
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:53.820000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:53.820000Z",
                    "protocol": "tcp",
                    "time_taken": 89110,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 27955
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:53.760000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:53.760000Z",
                    "protocol": "tcp",
                    "time_taken": 89945,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 39695
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        }
    ]
}
{
    "company_id": "b321cdd2-9732-49f4-aa20-309b975ea60c",
    "event_id": "d10fa740-6502-11f1-a5ae-2eff16f18868",
    "timestamp": "2026-06-10T19:30:19.700000",
    "detector_type": "network-access-abuse-detector",
    "event_type": "network-brute-force",
    "event_description": "Potential brute-force activity or protocol abuse.",
    "source_type": "custom_collector",
    "source_id": "8c60127d-b083-411a-ba9c-d4533589a318",
    "from_playback": false,
    "adversary_types": [
        "Network Brute Force"
    ],
    "incident_grouping_fields": {
        "src_ip": "192.168.59.235",
        "src_label": "0"
    },
    "events_grouping_fields": {
        "transport_protocol": "tcp",
        "port": 3389,
        "dest_ip": "10.10.40.5",
        "dest_label": "0",
        "service": "rdp"
    },
    "raw_data": [
        {
            "timestamp": "2026-06-10T19:30:39.660000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.660000Z",
                    "protocol": "tcp",
                    "time_taken": 89739,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 52602
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.600000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.600000Z",
                    "protocol": "tcp",
                    "time_taken": 89274,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 11627
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.540000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.540000Z",
                    "protocol": "tcp",
                    "time_taken": 89049,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 52587
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4154,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.480000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.480000Z",
                    "protocol": "tcp",
                    "time_taken": 89759,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58876
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.420000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.420000Z",
                    "protocol": "tcp",
                    "time_taken": 89652,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 23490
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.360000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.360000Z",
                    "protocol": "tcp",
                    "time_taken": 89523,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 10660
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.300000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.300000Z",
                    "protocol": "tcp",
                    "time_taken": 89073,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 39613
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.240000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.240000Z",
                    "protocol": "tcp",
                    "time_taken": 89473,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 28621
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.180000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.180000Z",
                    "protocol": "tcp",
                    "time_taken": 89541,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 40111
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.120000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.120000Z",
                    "protocol": "tcp",
                    "time_taken": 89282,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 61529
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4154,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.060000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.060000Z",
                    "protocol": "tcp",
                    "time_taken": 89268,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13922
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4154,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39Z",
                    "protocol": "tcp",
                    "time_taken": 89636,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 59567
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.940000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.940000Z",
                    "protocol": "tcp",
                    "time_taken": 89190,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 59349
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.880000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.880000Z",
                    "protocol": "tcp",
                    "time_taken": 89865,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25815
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4146,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.820000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.820000Z",
                    "protocol": "tcp",
                    "time_taken": 89349,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 28574
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.760000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.760000Z",
                    "protocol": "tcp",
                    "time_taken": 89609,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26501
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.700000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.700000Z",
                    "protocol": "tcp",
                    "time_taken": 89596,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 49993
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.640000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.640000Z",
                    "protocol": "tcp",
                    "time_taken": 89400,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 33359
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.580000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.580000Z",
                    "protocol": "tcp",
                    "time_taken": 89216,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 30084
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.520000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.520000Z",
                    "protocol": "tcp",
                    "time_taken": 89062,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 46811
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.460000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.460000Z",
                    "protocol": "tcp",
                    "time_taken": 89598,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43486
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.400000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.400000Z",
                    "protocol": "tcp",
                    "time_taken": 89087,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13003
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.340000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.340000Z",
                    "protocol": "tcp",
                    "time_taken": 89602,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20775
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.280000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.280000Z",
                    "protocol": "tcp",
                    "time_taken": 89146,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13676
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.220000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.220000Z",
                    "protocol": "tcp",
                    "time_taken": 89613,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54615
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.160000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.160000Z",
                    "protocol": "tcp",
                    "time_taken": 89132,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 10118
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.100000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.100000Z",
                    "protocol": "tcp",
                    "time_taken": 89115,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 57805
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.040000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.040000Z",
                    "protocol": "tcp",
                    "time_taken": 89619,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 10608
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.980000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.980000Z",
                    "protocol": "tcp",
                    "time_taken": 89202,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 39029
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.920000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.920000Z",
                    "protocol": "tcp",
                    "time_taken": 89638,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 48144
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.860000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.860000Z",
                    "protocol": "tcp",
                    "time_taken": 89092,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 61553
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.800000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.800000Z",
                    "protocol": "tcp",
                    "time_taken": 89844,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26062
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.740000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.740000Z",
                    "protocol": "tcp",
                    "time_taken": 89002,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 34278
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.680000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.680000Z",
                    "protocol": "tcp",
                    "time_taken": 89808,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 11398
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.620000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.620000Z",
                    "protocol": "tcp",
                    "time_taken": 89743,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25452
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.560000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.560000Z",
                    "protocol": "tcp",
                    "time_taken": 89184,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54980
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.500000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.500000Z",
                    "protocol": "tcp",
                    "time_taken": 89347,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 51344
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.440000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.440000Z",
                    "protocol": "tcp",
                    "time_taken": 89977,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 17133
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.380000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.380000Z",
                    "protocol": "tcp",
                    "time_taken": 89919,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 44778
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.320000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.320000Z",
                    "protocol": "tcp",
                    "time_taken": 89216,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58600
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.260000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.260000Z",
                    "protocol": "tcp",
                    "time_taken": 89842,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 40381
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.200000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.200000Z",
                    "protocol": "tcp",
                    "time_taken": 89231,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 44331
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.140000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.140000Z",
                    "protocol": "tcp",
                    "time_taken": 89504,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 27334
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.080000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.080000Z",
                    "protocol": "tcp",
                    "time_taken": 89071,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 41934
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.020000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.020000Z",
                    "protocol": "tcp",
                    "time_taken": 89528,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 46641
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.960000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.960000Z",
                    "protocol": "tcp",
                    "time_taken": 89411,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 35336
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.900000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.900000Z",
                    "protocol": "tcp",
                    "time_taken": 89709,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 22908
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.840000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.840000Z",
                    "protocol": "tcp",
                    "time_taken": 89503,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 63922
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.780000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.780000Z",
                    "protocol": "tcp",
                    "time_taken": 89491,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 64421
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.720000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.720000Z",
                    "protocol": "tcp",
                    "time_taken": 89130,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26107
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.660000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.660000Z",
                    "protocol": "tcp",
                    "time_taken": 89475,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 32326
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.600000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.600000Z",
                    "protocol": "tcp",
                    "time_taken": 89873,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25308
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.540000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.540000Z",
                    "protocol": "tcp",
                    "time_taken": 89310,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 52449
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.480000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.480000Z",
                    "protocol": "tcp",
                    "time_taken": 89376,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 32135
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.420000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.420000Z",
                    "protocol": "tcp",
                    "time_taken": 89608,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 23174
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.360000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.360000Z",
                    "protocol": "tcp",
                    "time_taken": 89910,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20968
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.300000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.300000Z",
                    "protocol": "tcp",
                    "time_taken": 89722,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 49766
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.240000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.240000Z",
                    "protocol": "tcp",
                    "time_taken": 89258,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 40863
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.180000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.180000Z",
                    "protocol": "tcp",
                    "time_taken": 89435,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 17550
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.120000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.120000Z",
                    "protocol": "tcp",
                    "time_taken": 89106,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 57299
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.060000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.060000Z",
                    "protocol": "tcp",
                    "time_taken": 89826,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 51424
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36Z",
                    "protocol": "tcp",
                    "time_taken": 89875,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 64619
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.940000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.940000Z",
                    "protocol": "tcp",
                    "time_taken": 89177,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 40815
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.880000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.880000Z",
                    "protocol": "tcp",
                    "time_taken": 89448,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 36775
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.820000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.820000Z",
                    "protocol": "tcp",
                    "time_taken": 89611,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 61329
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.760000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.760000Z",
                    "protocol": "tcp",
                    "time_taken": 89673,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43832
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.700000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.700000Z",
                    "protocol": "tcp",
                    "time_taken": 89575,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 47547
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.640000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.640000Z",
                    "protocol": "tcp",
                    "time_taken": 89870,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54448
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.580000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.580000Z",
                    "protocol": "tcp",
                    "time_taken": 89535,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 31483
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.520000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.520000Z",
                    "protocol": "tcp",
                    "time_taken": 89558,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58582
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.460000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.460000Z",
                    "protocol": "tcp",
                    "time_taken": 89325,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 51193
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.400000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.400000Z",
                    "protocol": "tcp",
                    "time_taken": 89066,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 38485
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.340000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.340000Z",
                    "protocol": "tcp",
                    "time_taken": 89409,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 31959
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.280000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.280000Z",
                    "protocol": "tcp",
                    "time_taken": 89876,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25071
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.220000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.220000Z",
                    "protocol": "tcp",
                    "time_taken": 89447,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 29164
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4146,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.160000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.160000Z",
                    "protocol": "tcp",
                    "time_taken": 89453,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20523
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.100000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.100000Z",
                    "protocol": "tcp",
                    "time_taken": 89364,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 24334
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.040000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.040000Z",
                    "protocol": "tcp",
                    "time_taken": 89862,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 45982
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.980000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.980000Z",
                    "protocol": "tcp",
                    "time_taken": 89212,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25280
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.920000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.920000Z",
                    "protocol": "tcp",
                    "time_taken": 89852,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 62897
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.860000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.860000Z",
                    "protocol": "tcp",
                    "time_taken": 89673,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 28964
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.800000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.800000Z",
                    "protocol": "tcp",
                    "time_taken": 89707,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 52459
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.740000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.740000Z",
                    "protocol": "tcp",
                    "time_taken": 89924,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 15367
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.680000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.680000Z",
                    "protocol": "tcp",
                    "time_taken": 89083,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 34327
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.620000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.620000Z",
                    "protocol": "tcp",
                    "time_taken": 89179,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 48804
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.560000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.560000Z",
                    "protocol": "tcp",
                    "time_taken": 89746,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 10995
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.500000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.500000Z",
                    "protocol": "tcp",
                    "time_taken": 89009,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 42659
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.440000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.440000Z",
                    "protocol": "tcp",
                    "time_taken": 89223,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 45311
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.380000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.380000Z",
                    "protocol": "tcp",
                    "time_taken": 89854,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 30387
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.320000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.320000Z",
                    "protocol": "tcp",
                    "time_taken": 89171,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 50044
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4146,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.260000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.260000Z",
                    "protocol": "tcp",
                    "time_taken": 89186,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13220
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.200000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.200000Z",
                    "protocol": "tcp",
                    "time_taken": 89449,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 22491
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.140000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.140000Z",
                    "protocol": "tcp",
                    "time_taken": 89343,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 47261
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.080000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.080000Z",
                    "protocol": "tcp",
                    "time_taken": 89258,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 50855
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.020000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.020000Z",
                    "protocol": "tcp",
                    "time_taken": 89961,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 45178
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:33.960000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:33.960000Z",
                    "protocol": "tcp",
                    "time_taken": 89127,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 50092
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:33.900000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:33.900000Z",
                    "protocol": "tcp",
                    "time_taken": 89973,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25744
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:33.840000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:33.840000Z",
                    "protocol": "tcp",
                    "time_taken": 89783,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 22981
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:33.780000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:33.780000Z",
                    "protocol": "tcp",
                    "time_taken": 89437,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43072
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:33.720000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:33.720000Z",
                    "protocol": "tcp",
                    "time_taken": 89923,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58486
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        }
    ]
}
{
    "company_id": "b321cdd2-9732-49f4-aa20-309b975ea60c",
    "event_id": "c523e540-6502-11f1-a5ae-2eff16f18868",
    "timestamp": "2026-06-10T19:29:59.700000",
    "detector_type": "network-access-abuse-detector",
    "event_type": "network-brute-force",
    "event_description": "Potential brute-force activity or protocol abuse.",
    "source_type": "custom_collector",
    "source_id": "8c60127d-b083-411a-ba9c-d4533589a318",
    "from_playback": false,
    "adversary_types": [
        "Network Brute Force"
    ],
    "incident_grouping_fields": {
        "src_ip": "192.168.59.235",
        "src_label": "0"
    },
    "events_grouping_fields": {
        "transport_protocol": "tcp",
        "port": 3389,
        "dest_ip": "10.10.40.5",
        "dest_label": "0",
        "service": "rdp"
    },
    "raw_data": [
        {
            "timestamp": "2026-06-10T19:30:19.680000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.680000Z",
                    "protocol": "tcp",
                    "time_taken": 89648,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 28018
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.620000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.620000Z",
                    "protocol": "tcp",
                    "time_taken": 89058,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 59375
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.560000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.560000Z",
                    "protocol": "tcp",
                    "time_taken": 89951,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 19021
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.500000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.500000Z",
                    "protocol": "tcp",
                    "time_taken": 89441,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 41975
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.440000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.440000Z",
                    "protocol": "tcp",
                    "time_taken": 89562,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 27223
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.380000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.380000Z",
                    "protocol": "tcp",
                    "time_taken": 89571,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 42673
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.320000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.320000Z",
                    "protocol": "tcp",
                    "time_taken": 89136,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 33473
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.260000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.260000Z",
                    "protocol": "tcp",
                    "time_taken": 89073,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 19747
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.200000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.200000Z",
                    "protocol": "tcp",
                    "time_taken": 89342,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13045
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.140000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.140000Z",
                    "protocol": "tcp",
                    "time_taken": 89886,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 33237
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.080000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.080000Z",
                    "protocol": "tcp",
                    "time_taken": 89539,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 48190
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4146,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.020000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.020000Z",
                    "protocol": "tcp",
                    "time_taken": 89329,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 33672
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.960000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.960000Z",
                    "protocol": "tcp",
                    "time_taken": 89885,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 53482
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.900000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.900000Z",
                    "protocol": "tcp",
                    "time_taken": 89081,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 48323
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.840000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.840000Z",
                    "protocol": "tcp",
                    "time_taken": 89148,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 32597
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.780000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.780000Z",
                    "protocol": "tcp",
                    "time_taken": 89077,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 44663
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.720000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.720000Z",
                    "protocol": "tcp",
                    "time_taken": 89616,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 30716
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.660000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.660000Z",
                    "protocol": "tcp",
                    "time_taken": 89225,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 53401
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.600000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.600000Z",
                    "protocol": "tcp",
                    "time_taken": 89224,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 60705
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.540000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.540000Z",
                    "protocol": "tcp",
                    "time_taken": 89048,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 34823
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.480000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.480000Z",
                    "protocol": "tcp",
                    "time_taken": 89852,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 36383
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.420000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.420000Z",
                    "protocol": "tcp",
                    "time_taken": 89630,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43297
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.360000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.360000Z",
                    "protocol": "tcp",
                    "time_taken": 89590,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 38487
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.300000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.300000Z",
                    "protocol": "tcp",
                    "time_taken": 89242,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 39424
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.240000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.240000Z",
                    "protocol": "tcp",
                    "time_taken": 89208,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 15812
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.180000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.180000Z",
                    "protocol": "tcp",
                    "time_taken": 89845,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 21199
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.120000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.120000Z",
                    "protocol": "tcp",
                    "time_taken": 89895,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 17047
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.060000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.060000Z",
                    "protocol": "tcp",
                    "time_taken": 89932,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 46687
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18Z",
                    "protocol": "tcp",
                    "time_taken": 89190,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 29247
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.940000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.940000Z",
                    "protocol": "tcp",
                    "time_taken": 89134,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 22704
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.880000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.880000Z",
                    "protocol": "tcp",
                    "time_taken": 89813,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 39463
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.820000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.820000Z",
                    "protocol": "tcp",
                    "time_taken": 89949,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 42477
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.760000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.760000Z",
                    "protocol": "tcp",
                    "time_taken": 89827,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 22843
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.700000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.700000Z",
                    "protocol": "tcp",
                    "time_taken": 89102,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 42837
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.640000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.640000Z",
                    "protocol": "tcp",
                    "time_taken": 89035,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 11691
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.580000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.580000Z",
                    "protocol": "tcp",
                    "time_taken": 89503,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 14528
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.520000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.520000Z",
                    "protocol": "tcp",
                    "time_taken": 89611,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 50668
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4154,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.460000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.460000Z",
                    "protocol": "tcp",
                    "time_taken": 89793,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 42806
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.400000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.400000Z",
                    "protocol": "tcp",
                    "time_taken": 89221,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 15730
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4146,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.340000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.340000Z",
                    "protocol": "tcp",
                    "time_taken": 89554,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58119
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.280000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.280000Z",
                    "protocol": "tcp",
                    "time_taken": 89805,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 63370
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.220000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.220000Z",
                    "protocol": "tcp",
                    "time_taken": 89537,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 62425
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.160000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.160000Z",
                    "protocol": "tcp",
                    "time_taken": 89835,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 24606
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.100000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.100000Z",
                    "protocol": "tcp",
                    "time_taken": 89366,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 14197
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.040000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.040000Z",
                    "protocol": "tcp",
                    "time_taken": 89767,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 29271
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.980000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.980000Z",
                    "protocol": "tcp",
                    "time_taken": 89273,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 24286
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.920000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.920000Z",
                    "protocol": "tcp",
                    "time_taken": 89411,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25586
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.860000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.860000Z",
                    "protocol": "tcp",
                    "time_taken": 89990,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54551
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.800000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.800000Z",
                    "protocol": "tcp",
                    "time_taken": 89391,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 37407
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.740000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.740000Z",
                    "protocol": "tcp",
                    "time_taken": 89357,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 60025
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.680000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.680000Z",
                    "protocol": "tcp",
                    "time_taken": 89407,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 22117
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.620000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.620000Z",
                    "protocol": "tcp",
                    "time_taken": 89399,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54956
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.560000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.560000Z",
                    "protocol": "tcp",
                    "time_taken": 89673,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 63892
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.500000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.500000Z",
                    "protocol": "tcp",
                    "time_taken": 89601,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 16827
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.440000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.440000Z",
                    "protocol": "tcp",
                    "time_taken": 89802,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 44948
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.380000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.380000Z",
                    "protocol": "tcp",
                    "time_taken": 89813,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 28602
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.320000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.320000Z",
                    "protocol": "tcp",
                    "time_taken": 89784,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 55905
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.260000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.260000Z",
                    "protocol": "tcp",
                    "time_taken": 89106,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43913
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.200000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.200000Z",
                    "protocol": "tcp",
                    "time_taken": 89685,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 35910
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.140000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.140000Z",
                    "protocol": "tcp",
                    "time_taken": 89404,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 15362
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.080000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.080000Z",
                    "protocol": "tcp",
                    "time_taken": 89638,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 61412
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.020000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.020000Z",
                    "protocol": "tcp",
                    "time_taken": 89899,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20726
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.960000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.960000Z",
                    "protocol": "tcp",
                    "time_taken": 89376,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58522
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.900000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.900000Z",
                    "protocol": "tcp",
                    "time_taken": 89110,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54270
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.840000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.840000Z",
                    "protocol": "tcp",
                    "time_taken": 89487,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 41978
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.780000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.780000Z",
                    "protocol": "tcp",
                    "time_taken": 89313,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 42002
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.720000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.720000Z",
                    "protocol": "tcp",
                    "time_taken": 89447,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 52310
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.660000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.660000Z",
                    "protocol": "tcp",
                    "time_taken": 89016,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 50677
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.600000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.600000Z",
                    "protocol": "tcp",
                    "time_taken": 89016,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58195
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4154,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.540000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.540000Z",
                    "protocol": "tcp",
                    "time_taken": 89650,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 47414
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4146,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.480000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.480000Z",
                    "protocol": "tcp",
                    "time_taken": 89964,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 32039
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.420000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.420000Z",
                    "protocol": "tcp",
                    "time_taken": 89467,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 24851
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.360000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.360000Z",
                    "protocol": "tcp",
                    "time_taken": 89708,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 37540
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.300000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.300000Z",
                    "protocol": "tcp",
                    "time_taken": 89233,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 23598
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.240000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.240000Z",
                    "protocol": "tcp",
                    "time_taken": 89482,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 17410
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.180000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.180000Z",
                    "protocol": "tcp",
                    "time_taken": 89130,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 28286
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.120000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.120000Z",
                    "protocol": "tcp",
                    "time_taken": 89970,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 55173
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4154,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.060000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.060000Z",
                    "protocol": "tcp",
                    "time_taken": 89501,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 16581
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15Z",
                    "protocol": "tcp",
                    "time_taken": 89597,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 14840
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.940000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.940000Z",
                    "protocol": "tcp",
                    "time_taken": 89873,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 55504
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.880000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.880000Z",
                    "protocol": "tcp",
                    "time_taken": 89627,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 50384
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.820000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.820000Z",
                    "protocol": "tcp",
                    "time_taken": 89918,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 48651
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.760000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.760000Z",
                    "protocol": "tcp",
                    "time_taken": 89223,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 55811
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.700000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.700000Z",
                    "protocol": "tcp",
                    "time_taken": 89922,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26229
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.640000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.640000Z",
                    "protocol": "tcp",
                    "time_taken": 89605,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20193
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.580000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.580000Z",
                    "protocol": "tcp",
                    "time_taken": 89987,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 56581
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.520000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.520000Z",
                    "protocol": "tcp",
                    "time_taken": 89404,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 29992
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.460000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.460000Z",
                    "protocol": "tcp",
                    "time_taken": 89196,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 44087
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.400000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.400000Z",
                    "protocol": "tcp",
                    "time_taken": 89837,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58165
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.340000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.340000Z",
                    "protocol": "tcp",
                    "time_taken": 89722,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 65424
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.280000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.280000Z",
                    "protocol": "tcp",
                    "time_taken": 89409,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 39043
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.220000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.220000Z",
                    "protocol": "tcp",
                    "time_taken": 89064,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 17455
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.160000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.160000Z",
                    "protocol": "tcp",
                    "time_taken": 89572,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 56024
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.100000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.100000Z",
                    "protocol": "tcp",
                    "time_taken": 89510,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 32409
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.040000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.040000Z",
                    "protocol": "tcp",
                    "time_taken": 89337,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 56002
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:13.980000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:13.980000Z",
                    "protocol": "tcp",
                    "time_taken": 89147,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 17451
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:13.920000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:13.920000Z",
                    "protocol": "tcp",
                    "time_taken": 89989,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 50872
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:13.860000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:13.860000Z",
                    "protocol": "tcp",
                    "time_taken": 89332,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54145
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:13.800000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:13.800000Z",
                    "protocol": "tcp",
                    "time_taken": 89479,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 34980
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:13.740000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:13.740000Z",
                    "protocol": "tcp",
                    "time_taken": 89100,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 21034
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        }
    ]
}{
    "company_id": "b321cdd2-9732-49f4-aa20-309b975ea60c",
    "event_id": "dcfb6940-6502-11f1-a5ae-2eff16f18868",
    "timestamp": "2026-06-10T19:30:39.700000",
    "detector_type": "network-access-abuse-detector",
    "event_type": "network-brute-force",
    "event_description": "Potential brute-force activity or protocol abuse.",
    "source_type": "custom_collector",
    "source_id": "8c60127d-b083-411a-ba9c-d4533589a318",
    "from_playback": false,
    "adversary_types": [
        "Network Brute Force"
    ],
    "incident_grouping_fields": {
        "src_ip": "192.168.59.235",
        "src_label": "0"
    },
    "events_grouping_fields": {
        "transport_protocol": "tcp",
        "port": 3389,
        "dest_ip": "10.10.40.5",
        "dest_label": "0",
        "service": "rdp"
    },
    "raw_data": [
        {
            "timestamp": "2026-06-10T19:30:59.700000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.700000Z",
                    "protocol": "tcp",
                    "time_taken": 89728,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 32725
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.640000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.640000Z",
                    "protocol": "tcp",
                    "time_taken": 89398,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26454
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.580000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.580000Z",
                    "protocol": "tcp",
                    "time_taken": 89817,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43852
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.520000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.520000Z",
                    "protocol": "tcp",
                    "time_taken": 89663,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 14128
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.460000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.460000Z",
                    "protocol": "tcp",
                    "time_taken": 89631,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20953
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.400000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.400000Z",
                    "protocol": "tcp",
                    "time_taken": 89168,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 64812
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.340000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.340000Z",
                    "protocol": "tcp",
                    "time_taken": 89921,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 64087
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.280000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.280000Z",
                    "protocol": "tcp",
                    "time_taken": 89302,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13094
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.220000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.220000Z",
                    "protocol": "tcp",
                    "time_taken": 89447,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 60086
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.160000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.160000Z",
                    "protocol": "tcp",
                    "time_taken": 89043,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 47469
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.100000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.100000Z",
                    "protocol": "tcp",
                    "time_taken": 89841,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 61524
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:59.040000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:59.040000Z",
                    "protocol": "tcp",
                    "time_taken": 89021,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 39659
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.980000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.980000Z",
                    "protocol": "tcp",
                    "time_taken": 89464,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20943
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4146,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.920000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.920000Z",
                    "protocol": "tcp",
                    "time_taken": 89727,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26880
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4143,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.860000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.860000Z",
                    "protocol": "tcp",
                    "time_taken": 89700,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 23241
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.800000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.800000Z",
                    "protocol": "tcp",
                    "time_taken": 89880,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 38744
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.740000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.740000Z",
                    "protocol": "tcp",
                    "time_taken": 89133,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 59400
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.680000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.680000Z",
                    "protocol": "tcp",
                    "time_taken": 89875,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 44595
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.620000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.620000Z",
                    "protocol": "tcp",
                    "time_taken": 89391,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 56856
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.560000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.560000Z",
                    "protocol": "tcp",
                    "time_taken": 89098,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 35863
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.500000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.500000Z",
                    "protocol": "tcp",
                    "time_taken": 89573,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 40709
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.440000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.440000Z",
                    "protocol": "tcp",
                    "time_taken": 89320,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 29011
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.380000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.380000Z",
                    "protocol": "tcp",
                    "time_taken": 89334,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 36210
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.320000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.320000Z",
                    "protocol": "tcp",
                    "time_taken": 89377,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 60723
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.260000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.260000Z",
                    "protocol": "tcp",
                    "time_taken": 89989,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26604
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.200000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.200000Z",
                    "protocol": "tcp",
                    "time_taken": 89614,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 63105
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.140000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.140000Z",
                    "protocol": "tcp",
                    "time_taken": 89009,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 48292
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4154,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.080000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.080000Z",
                    "protocol": "tcp",
                    "time_taken": 89744,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26229
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:58.020000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:58.020000Z",
                    "protocol": "tcp",
                    "time_taken": 89425,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43474
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.960000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.960000Z",
                    "protocol": "tcp",
                    "time_taken": 89844,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 15236
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.900000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.900000Z",
                    "protocol": "tcp",
                    "time_taken": 89167,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 15528
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.840000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.840000Z",
                    "protocol": "tcp",
                    "time_taken": 89190,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 30252
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.780000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.780000Z",
                    "protocol": "tcp",
                    "time_taken": 89720,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 10219
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.720000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.720000Z",
                    "protocol": "tcp",
                    "time_taken": 89151,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58185
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.660000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.660000Z",
                    "protocol": "tcp",
                    "time_taken": 89424,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 64040
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.600000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.600000Z",
                    "protocol": "tcp",
                    "time_taken": 89735,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 59364
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.540000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.540000Z",
                    "protocol": "tcp",
                    "time_taken": 89689,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25559
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.480000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.480000Z",
                    "protocol": "tcp",
                    "time_taken": 89817,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54153
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.420000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.420000Z",
                    "protocol": "tcp",
                    "time_taken": 89807,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 55408
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.360000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.360000Z",
                    "protocol": "tcp",
                    "time_taken": 89373,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 12214
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4146,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.300000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.300000Z",
                    "protocol": "tcp",
                    "time_taken": 89447,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 48146
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.240000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.240000Z",
                    "protocol": "tcp",
                    "time_taken": 89722,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54412
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.180000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.180000Z",
                    "protocol": "tcp",
                    "time_taken": 89452,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 27186
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.120000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.120000Z",
                    "protocol": "tcp",
                    "time_taken": 89764,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 31148
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57.060000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57.060000Z",
                    "protocol": "tcp",
                    "time_taken": 89527,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 10756
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:57",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:57Z",
                    "protocol": "tcp",
                    "time_taken": 89114,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58227
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.940000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.940000Z",
                    "protocol": "tcp",
                    "time_taken": 89296,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 35277
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.880000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.880000Z",
                    "protocol": "tcp",
                    "time_taken": 89545,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13636
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.820000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.820000Z",
                    "protocol": "tcp",
                    "time_taken": 89369,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20540
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.760000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.760000Z",
                    "protocol": "tcp",
                    "time_taken": 89044,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 64875
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.700000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.700000Z",
                    "protocol": "tcp",
                    "time_taken": 89372,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 34351
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.640000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.640000Z",
                    "protocol": "tcp",
                    "time_taken": 89564,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 41455
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.580000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.580000Z",
                    "protocol": "tcp",
                    "time_taken": 89594,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 44870
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.520000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.520000Z",
                    "protocol": "tcp",
                    "time_taken": 89136,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 36864
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.460000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.460000Z",
                    "protocol": "tcp",
                    "time_taken": 89689,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43687
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.400000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.400000Z",
                    "protocol": "tcp",
                    "time_taken": 89836,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13862
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.340000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.340000Z",
                    "protocol": "tcp",
                    "time_taken": 89941,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54087
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.280000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.280000Z",
                    "protocol": "tcp",
                    "time_taken": 89663,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 45040
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4143,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.220000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.220000Z",
                    "protocol": "tcp",
                    "time_taken": 89431,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 57499
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.160000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.160000Z",
                    "protocol": "tcp",
                    "time_taken": 89651,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 34738
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.100000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.100000Z",
                    "protocol": "tcp",
                    "time_taken": 89010,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 39970
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4154,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:56.040000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:56.040000Z",
                    "protocol": "tcp",
                    "time_taken": 89009,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54293
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.980000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.980000Z",
                    "protocol": "tcp",
                    "time_taken": 89535,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 24340
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.920000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.920000Z",
                    "protocol": "tcp",
                    "time_taken": 89615,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26795
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.860000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.860000Z",
                    "protocol": "tcp",
                    "time_taken": 89472,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 36294
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.800000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.800000Z",
                    "protocol": "tcp",
                    "time_taken": 89817,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 23619
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.740000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.740000Z",
                    "protocol": "tcp",
                    "time_taken": 89702,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20596
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.680000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.680000Z",
                    "protocol": "tcp",
                    "time_taken": 89496,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 46420
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.620000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.620000Z",
                    "protocol": "tcp",
                    "time_taken": 89500,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 57347
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.560000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.560000Z",
                    "protocol": "tcp",
                    "time_taken": 89696,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 46468
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4143,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.500000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.500000Z",
                    "protocol": "tcp",
                    "time_taken": 89248,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 19447
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.440000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.440000Z",
                    "protocol": "tcp",
                    "time_taken": 89745,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 17431
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.380000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.380000Z",
                    "protocol": "tcp",
                    "time_taken": 89190,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 62839
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.320000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.320000Z",
                    "protocol": "tcp",
                    "time_taken": 89099,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 52734
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.260000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.260000Z",
                    "protocol": "tcp",
                    "time_taken": 89849,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 51645
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.200000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.200000Z",
                    "protocol": "tcp",
                    "time_taken": 89118,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 59241
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.140000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.140000Z",
                    "protocol": "tcp",
                    "time_taken": 89069,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26255
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.080000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.080000Z",
                    "protocol": "tcp",
                    "time_taken": 89815,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 19711
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:55.020000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:55.020000Z",
                    "protocol": "tcp",
                    "time_taken": 89668,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 28085
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.960000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.960000Z",
                    "protocol": "tcp",
                    "time_taken": 89180,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43248
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.900000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.900000Z",
                    "protocol": "tcp",
                    "time_taken": 89967,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54134
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.840000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.840000Z",
                    "protocol": "tcp",
                    "time_taken": 89239,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 22179
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.780000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.780000Z",
                    "protocol": "tcp",
                    "time_taken": 89547,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58150
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.720000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.720000Z",
                    "protocol": "tcp",
                    "time_taken": 89494,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 60265
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.660000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.660000Z",
                    "protocol": "tcp",
                    "time_taken": 89196,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 42287
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.600000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.600000Z",
                    "protocol": "tcp",
                    "time_taken": 89851,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 44801
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.540000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.540000Z",
                    "protocol": "tcp",
                    "time_taken": 89621,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 60815
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.480000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.480000Z",
                    "protocol": "tcp",
                    "time_taken": 89775,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 29635
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.420000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.420000Z",
                    "protocol": "tcp",
                    "time_taken": 89275,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 47809
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.360000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.360000Z",
                    "protocol": "tcp",
                    "time_taken": 89377,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 11836
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.300000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.300000Z",
                    "protocol": "tcp",
                    "time_taken": 89064,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 53445
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4143,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.240000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.240000Z",
                    "protocol": "tcp",
                    "time_taken": 89825,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 33690
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.180000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.180000Z",
                    "protocol": "tcp",
                    "time_taken": 89812,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43940
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.120000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.120000Z",
                    "protocol": "tcp",
                    "time_taken": 89424,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 60432
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54.060000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54.060000Z",
                    "protocol": "tcp",
                    "time_taken": 89669,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 55262
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:54",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:54Z",
                    "protocol": "tcp",
                    "time_taken": 89010,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 34596
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:53.940000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:53.940000Z",
                    "protocol": "tcp",
                    "time_taken": 89954,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 40835
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:53.880000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:53.880000Z",
                    "protocol": "tcp",
                    "time_taken": 89015,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 18497
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:53.820000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:53.820000Z",
                    "protocol": "tcp",
                    "time_taken": 89110,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 27955
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:53.760000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:53.760000Z",
                    "protocol": "tcp",
                    "time_taken": 89945,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 39695
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        }
    ]
}
{
    "company_id": "b321cdd2-9732-49f4-aa20-309b975ea60c",
    "event_id": "d10fa740-6502-11f1-a5ae-2eff16f18868",
    "timestamp": "2026-06-10T19:30:19.700000",
    "detector_type": "network-access-abuse-detector",
    "event_type": "network-brute-force",
    "event_description": "Potential brute-force activity or protocol abuse.",
    "source_type": "custom_collector",
    "source_id": "8c60127d-b083-411a-ba9c-d4533589a318",
    "from_playback": false,
    "adversary_types": [
        "Network Brute Force"
    ],
    "incident_grouping_fields": {
        "src_ip": "192.168.59.235",
        "src_label": "0"
    },
    "events_grouping_fields": {
        "transport_protocol": "tcp",
        "port": 3389,
        "dest_ip": "10.10.40.5",
        "dest_label": "0",
        "service": "rdp"
    },
    "raw_data": [
        {
            "timestamp": "2026-06-10T19:30:39.660000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.660000Z",
                    "protocol": "tcp",
                    "time_taken": 89739,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 52602
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.600000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.600000Z",
                    "protocol": "tcp",
                    "time_taken": 89274,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 11627
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.540000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.540000Z",
                    "protocol": "tcp",
                    "time_taken": 89049,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 52587
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4154,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.480000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.480000Z",
                    "protocol": "tcp",
                    "time_taken": 89759,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58876
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.420000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.420000Z",
                    "protocol": "tcp",
                    "time_taken": 89652,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 23490
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.360000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.360000Z",
                    "protocol": "tcp",
                    "time_taken": 89523,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 10660
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.300000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.300000Z",
                    "protocol": "tcp",
                    "time_taken": 89073,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 39613
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.240000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.240000Z",
                    "protocol": "tcp",
                    "time_taken": 89473,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 28621
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.180000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.180000Z",
                    "protocol": "tcp",
                    "time_taken": 89541,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 40111
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.120000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.120000Z",
                    "protocol": "tcp",
                    "time_taken": 89282,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 61529
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4154,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.060000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.060000Z",
                    "protocol": "tcp",
                    "time_taken": 89268,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13922
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4154,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39Z",
                    "protocol": "tcp",
                    "time_taken": 89636,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 59567
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.940000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.940000Z",
                    "protocol": "tcp",
                    "time_taken": 89190,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 59349
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.880000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.880000Z",
                    "protocol": "tcp",
                    "time_taken": 89865,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25815
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4146,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.820000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.820000Z",
                    "protocol": "tcp",
                    "time_taken": 89349,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 28574
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.760000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.760000Z",
                    "protocol": "tcp",
                    "time_taken": 89609,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26501
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.700000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.700000Z",
                    "protocol": "tcp",
                    "time_taken": 89596,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 49993
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.640000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.640000Z",
                    "protocol": "tcp",
                    "time_taken": 89400,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 33359
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.580000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.580000Z",
                    "protocol": "tcp",
                    "time_taken": 89216,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 30084
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.520000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.520000Z",
                    "protocol": "tcp",
                    "time_taken": 89062,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 46811
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.460000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.460000Z",
                    "protocol": "tcp",
                    "time_taken": 89598,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43486
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.400000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.400000Z",
                    "protocol": "tcp",
                    "time_taken": 89087,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13003
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.340000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.340000Z",
                    "protocol": "tcp",
                    "time_taken": 89602,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20775
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.280000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.280000Z",
                    "protocol": "tcp",
                    "time_taken": 89146,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13676
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.220000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.220000Z",
                    "protocol": "tcp",
                    "time_taken": 89613,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54615
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.160000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.160000Z",
                    "protocol": "tcp",
                    "time_taken": 89132,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 10118
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.100000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.100000Z",
                    "protocol": "tcp",
                    "time_taken": 89115,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 57805
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.040000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.040000Z",
                    "protocol": "tcp",
                    "time_taken": 89619,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 10608
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.980000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.980000Z",
                    "protocol": "tcp",
                    "time_taken": 89202,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 39029
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.920000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.920000Z",
                    "protocol": "tcp",
                    "time_taken": 89638,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 48144
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.860000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.860000Z",
                    "protocol": "tcp",
                    "time_taken": 89092,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 61553
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.800000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.800000Z",
                    "protocol": "tcp",
                    "time_taken": 89844,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26062
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.740000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.740000Z",
                    "protocol": "tcp",
                    "time_taken": 89002,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 34278
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.680000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.680000Z",
                    "protocol": "tcp",
                    "time_taken": 89808,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 11398
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.620000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.620000Z",
                    "protocol": "tcp",
                    "time_taken": 89743,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25452
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.560000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.560000Z",
                    "protocol": "tcp",
                    "time_taken": 89184,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54980
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.500000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.500000Z",
                    "protocol": "tcp",
                    "time_taken": 89347,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 51344
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.440000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.440000Z",
                    "protocol": "tcp",
                    "time_taken": 89977,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 17133
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.380000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.380000Z",
                    "protocol": "tcp",
                    "time_taken": 89919,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 44778
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.320000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.320000Z",
                    "protocol": "tcp",
                    "time_taken": 89216,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58600
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.260000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.260000Z",
                    "protocol": "tcp",
                    "time_taken": 89842,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 40381
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.200000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.200000Z",
                    "protocol": "tcp",
                    "time_taken": 89231,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 44331
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.140000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.140000Z",
                    "protocol": "tcp",
                    "time_taken": 89504,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 27334
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.080000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.080000Z",
                    "protocol": "tcp",
                    "time_taken": 89071,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 41934
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.020000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.020000Z",
                    "protocol": "tcp",
                    "time_taken": 89528,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 46641
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.960000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.960000Z",
                    "protocol": "tcp",
                    "time_taken": 89411,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 35336
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.900000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.900000Z",
                    "protocol": "tcp",
                    "time_taken": 89709,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 22908
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.840000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.840000Z",
                    "protocol": "tcp",
                    "time_taken": 89503,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 63922
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.780000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.780000Z",
                    "protocol": "tcp",
                    "time_taken": 89491,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 64421
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.720000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.720000Z",
                    "protocol": "tcp",
                    "time_taken": 89130,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26107
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.660000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.660000Z",
                    "protocol": "tcp",
                    "time_taken": 89475,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 32326
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.600000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.600000Z",
                    "protocol": "tcp",
                    "time_taken": 89873,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25308
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.540000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.540000Z",
                    "protocol": "tcp",
                    "time_taken": 89310,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 52449
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.480000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.480000Z",
                    "protocol": "tcp",
                    "time_taken": 89376,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 32135
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.420000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.420000Z",
                    "protocol": "tcp",
                    "time_taken": 89608,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 23174
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.360000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.360000Z",
                    "protocol": "tcp",
                    "time_taken": 89910,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20968
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.300000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.300000Z",
                    "protocol": "tcp",
                    "time_taken": 89722,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 49766
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.240000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.240000Z",
                    "protocol": "tcp",
                    "time_taken": 89258,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 40863
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.180000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.180000Z",
                    "protocol": "tcp",
                    "time_taken": 89435,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 17550
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.120000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.120000Z",
                    "protocol": "tcp",
                    "time_taken": 89106,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 57299
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.060000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.060000Z",
                    "protocol": "tcp",
                    "time_taken": 89826,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 51424
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36Z",
                    "protocol": "tcp",
                    "time_taken": 89875,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 64619
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.940000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.940000Z",
                    "protocol": "tcp",
                    "time_taken": 89177,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 40815
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.880000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.880000Z",
                    "protocol": "tcp",
                    "time_taken": 89448,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 36775
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.820000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.820000Z",
                    "protocol": "tcp",
                    "time_taken": 89611,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 61329
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.760000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.760000Z",
                    "protocol": "tcp",
                    "time_taken": 89673,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43832
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.700000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.700000Z",
                    "protocol": "tcp",
                    "time_taken": 89575,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 47547
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.640000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.640000Z",
                    "protocol": "tcp",
                    "time_taken": 89870,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54448
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.580000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.580000Z",
                    "protocol": "tcp",
                    "time_taken": 89535,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 31483
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.520000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.520000Z",
                    "protocol": "tcp",
                    "time_taken": 89558,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58582
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.460000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.460000Z",
                    "protocol": "tcp",
                    "time_taken": 89325,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 51193
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.400000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.400000Z",
                    "protocol": "tcp",
                    "time_taken": 89066,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 38485
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.340000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.340000Z",
                    "protocol": "tcp",
                    "time_taken": 89409,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 31959
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.280000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.280000Z",
                    "protocol": "tcp",
                    "time_taken": 89876,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25071
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.220000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.220000Z",
                    "protocol": "tcp",
                    "time_taken": 89447,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 29164
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4146,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.160000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.160000Z",
                    "protocol": "tcp",
                    "time_taken": 89453,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20523
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.100000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.100000Z",
                    "protocol": "tcp",
                    "time_taken": 89364,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 24334
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.040000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.040000Z",
                    "protocol": "tcp",
                    "time_taken": 89862,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 45982
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.980000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.980000Z",
                    "protocol": "tcp",
                    "time_taken": 89212,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25280
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.920000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.920000Z",
                    "protocol": "tcp",
                    "time_taken": 89852,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 62897
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.860000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.860000Z",
                    "protocol": "tcp",
                    "time_taken": 89673,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 28964
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.800000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.800000Z",
                    "protocol": "tcp",
                    "time_taken": 89707,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 52459
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.740000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.740000Z",
                    "protocol": "tcp",
                    "time_taken": 89924,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 15367
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.680000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.680000Z",
                    "protocol": "tcp",
                    "time_taken": 89083,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 34327
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.620000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.620000Z",
                    "protocol": "tcp",
                    "time_taken": 89179,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 48804
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.560000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.560000Z",
                    "protocol": "tcp",
                    "time_taken": 89746,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 10995
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.500000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.500000Z",
                    "protocol": "tcp",
                    "time_taken": 89009,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 42659
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.440000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.440000Z",
                    "protocol": "tcp",
                    "time_taken": 89223,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 45311
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.380000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.380000Z",
                    "protocol": "tcp",
                    "time_taken": 89854,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 30387
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.320000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.320000Z",
                    "protocol": "tcp",
                    "time_taken": 89171,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 50044
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4146,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.260000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.260000Z",
                    "protocol": "tcp",
                    "time_taken": 89186,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13220
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.200000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.200000Z",
                    "protocol": "tcp",
                    "time_taken": 89449,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 22491
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.140000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.140000Z",
                    "protocol": "tcp",
                    "time_taken": 89343,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 47261
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.080000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.080000Z",
                    "protocol": "tcp",
                    "time_taken": 89258,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 50855
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.020000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.020000Z",
                    "protocol": "tcp",
                    "time_taken": 89961,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 45178
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:33.960000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:33.960000Z",
                    "protocol": "tcp",
                    "time_taken": 89127,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 50092
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:33.900000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:33.900000Z",
                    "protocol": "tcp",
                    "time_taken": 89973,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25744
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:33.840000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:33.840000Z",
                    "protocol": "tcp",
                    "time_taken": 89783,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 22981
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:33.780000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:33.780000Z",
                    "protocol": "tcp",
                    "time_taken": 89437,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43072
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:33.720000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:33.720000Z",
                    "protocol": "tcp",
                    "time_taken": 89923,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58486
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        }
    ]
}
{
    "company_id": "b321cdd2-9732-49f4-aa20-309b975ea60c",
    "event_id": "c523e540-6502-11f1-a5ae-2eff16f18868",
    "timestamp": "2026-06-10T19:29:59.700000",
    "detector_type": "network-access-abuse-detector",
    "event_type": "network-brute-force",
    "event_description": "Potential brute-force activity or protocol abuse.",
    "source_type": "custom_collector",
    "source_id": "8c60127d-b083-411a-ba9c-d4533589a318",
    "from_playback": false,
    "adversary_types": [
        "Network Brute Force"
    ],
    "incident_grouping_fields": {
        "src_ip": "192.168.59.235",
        "src_label": "0"
    },
    "events_grouping_fields": {
        "transport_protocol": "tcp",
        "port": 3389,
        "dest_ip": "10.10.40.5",
        "dest_label": "0",
        "service": "rdp"
    },
    "raw_data": [
        {
            "timestamp": "2026-06-10T19:30:19.680000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.680000Z",
                    "protocol": "tcp",
                    "time_taken": 89648,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 28018
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.620000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.620000Z",
                    "protocol": "tcp",
                    "time_taken": 89058,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 59375
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.560000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.560000Z",
                    "protocol": "tcp",
                    "time_taken": 89951,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 19021
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.500000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.500000Z",
                    "protocol": "tcp",
                    "time_taken": 89441,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 41975
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.440000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.440000Z",
                    "protocol": "tcp",
                    "time_taken": 89562,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 27223
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.380000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.380000Z",
                    "protocol": "tcp",
                    "time_taken": 89571,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 42673
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.320000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.320000Z",
                    "protocol": "tcp",
                    "time_taken": 89136,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 33473
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.260000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.260000Z",
                    "protocol": "tcp",
                    "time_taken": 89073,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 19747
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.200000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.200000Z",
                    "protocol": "tcp",
                    "time_taken": 89342,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13045
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.140000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.140000Z",
                    "protocol": "tcp",
                    "time_taken": 89886,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 33237
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.080000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.080000Z",
                    "protocol": "tcp",
                    "time_taken": 89539,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 48190
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4146,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:19.020000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:19.020000Z",
                    "protocol": "tcp",
                    "time_taken": 89329,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 33672
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.960000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.960000Z",
                    "protocol": "tcp",
                    "time_taken": 89885,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 53482
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.900000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.900000Z",
                    "protocol": "tcp",
                    "time_taken": 89081,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 48323
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.840000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.840000Z",
                    "protocol": "tcp",
                    "time_taken": 89148,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 32597
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.780000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.780000Z",
                    "protocol": "tcp",
                    "time_taken": 89077,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 44663
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.720000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.720000Z",
                    "protocol": "tcp",
                    "time_taken": 89616,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 30716
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.660000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.660000Z",
                    "protocol": "tcp",
                    "time_taken": 89225,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 53401
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.600000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.600000Z",
                    "protocol": "tcp",
                    "time_taken": 89224,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 60705
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.540000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.540000Z",
                    "protocol": "tcp",
                    "time_taken": 89048,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 34823
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.480000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.480000Z",
                    "protocol": "tcp",
                    "time_taken": 89852,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 36383
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.420000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.420000Z",
                    "protocol": "tcp",
                    "time_taken": 89630,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43297
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.360000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.360000Z",
                    "protocol": "tcp",
                    "time_taken": 89590,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 38487
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.300000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.300000Z",
                    "protocol": "tcp",
                    "time_taken": 89242,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 39424
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.240000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.240000Z",
                    "protocol": "tcp",
                    "time_taken": 89208,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 15812
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.180000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.180000Z",
                    "protocol": "tcp",
                    "time_taken": 89845,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 21199
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.120000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.120000Z",
                    "protocol": "tcp",
                    "time_taken": 89895,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 17047
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18.060000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18.060000Z",
                    "protocol": "tcp",
                    "time_taken": 89932,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 46687
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:18",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:18Z",
                    "protocol": "tcp",
                    "time_taken": 89190,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 29247
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.940000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.940000Z",
                    "protocol": "tcp",
                    "time_taken": 89134,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 22704
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.880000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.880000Z",
                    "protocol": "tcp",
                    "time_taken": 89813,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 39463
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.820000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.820000Z",
                    "protocol": "tcp",
                    "time_taken": 89949,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 42477
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.760000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.760000Z",
                    "protocol": "tcp",
                    "time_taken": 89827,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 22843
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.700000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.700000Z",
                    "protocol": "tcp",
                    "time_taken": 89102,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 42837
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.640000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.640000Z",
                    "protocol": "tcp",
                    "time_taken": 89035,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 11691
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.580000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.580000Z",
                    "protocol": "tcp",
                    "time_taken": 89503,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 14528
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.520000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.520000Z",
                    "protocol": "tcp",
                    "time_taken": 89611,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 50668
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4154,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.460000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.460000Z",
                    "protocol": "tcp",
                    "time_taken": 89793,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 42806
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.400000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.400000Z",
                    "protocol": "tcp",
                    "time_taken": 89221,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 15730
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4146,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.340000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.340000Z",
                    "protocol": "tcp",
                    "time_taken": 89554,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58119
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.280000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.280000Z",
                    "protocol": "tcp",
                    "time_taken": 89805,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 63370
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.220000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.220000Z",
                    "protocol": "tcp",
                    "time_taken": 89537,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 62425
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.160000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.160000Z",
                    "protocol": "tcp",
                    "time_taken": 89835,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 24606
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.100000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.100000Z",
                    "protocol": "tcp",
                    "time_taken": 89366,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 14197
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:17.040000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:17.040000Z",
                    "protocol": "tcp",
                    "time_taken": 89767,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 29271
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.980000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.980000Z",
                    "protocol": "tcp",
                    "time_taken": 89273,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 24286
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.920000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.920000Z",
                    "protocol": "tcp",
                    "time_taken": 89411,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25586
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.860000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.860000Z",
                    "protocol": "tcp",
                    "time_taken": 89990,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54551
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.800000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.800000Z",
                    "protocol": "tcp",
                    "time_taken": 89391,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 37407
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.740000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.740000Z",
                    "protocol": "tcp",
                    "time_taken": 89357,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 60025
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.680000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.680000Z",
                    "protocol": "tcp",
                    "time_taken": 89407,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 22117
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.620000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.620000Z",
                    "protocol": "tcp",
                    "time_taken": 89399,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54956
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.560000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.560000Z",
                    "protocol": "tcp",
                    "time_taken": 89673,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 63892
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.500000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.500000Z",
                    "protocol": "tcp",
                    "time_taken": 89601,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 16827
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.440000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.440000Z",
                    "protocol": "tcp",
                    "time_taken": 89802,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 44948
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.380000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.380000Z",
                    "protocol": "tcp",
                    "time_taken": 89813,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 28602
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.320000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.320000Z",
                    "protocol": "tcp",
                    "time_taken": 89784,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 55905
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.260000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.260000Z",
                    "protocol": "tcp",
                    "time_taken": 89106,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43913
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.200000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.200000Z",
                    "protocol": "tcp",
                    "time_taken": 89685,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 35910
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.140000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.140000Z",
                    "protocol": "tcp",
                    "time_taken": 89404,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 15362
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.080000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.080000Z",
                    "protocol": "tcp",
                    "time_taken": 89638,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 61412
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:16.020000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:16.020000Z",
                    "protocol": "tcp",
                    "time_taken": 89899,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20726
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.960000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.960000Z",
                    "protocol": "tcp",
                    "time_taken": 89376,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58522
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.900000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.900000Z",
                    "protocol": "tcp",
                    "time_taken": 89110,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54270
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.840000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.840000Z",
                    "protocol": "tcp",
                    "time_taken": 89487,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 41978
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.780000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.780000Z",
                    "protocol": "tcp",
                    "time_taken": 89313,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 42002
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.720000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.720000Z",
                    "protocol": "tcp",
                    "time_taken": 89447,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 52310
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.660000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.660000Z",
                    "protocol": "tcp",
                    "time_taken": 89016,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 50677
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.600000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.600000Z",
                    "protocol": "tcp",
                    "time_taken": 89016,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58195
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4154,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.540000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.540000Z",
                    "protocol": "tcp",
                    "time_taken": 89650,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 47414
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4146,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.480000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.480000Z",
                    "protocol": "tcp",
                    "time_taken": 89964,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 32039
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.420000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.420000Z",
                    "protocol": "tcp",
                    "time_taken": 89467,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 24851
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.360000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.360000Z",
                    "protocol": "tcp",
                    "time_taken": 89708,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 37540
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.300000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.300000Z",
                    "protocol": "tcp",
                    "time_taken": 89233,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 23598
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.240000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.240000Z",
                    "protocol": "tcp",
                    "time_taken": 89482,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 17410
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.180000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.180000Z",
                    "protocol": "tcp",
                    "time_taken": 89130,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 28286
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.120000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.120000Z",
                    "protocol": "tcp",
                    "time_taken": 89970,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 55173
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4154,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15.060000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15.060000Z",
                    "protocol": "tcp",
                    "time_taken": 89501,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 16581
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:15",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:15Z",
                    "protocol": "tcp",
                    "time_taken": 89597,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 14840
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.940000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.940000Z",
                    "protocol": "tcp",
                    "time_taken": 89873,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 55504
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.880000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.880000Z",
                    "protocol": "tcp",
                    "time_taken": 89627,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 50384
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.820000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.820000Z",
                    "protocol": "tcp",
                    "time_taken": 89918,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 48651
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4144,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.760000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.760000Z",
                    "protocol": "tcp",
                    "time_taken": 89223,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 55811
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.700000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.700000Z",
                    "protocol": "tcp",
                    "time_taken": 89922,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26229
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.640000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.640000Z",
                    "protocol": "tcp",
                    "time_taken": 89605,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20193
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.580000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.580000Z",
                    "protocol": "tcp",
                    "time_taken": 89987,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 56581
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.520000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.520000Z",
                    "protocol": "tcp",
                    "time_taken": 89404,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 29992
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.460000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.460000Z",
                    "protocol": "tcp",
                    "time_taken": 89196,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 44087
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.400000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.400000Z",
                    "protocol": "tcp",
                    "time_taken": 89837,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58165
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.340000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.340000Z",
                    "protocol": "tcp",
                    "time_taken": 89722,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 65424
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.280000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.280000Z",
                    "protocol": "tcp",
                    "time_taken": 89409,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 39043
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.220000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.220000Z",
                    "protocol": "tcp",
                    "time_taken": 89064,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 17455
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.160000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.160000Z",
                    "protocol": "tcp",
                    "time_taken": 89572,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 56024
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.100000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.100000Z",
                    "protocol": "tcp",
                    "time_taken": 89510,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 32409
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:14.040000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:14.040000Z",
                    "protocol": "tcp",
                    "time_taken": 89337,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 56002
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:13.980000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:13.980000Z",
                    "protocol": "tcp",
                    "time_taken": 89147,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 17451
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:13.920000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:13.920000Z",
                    "protocol": "tcp",
                    "time_taken": 89989,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 50872
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:13.860000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:13.860000Z",
                    "protocol": "tcp",
                    "time_taken": 89332,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54145
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:13.800000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:13.800000Z",
                    "protocol": "tcp",
                    "time_taken": 89479,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 34980
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:13.740000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:13.740000Z",
                    "protocol": "tcp",
                    "time_taken": 89100,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 21034
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        }
    ]
}

Export incident security event details [Available for Insights]

Export the raw data of all events within an incident into a csv or json file.
GET Request
GET Request
GET https://defender.lumu.io/secops/incidents/{incident_id}/security-events/details/export?key={company-key}&events_grouping_id={events_grouping_id}&episode_id={episode_id}&sort={asc|desc}&limit={n}&file_name={filename}&format={csv|jsonl}

Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.
events_grouping_id
Optional. Unique identifier used to organize events within an incident into meaningful collections (e.g., by endpoint or user).
episode_id
Optional. Unique identifier of  a single occurrence of malicious behavior within an incident.
limit
The maximum number of records to include in the generated file
file_name
The desired name for the generated output file
format 
The file format for the export. Supported values: csv (Comma Separated Values) or jsonl (JSON Lines).
sort
Order of the data within the file, for example, "asc" and "desc". If not specified, desc will be used as default.
Example Request
curl --location --request POST 'https://defender.lumu.io/secops/incidents/28bfe330-fd5f-11f0-bcb7-57f3fdca792/security-events/details/export?key={{company-key}}&sort=asc&limit=10&file_name=test&format=jsonl'
Example Response (200 - Success)
{
    "company_id": "b321cdd2-9732-49f4-aa20-309b975ea60c",
    "event_id": "d10fa740-6502-11f1-a5ae-2eff16f18868",
    "timestamp": "2026-06-10T19:30:19.700000",
    "detector_type": "network-access-abuse-detector",
    "event_type": "network-brute-force",
    "event_description": "Potential brute-force activity or protocol abuse.",
    "source_type": "custom_collector",
    "source_id": "8c60127d-b083-411a-ba9c-d4533589a318",
    "from_playback": false,
    "adversary_types": [
        "Network Brute Force"
    ],
    "incident_grouping_fields": {
        "src_ip": "192.168.59.235",
        "src_label": "0"
    },
    "events_grouping_fields": {
        "transport_protocol": "tcp",
        "port": 3389,
        "dest_ip": "10.10.40.5",
        "dest_label": "0",
        "service": "rdp"
    },
    "raw_data": [
        {
            "timestamp": "2026-06-10T19:30:39.660000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.660000Z",
                    "protocol": "tcp",
                    "time_taken": 89739,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 52602
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.600000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.600000Z",
                    "protocol": "tcp",
                    "time_taken": 89274,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 11627
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.540000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.540000Z",
                    "protocol": "tcp",
                    "time_taken": 89049,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 52587
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4154,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.480000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.480000Z",
                    "protocol": "tcp",
                    "time_taken": 89759,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58876
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.420000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.420000Z",
                    "protocol": "tcp",
                    "time_taken": 89652,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 23490
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.360000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.360000Z",
                    "protocol": "tcp",
                    "time_taken": 89523,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 10660
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.300000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.300000Z",
                    "protocol": "tcp",
                    "time_taken": 89073,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 39613
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.240000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.240000Z",
                    "protocol": "tcp",
                    "time_taken": 89473,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 28621
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.180000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.180000Z",
                    "protocol": "tcp",
                    "time_taken": 89541,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 40111
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.120000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.120000Z",
                    "protocol": "tcp",
                    "time_taken": 89282,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 61529
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4154,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39.060000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39.060000Z",
                    "protocol": "tcp",
                    "time_taken": 89268,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13922
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4154,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:39",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:39Z",
                    "protocol": "tcp",
                    "time_taken": 89636,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 59567
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.940000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.940000Z",
                    "protocol": "tcp",
                    "time_taken": 89190,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 59349
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.880000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.880000Z",
                    "protocol": "tcp",
                    "time_taken": 89865,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25815
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4146,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.820000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.820000Z",
                    "protocol": "tcp",
                    "time_taken": 89349,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 28574
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.760000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.760000Z",
                    "protocol": "tcp",
                    "time_taken": 89609,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26501
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.700000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.700000Z",
                    "protocol": "tcp",
                    "time_taken": 89596,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 49993
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.640000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.640000Z",
                    "protocol": "tcp",
                    "time_taken": 89400,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 33359
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.580000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.580000Z",
                    "protocol": "tcp",
                    "time_taken": 89216,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 30084
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.520000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.520000Z",
                    "protocol": "tcp",
                    "time_taken": 89062,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 46811
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.460000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.460000Z",
                    "protocol": "tcp",
                    "time_taken": 89598,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43486
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.400000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.400000Z",
                    "protocol": "tcp",
                    "time_taken": 89087,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13003
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.340000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.340000Z",
                    "protocol": "tcp",
                    "time_taken": 89602,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20775
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.280000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.280000Z",
                    "protocol": "tcp",
                    "time_taken": 89146,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13676
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.220000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.220000Z",
                    "protocol": "tcp",
                    "time_taken": 89613,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54615
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.160000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.160000Z",
                    "protocol": "tcp",
                    "time_taken": 89132,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 10118
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.100000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.100000Z",
                    "protocol": "tcp",
                    "time_taken": 89115,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 57805
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:38.040000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:38.040000Z",
                    "protocol": "tcp",
                    "time_taken": 89619,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 10608
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.980000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.980000Z",
                    "protocol": "tcp",
                    "time_taken": 89202,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 39029
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.920000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.920000Z",
                    "protocol": "tcp",
                    "time_taken": 89638,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 48144
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.860000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.860000Z",
                    "protocol": "tcp",
                    "time_taken": 89092,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 61553
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.800000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.800000Z",
                    "protocol": "tcp",
                    "time_taken": 89844,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26062
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.740000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.740000Z",
                    "protocol": "tcp",
                    "time_taken": 89002,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 34278
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.680000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.680000Z",
                    "protocol": "tcp",
                    "time_taken": 89808,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 11398
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.620000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.620000Z",
                    "protocol": "tcp",
                    "time_taken": 89743,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25452
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.560000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.560000Z",
                    "protocol": "tcp",
                    "time_taken": 89184,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54980
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.500000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.500000Z",
                    "protocol": "tcp",
                    "time_taken": 89347,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 51344
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.440000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.440000Z",
                    "protocol": "tcp",
                    "time_taken": 89977,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 17133
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.380000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.380000Z",
                    "protocol": "tcp",
                    "time_taken": 89919,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 44778
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.320000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.320000Z",
                    "protocol": "tcp",
                    "time_taken": 89216,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58600
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.260000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.260000Z",
                    "protocol": "tcp",
                    "time_taken": 89842,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 40381
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.200000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.200000Z",
                    "protocol": "tcp",
                    "time_taken": 89231,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 44331
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.140000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.140000Z",
                    "protocol": "tcp",
                    "time_taken": 89504,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 27334
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.080000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.080000Z",
                    "protocol": "tcp",
                    "time_taken": 89071,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 41934
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:37.020000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:37.020000Z",
                    "protocol": "tcp",
                    "time_taken": 89528,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 46641
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.960000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.960000Z",
                    "protocol": "tcp",
                    "time_taken": 89411,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 35336
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.900000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.900000Z",
                    "protocol": "tcp",
                    "time_taken": 89709,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 22908
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.840000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.840000Z",
                    "protocol": "tcp",
                    "time_taken": 89503,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 63922
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.780000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.780000Z",
                    "protocol": "tcp",
                    "time_taken": 89491,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 64421
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.720000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.720000Z",
                    "protocol": "tcp",
                    "time_taken": 89130,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 26107
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.660000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.660000Z",
                    "protocol": "tcp",
                    "time_taken": 89475,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 32326
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4142,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.600000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.600000Z",
                    "protocol": "tcp",
                    "time_taken": 89873,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25308
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.540000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.540000Z",
                    "protocol": "tcp",
                    "time_taken": 89310,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 52449
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.480000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.480000Z",
                    "protocol": "tcp",
                    "time_taken": 89376,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 32135
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.420000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.420000Z",
                    "protocol": "tcp",
                    "time_taken": 89608,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 23174
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.360000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.360000Z",
                    "protocol": "tcp",
                    "time_taken": 89910,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20968
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.300000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.300000Z",
                    "protocol": "tcp",
                    "time_taken": 89722,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 49766
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.240000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.240000Z",
                    "protocol": "tcp",
                    "time_taken": 89258,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 40863
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.180000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.180000Z",
                    "protocol": "tcp",
                    "time_taken": 89435,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 17550
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.120000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.120000Z",
                    "protocol": "tcp",
                    "time_taken": 89106,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 57299
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36.060000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36.060000Z",
                    "protocol": "tcp",
                    "time_taken": 89826,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 51424
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:36",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:36Z",
                    "protocol": "tcp",
                    "time_taken": 89875,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 64619
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.940000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.940000Z",
                    "protocol": "tcp",
                    "time_taken": 89177,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 40815
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.880000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.880000Z",
                    "protocol": "tcp",
                    "time_taken": 89448,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 36775
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4146,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.820000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.820000Z",
                    "protocol": "tcp",
                    "time_taken": 89611,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 61329
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.760000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.760000Z",
                    "protocol": "tcp",
                    "time_taken": 89673,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43832
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.700000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.700000Z",
                    "protocol": "tcp",
                    "time_taken": 89575,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 47547
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4155,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.640000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.640000Z",
                    "protocol": "tcp",
                    "time_taken": 89870,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 54448
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.580000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.580000Z",
                    "protocol": "tcp",
                    "time_taken": 89535,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 31483
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4141,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.520000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.520000Z",
                    "protocol": "tcp",
                    "time_taken": 89558,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58582
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.460000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.460000Z",
                    "protocol": "tcp",
                    "time_taken": 89325,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 51193
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4145,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.400000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.400000Z",
                    "protocol": "tcp",
                    "time_taken": 89066,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 38485
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4143,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.340000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.340000Z",
                    "protocol": "tcp",
                    "time_taken": 89409,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 31959
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.280000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.280000Z",
                    "protocol": "tcp",
                    "time_taken": 89876,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25071
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.220000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.220000Z",
                    "protocol": "tcp",
                    "time_taken": 89447,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 29164
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4144,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4146,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.160000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.160000Z",
                    "protocol": "tcp",
                    "time_taken": 89453,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 20523
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.100000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.100000Z",
                    "protocol": "tcp",
                    "time_taken": 89364,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 24334
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:35.040000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:35.040000Z",
                    "protocol": "tcp",
                    "time_taken": 89862,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 45982
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.980000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.980000Z",
                    "protocol": "tcp",
                    "time_taken": 89212,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25280
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4153,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.920000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.920000Z",
                    "protocol": "tcp",
                    "time_taken": 89852,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 62897
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.860000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.860000Z",
                    "protocol": "tcp",
                    "time_taken": 89673,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 28964
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.800000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.800000Z",
                    "protocol": "tcp",
                    "time_taken": 89707,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 52459
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.740000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.740000Z",
                    "protocol": "tcp",
                    "time_taken": 89924,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 15367
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.680000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.680000Z",
                    "protocol": "tcp",
                    "time_taken": 89083,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 34327
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4147,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.620000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.620000Z",
                    "protocol": "tcp",
                    "time_taken": 89179,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 48804
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4141,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.560000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.560000Z",
                    "protocol": "tcp",
                    "time_taken": 89746,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 10995
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4145,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.500000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.500000Z",
                    "protocol": "tcp",
                    "time_taken": 89009,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 42659
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.440000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.440000Z",
                    "protocol": "tcp",
                    "time_taken": 89223,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 45311
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.380000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.380000Z",
                    "protocol": "tcp",
                    "time_taken": 89854,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 30387
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4152,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.320000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.320000Z",
                    "protocol": "tcp",
                    "time_taken": 89171,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 50044
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4146,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.260000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.260000Z",
                    "protocol": "tcp",
                    "time_taken": 89186,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 13220
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4150,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.200000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.200000Z",
                    "protocol": "tcp",
                    "time_taken": 89449,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 22491
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4154,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4151,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.140000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.140000Z",
                    "protocol": "tcp",
                    "time_taken": 89343,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 47261
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.080000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.080000Z",
                    "protocol": "tcp",
                    "time_taken": 89258,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 50855
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:34.020000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:34.020000Z",
                    "protocol": "tcp",
                    "time_taken": 89961,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 45178
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4147,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4155,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:33.960000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:33.960000Z",
                    "protocol": "tcp",
                    "time_taken": 89127,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 50092
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4152,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4150,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:33.900000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:33.900000Z",
                    "protocol": "tcp",
                    "time_taken": 89973,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 25744
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4151,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4142,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:33.840000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:33.840000Z",
                    "protocol": "tcp",
                    "time_taken": 89783,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 22981
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4153,
                        "packets": 27
                    },
                    "received": null
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:33.780000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:33.780000Z",
                    "protocol": "tcp",
                    "time_taken": 89437,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 43072
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4148,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4149,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        },
        {
            "timestamp": "2026-06-10T19:30:33.720000",
            "data": {
                "entry": {
                    "timestamp": "2026-06-10T19:30:33.720000Z",
                    "protocol": "tcp",
                    "time_taken": 89923,
                    "ip_version": 4,
                    "final": false,
                    "end_reason": 1,
                    "source": {
                        "ip": "192.168.59.235",
                        "port": 58486
                    },
                    "destination": {
                        "ip": "10.10.40.5",
                        "port": 3389
                    },
                    "sent": {
                        "bytes": 4149,
                        "packets": 27
                    },
                    "received": {
                        "bytes": 4148,
                        "packets": 27
                    }
                },
                "label": "0",
                "destinationLabel": "0"
            }
        }
    ]
}

Subscribe to SecOps Incidents (Websocket) [NEW]

Lumu provides a streaming endpoint to subscribe to real-time updates on activity notifications. Establishing a connection to the streaming API means making a very long-lived HTTP request, and parsing the response incrementally.

The following endpoint can be used to stream notifications to any client that implements WebSockets.

ws://defender.lumu.io/api/secops/incidents/subscribe?key={company-key}
Info
The date format in the notifications received by a WebSocket client from the Defender API is in the UTC time zone and follows standards published in RFC 3339 and ISO 8601.

See the following examples of notification logs received by a WebSocket client from the Defender API:

New Incident

The stream notification log for a new incident detection will be similar to the following:

Example
{
"NewIncidentCreated": {
"companyId": "abe6e0e3-f53a-4961-bf37-5ce4a51255d0",
"incident": {
"id": "2d4ace10-fd55-11f0-9776-41104e67f3e4",
"timestamp": "2026-01-29T20:57:52.241Z",
"status": "open",
"statusTimestamp": "2026-01-29T20:57:52.241Z",
"incidentGroupingFields": {
"adversary": "www.casaducale.it"
},
"detectorType": "activity",
"incidentType": "malicious-infrastructure",
"totalEvents": 1,
"firstEvent": {
"timestamp": "2026-01-29T08:15:51.125Z",
"id": "b9622850-fcea-11f0-afea-8197aef5e7a7"
},
"lastEvent": {
"timestamp": "2026-01-29T08:15:51.125Z",
"id": "b9622850-fcea-11f0-afea-8197aef5e7a7"
},
"adversaryTypes": [
"Phishing"
],
"description": "Phishing domain",
"environmentStats": [
{
"environment": {
"id": "13",
"type": "network-label"
},
"count": 1
}
],
"counts": {
"endpointTargetsCount": 1,
"userTargetsCount": 0,
"otherTargetsCount": 0,
"totalTargetsCount": 1,
"offendersCount": 1
},
"offendersSamples": [
{
"_id": "www.casaducale.it",
"type": "network-location",
"value": "www.casaducale.it"
}
],
"targetsSamples": [
{
"_id": "Acme Gateway|13",
"type": "network-endpoint",
"label": "13",
"name": "Acme Gateway",
"endpoint_ip": "190.27.75.165"
}
],
"unread": true,
"hasPlaybackEvents": false,
"autopilotOperation": null,
"integrationsThatResponded": [],
"builtInResponseTypes": [],
"accumulators": [
{
"type": "int_accumulator",
"key": "4|20",
"value": 1
}
],
"eventsGroupingsCount": 1
},
"event": {
"eventId": "b9622850-fcea-11f0-afea-8197aef5e7a7",
"eventType": "malicious-infrastructure",
"timestamp": "2026-01-29T08:15:51.125Z",
"eventSource": {
"source_type": "PublicResolver",
"source_id": "ad292236bb3bc8999a964b78cb6820ab",
"collector_index": null
},
"adversaryTypes": [
"Phishing"
],
"eventDescription": "Phishing domain",
"affectedEnvironments": [
{
"type": "network-label",
"id": "13"
}
],
"targets": [
{
"_id": "Acme Gateway|13",
"type": "network-endpoint",
"label": "13",
"name": "Acme Gateway",
"endpoint_ip": "190.27.75.165"
}
],
"offenders": [
{
"_id": "www.casaducale.it",
"type": "network-location",
"value": "www.casaducale.it"
}
],
"fromPlayback": false,
"dataToIndex": {
"data": null
},
"repetitionCount": 1
}
}
}

Open Incident Stats Updated

In the following log, we have an example when the status of an incident was updated:

Example
{
"OpenIncidentStatsUpdated": {
"companyId": "abe6e0e3-f53a-4961-bf37-5ce4a51255d0",
"stats": {
"openIncidents": 4,
"inProgressIncidents": 1,
"automaticallyResponded": 0,
"assignedToAutopilot": 0,
"escalatedByAutopilot": 0,
"totalEvents": 16,
"typeDistribution": {
"Login Brute Force": 1,
"Phishing": 0,
"Network Brute Force": 1,
"Malware": 1,
"Unusual Login": 1
},
"environmentStats": [
{
"environment": {
"id": "13",
"type": "network-label"
},
"count": 0
},
{
"environment": {
"id": "2",
"type": "network-label"
},
"count": 1
},
{
"environment": {
"id": "4",
"type": "network-label"
},
"count": 2
},
{
"environment": {
"id": "testJor.lumu",
"type": "active-directory"
},
"count": 1
}
],
"affectedEndpoints": 3,
"affectedUsers": 2,
"otherAffectedEntities": 0
}
}
}

Incident Marked As Read

When an incident is marked as read, you will receive a log similar to the following:
Example
{
"IncidentMarkedAsRead": {
"companyId": "abe6e0e3-f53a-4961-bf37-5ce4a51255d0",
"incidentId": "2d4ace10-fd55-11f0-9776-41104e67f3e4",
"incident": {
"id": "2d4ace10-fd55-11f0-9776-41104e67f3e4",
"timestamp": "2026-01-29T20:57:52.241Z",
"status": "open",
"statusTimestamp": "2026-01-29T20:57:52.241Z",
"incidentGroupingFields": {
"adversary": "www.casaducale.it"
},
"detectorType": "activity",
"incidentType": "malicious-infrastructure",
"totalEvents": 1,
"firstEvent": {
"timestamp": "2026-01-29T08:15:51.125Z",
"id": "b9622850-fcea-11f0-afea-8197aef5e7a7"
},
"lastEvent": {
"timestamp": "2026-01-29T08:15:51.125Z",
"id": "b9622850-fcea-11f0-afea-8197aef5e7a7"
},
"adversaryTypes": [
"Phishing"
],
"description": "Phishing domain",
"environmentStats": [
{
"environment": {
"id": "13",
"type": "network-label"
},
"count": 1
}
],
"counts": {
"endpointTargetsCount": 1,
"userTargetsCount": 0,
"otherTargetsCount": 0,
"totalTargetsCount": 1,
"offendersCount": 1
},
"offendersSamples": [
{
"_id": "www.casaducale.it",
"type": "network-location",
"value": "www.casaducale.it"
}
],
"targetsSamples": [
{
"_id": "Acme Gateway|13",
"type": "network-endpoint",
"label": "13",
"name": "Acme Gateway",
"endpoint_ip": "190.27.75.165"
}
],
"unread": false,
"hasPlaybackEvents": false,
"autopilotOperation": null,
"integrationsThatResponded": [],
"builtInResponseTypes": [],
"accumulators": [
{
"type": "int_accumulator",
"key": "4|20",
"value": 1
}
],
"eventsGroupingsCount": 1
}
}
}

Incident Assigned

When an incident is assigned to an analyst, you will receive a log similar to the following:
Example
{
"IncidentAssigned": {
"companyId": "abe6e0e3-f53a-4961-bf37-5ce4a51255d0",
"msgId": "d4888cf0-fd5d-11f0-bcb7-57f3fdca792c",
"incidentId": "73986b40-fd5d-11f0-bcb7-57f3fdca792c",
"payload": {
"comment": "Marking as in progress"
},
"incident": {
"id": "73986b40-fd5d-11f0-bcb7-57f3fdca792c",
"timestamp": "2026-01-29T21:57:06.164Z",
"status": "open",
"statusTimestamp": "2026-01-29T21:57:06.164Z",
"incidentGroupingFields": {
"src_ip": "192.168.5.22",
"src_label": "2"
},
"detectorType": "network-access-abuse-detector",
"incidentType": "network-brute-force",
"totalEvents": 19,
"firstEvent": {
"timestamp": "2026-01-29T21:49:00Z",
"id": "51c88640-fd5c-11f0-900d-fef7b4b0b2ca"
},
"lastEvent": {
"timestamp": "2026-01-29T21:54:39.570Z",
"id": "1c34e5e0-fd5d-11f0-900d-fef7b4b0b2ca"
},
"adversaryTypes": [
"Network Brute Force"
],
"description": "Potential brute-force activity or protocol abuse.",
"environmentStats": [
{
"environment": {
"id": "2",
"type": "network-label"
},
"count": 19
}
],
"counts": {
"endpointTargetsCount": 1,
"userTargetsCount": 0,
"otherTargetsCount": 0,
"totalTargetsCount": 1,
"offendersCount": 1
},
"offendersSamples": [
{
"type": "network-endpoint",
"name": "192.168.5.22",
"endpoint_ip": "192.168.5.22",
"label": "2"
}
],
"targetsSamples": [
{
"type": "network-endpoint",
"name": "192.168.1.20",
"endpoint_ip": "192.168.1.20",
"label": "2"
}
],
"unread": false,
"hasPlaybackEvents": false,
"lastAssignee": 1,
"autopilotOperation": null,
"integrationsThatResponded": [],
"builtInResponseTypes": [],
"accumulators": [
{
"type": "int_accumulator",
"key": "bytes_sent",
"value": 27027128
},
{
"type": "int_accumulator",
"key": "requests_sent",
"value": 3996
},
{
"type": "int_accumulator",
"key": "packages_sent",
"value": 400654
},
{
"type": "int_accumulator",
"key": "duration_ms",
"value": 27755750
},
{
"type": "int_accumulator",
"key": "elapsed_time_ms",
"value": 357930
}
],
"eventsGroupingsCount": 1
},
"assigner": 1,
"assignee": 1
}
}

Incident Comment Added

When a new comment is added to an incident, you will receive a log similar to the following:
Example
{
"IncidentCommentAdded": {
"companyId": "abe6e0e3-f53a-4961-bf37-5ce4a51255d0",
"msgId": "cce31540-fd5f-11f0-bcb7-57f3fdca792c",
"incidentId": "28bfe330-fd5f-11f0-bcb7-57f3fdca792c",
"payload": {
"comment": "Commenting"
},
"incident": {
"id": "28bfe330-fd5f-11f0-bcb7-57f3fdca792c",
"timestamp": "2026-01-29T22:09:19.587Z",
"status": "open",
"statusTimestamp": "2026-01-29T22:09:19.587Z",
"incidentGroupingFields": {
"domain": "testJor.lumu"
},
"detectorType": "login-brute-force-detector",
"incidentType": "login-brute-force",
"totalEvents": 3,
"firstEvent": {
"timestamp": "2026-01-29T22:01:00.261Z",
"id": "ff20c950-fd5d-11f0-8633-92a05176ad25"
},
"lastEvent": {
"timestamp": "2026-01-29T23:12:00.225Z",
"id": "ea43b510-fd67-11f0-8633-92a05176ad25"
},
"adversaryTypes": [
"Login Brute Force"
],
"description": "Login Brute Force Activity",
"environmentStats": [
{
"environment": {
"id": "testJor.lumu",
"type": "active-directory"
},
"count": 3
}
],
"counts": {
"endpointTargetsCount": 0,
"userTargetsCount": 1,
"otherTargetsCount": 0,
"totalTargetsCount": 1,
"offendersCount": 1
},
"offendersSamples": [
{
"type": "network-endpoint",
"name": "WIN-4274QRK4U73",
"endpoint_ip": "192.168.1.100",
"_id": "WIN-4274QRK4U73"
}
],
"targetsSamples": [
{
"type": "user",
"realm": "testJor.lumu",
"name": "user450",
"_id": "testJor.lumu:S-1-5-21-887190572-887190572-24807815-1001"
}
],
"unread": false,
"hasPlaybackEvents": false,
"lastAssignee": 1,
"autopilotOperation": null,
"integrationsThatResponded": [],
"builtInResponseTypes": [],
"accumulators": [
{
"type": "int_accumulator",
"key": "failed_attempts",
"value": 240
},
{
"type": "int_accumulator",
"key": "elapsed_time_ms",
"value": 9000
}
],
"eventsGroupingsCount": 2
},
"userId": 1
}
}

Incident Muted

When an incident is muted, you will receive a log similar to the following:
Example
{
"IncidentMuted": {
"companyId": "abe6e0e3-f53a-4961-bf37-5ce4a51255d0",
"incidentId": "c522c290-fd61-11f0-bcb7-57f3fdca792c",
"payload": {
"comment": "muted from incidents 3 API"
},
"incident": {
"id": "c522c290-fd61-11f0-bcb7-57f3fdca792c",
"timestamp": "2026-01-29T22:28:00.953Z",
"status": "muted",
"statusTimestamp": "2026-01-29T22:28:00.953Z",
"incidentGroupingFields": {
"domain": "QA",
"user_name": "rfandino"
},
"detectorType": "unusual-login-detector",
"incidentType": "unusual-login",
"totalEvents": 3,
"firstEvent": {
"timestamp": "2026-01-29T04:27:00Z",
"id": "c51f1d66-fd61-11f0-811c-56845b1d7697"
},
"lastEvent": {
"timestamp": "2026-01-29T09:28:00Z",
"id": "ebdbf17c-fd61-11f0-811c-56845b1d7697"
},
"adversaryTypes": [
"Unusual Login"
],
"description": "Logged in at an unusual time or on an uncommon day",
"environmentStats": [],
"counts": {
"endpointTargetsCount": 0,
"userTargetsCount": 1,
"otherTargetsCount": 0,
"totalTargetsCount": 1,
"offendersCount": 1
},
"offendersSamples": [
{
"type": "network-endpoint",
"endpoint_ip": "192.168.1.100",
"name": "WORKSTATION1"
}
],
"targetsSamples": [
{
"type": "user",
"realm": "QA",
"name": "rfandino"
}
],
"unread": false,
"hasPlaybackEvents": false,
"lastAssignee": 1,
"autopilotOperation": "assign",
"integrationsThatResponded": [],
"builtInResponseTypes": [],
"accumulators": [],
"eventsGroupingsCount": 0
}
}
}

Incident Unmuted

When an incident is unmuted, you will receive a log similar to the following:
Example
{
"IncidentUnmuted": {
"companyId": "abe6e0e3-f53a-4961-bf37-5ce4a51255d0",
"incidentId": "2d4ace10-fd55-11f0-9776-41104e67f3e4",
"payload": {
"comment": "Unmuting incident"
},
"incident": {
"id": "2d4ace10-fd55-11f0-9776-41104e67f3e4",
"timestamp": "2026-01-29T20:57:52.241Z",
"status": "open",
"statusTimestamp": "2026-01-29T20:57:52.241Z",
"incidentGroupingFields": {
"adversary": "www.casaducale.it"
},
"detectorType": "activity",
"incidentType": "malicious-infrastructure",
"totalEvents": 2,
"firstEvent": {
"timestamp": "2026-01-29T08:15:51.125Z",
"id": "b9622850-fcea-11f0-afea-8197aef5e7a7"
},
"lastEvent": {
"timestamp": "2026-01-29T09:15:51.125Z",
"id": "1b269050-fcf3-11f0-afeb-8197aef5e7a7"
},
"adversaryTypes": [
"Phishing"
],
"description": "Phishing domain",
"environmentStats": [
{
"environment": {
"id": "13",
"type": "network-label"
},
"count": 2
}
],
"counts": {
"endpointTargetsCount": 1,
"userTargetsCount": 0,
"otherTargetsCount": 0,
"totalTargetsCount": 1,
"offendersCount": 1
},
"offendersSamples": [
{
"_id": "www.casaducale.it",
"type": "network-location",
"value": "www.casaducale.it"
}
],
"targetsSamples": [
{
"_id": "Acme Gateway|13",
"type": "network-endpoint",
"label": "13",
"name": "Acme Gateway",
"endpoint_ip": "190.27.75.165"
}
],
"unread": false,
"hasPlaybackEvents": false,
"lastAssignee": 1,
"autopilotOperation": null,
"integrationsThatResponded": [],
"builtInResponseTypes": [],
"accumulators": [
{
"type": "int_accumulator",
"key": "4|21",
"value": 1
},
{
"type": "int_accumulator",
"key": "4|20",
"value": 1
}
],
"eventsGroupingsCount": 1
}
}
}

 Incident Closed

When an incident is closed, you will receive a log similar to the following:
Example
{
"IncidentClosed": {
"companyId": "abe6e0e3-f53a-4961-bf37-5ce4a51255d0",
"incidentId": "73986b40-fd5d-11f0-bcb7-57f3fdca792c",
"payload": {
"comment": "Closing"
},
"incident": {
"id": "73986b40-fd5d-11f0-bcb7-57f3fdca792c",
"timestamp": "2026-01-29T21:57:06.164Z",
"status": "closed",
"statusTimestamp": "2026-01-29T21:57:06.164Z",
"incidentGroupingFields": {
"src_ip": "192.168.5.22",
"src_label": "2"
},
"detectorType": "network-access-abuse-detector",
"incidentType": "network-brute-force",
"totalEvents": 20,
"firstEvent": {
"timestamp": "2026-01-29T21:49:00Z",
"id": "51c88640-fd5c-11f0-900d-fef7b4b0b2ca"
},
"lastEvent": {
"timestamp": "2026-01-29T21:54:59.640Z",
"id": "2820a7e0-fd5d-11f0-900d-fef7b4b0b2ca"
},
"adversaryTypes": [
"Network Brute Force"
],
"description": "Potential brute-force activity or protocol abuse.",
"environmentStats": [
{
"environment": {
"id": "2",
"type": "network-label"
},
"count": 20
}
],
"counts": {
"endpointTargetsCount": 1,
"userTargetsCount": 0,
"otherTargetsCount": 0,
"totalTargetsCount": 1,
"offendersCount": 1
},
"offendersSamples": [
{
"type": "network-endpoint",
"name": "192.168.5.22",
"endpoint_ip": "192.168.5.22",
"label": "2"
}
],
"targetsSamples": [
{
"type": "network-endpoint",
"name": "192.168.1.20",
"endpoint_ip": "192.168.1.20",
"label": "2"
}
],
"unread": false,
"hasPlaybackEvents": false,
"lastAssignee": 1,
"autopilotOperation": null,
"integrationsThatResponded": [],
"builtInResponseTypes": [],
"accumulators": [
{
"type": "int_accumulator",
"key": "bytes_sent",
"value": 27068232
},
{
"type": "int_accumulator",
"key": "requests_sent",
"value": 4000
},
{
"type": "int_accumulator",
"key": "duration_ms",
"value": 27788981
},
{
"type": "int_accumulator",
"key": "packages_sent",
"value": 401023
},
{
"type": "int_accumulator",
"key": "elapsed_time_ms",
"value": 358200
}
],
"eventsGroupingsCount": 1
}
}
}

Portal Management

The Lumu Portal records the activities and configurations made on the Portal, allowing administrators to keep track of the changes and ensure compliance with your company’s policies.

Retrieve Audit Logs [Available for Insights]    

Get a paginated list of all administrative actions and system events within the company for auditing purposes, sorted by timestamp in ascending order.

GET
GET
GET https://defender.lumu.io/api/administration/audit?key={company-key}&from-date=<iso-formatted UTC datetime>&to-date=<iso-formatted UTC datetime>&page=<n>&items=<n>

Query Params
Description
key
Your company's unique API key, available in the Lumu Portal
from-date
Optional. Start of the time range. Default: now - 7 days. Max: now - 180 days. This value is inclusive.
to-date
Optional. End of the time range. Default/max: now - 5 minutes. Must be greater than from-date and within a 180-day window. This value is exclusive.
page
Optional. Page number of the result set (default: 1).
items
Optional. Limit the number of results per page (default: 100, max: 500).
GET Request Example
https://defender.lumu.io/api/administration/audit?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3&from-date=2026-01-01T12:00:00Z&to-date=2026-01-30T12:26:00Z&page=1&items=1
Example Response (200 - Success)
{
    "timestamp": "2026-01-30T17:51:50Z",
    "paginationInfo": {
        "total": 8,
        "page": 1,
        "items": 1,
        "next": 2
    },
    "items": [
        {
            "timestamp": "2026-01-08T20:28:07Z",
            "action": "User Logged In",
            "performer": {
                "email": "smunoz@lumu.io",
                "name": "Super Admin",
                "role": "admin",
                "id": 1
            },
            "details": {
                "name": "Super Admin",
                "role": "admin",
                "email": "smunoz@lumu.io",
                "company_id": "17749bd8-9310-4c89-b7bc-b5d1babf282a",
                "previous_login": "2025-12-31T15:18:22.467Z"
            }
        }
    ]
}

Working with Adversarial Activity

The /adversarial-activity endpoints contain detailed compromise activity detected on your network, categorized according to threat type.

Info
For GET endpoint queries, default values are applied to all parameters if none are specified.

Retrieve contacted adversaries

Get a paginated summary of the adversaries contacted by endpoints within a time-frame

POST Request
GET Request
POST Request
POST https://defender.lumu.io/api/adversarial-activity/contacted-adversaries?key={company-key}
GET Request
GET https://defender.lumu.io/api/adversarial-activity/contacted-adversaries?key={company-key}
Query Params
Description
key
Your company's unique API key, available in the Lumu Portal
page
Page number of the result set (default: 1)
items
Limit the number of results per page (default: 50, max: 100)

Body Parameters
Name
Data Type
Description
fromDate
date-time (optional)
Search start date. The default value is 7 days before the current date. Example: "2021-04-01T14:40:14.939Z"
toDate
date-time (optional)
Search end date. The default value is the current date. Example: "2021-04-07T14:40:14.939Z"
endpoints
array (optional)
List of ID of contacting endpoints. If not specified, all objects are returned. Example: "182.168.100.29", “DESK-9867”
adversary-types
array (optional)
Adversary types. If not specified, all objects are returned. Examples: "C2C", "Malware", "DGA", "Mining", "Spam", "Phishing"
labels
array (optional)
Label IDs — You can use the Labels API call beforehand to retrieve available label IDs and their corresponding names. If not specified, all objects are returned. Example: 2, 3,5
POST Request Example
curl --location --request POST 'https://defender.lumu.io/api/adversarial-activity/contacted-adversaries?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3&page=1&items=50' \ --header 'Content-Type: application/json' \ --data-raw '{ "fromDate": "2021-02-23T16:15:30.00-05:00[Europe/Paris]", "toDate": "2021-03-15T16:15:30.234+01:00[Europe/Paris]", "adversary-types": [], "endpoints": [], "labels": [] }'
GET Request Example
curl --location --request GET 'https://defender.lumu.io/api/adversarial-activity/contacted-adversaries?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3&page=1&items=50' \ --data-raw ''
Example Response (200 - Success)
{
    "items": [
        {
            "host": "example.xyz",
            "adversary-types": [
                "Spam"
            ],
            "descriptions": [
                "Spam related"
            ],
            "contacts": 1,
            "last-contact": {
                "time": "2020-06-06T11:05:11.964Z",
                "endpoint": "Gateway company 1",
                "label": 37
            }
        }
    ],
    "timestamp": "2021-03-15T15:15:30.234Z",
    "pagination": {
        "page": 1,
        "items": 50
    }
}  

Retrieve last contacted adversaries

Retrieves a paginated list of details about adversarial hosts contacted within the specified number of past hours.

POST Request
GET Request
POST Request
POST https://defender.lumu.io/api/adversarial-activity/contacted-adversaries/last?key={company-key}
GET Request
GET https://defender.lumu.io/api/adversarial-activity/contacted-adversaries/last?key={company-key}
Query Params
Description
key
Your company's unique API key, available in the Lumu Portal
page
Page number of the result set (default: 1)
items
Limit the number of results per page (default: 50, max: 100)
hours
(only for GET) The number of past hours you want to narrow your results to  (default: 1)
max-items
(only for GET) Limit the number of results per page (default: 50, max: 100)

Body Parameters
Name
Data Type
Description
hours
integer (optional)
The number of past hours you want to narrow your results to. The default value 1.
endpoints
array (optional)
List of ID of contacting endpoints. If not specified, all objects are returned. Example: "182.168.100.29", “DESK-9867”
adversary-types
array (optional)
Adversary types. If not specified, all objects are returned. Examples: "C2C", "Malware", "DGA", "Mining", "Spam", "Phishing"
labels
array (optional)
Label IDs — You can use the Labels API call beforehand to retrieve available label IDs and their corresponding names. If not specified, all objects are returned. Example: 2, 3,5
POST Request Example
curl --location --request POST 'https://defender.lumu.io/api/adversarial-activity/contacted-adversaries/last?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3&page=1&items=50' \ --header 'Content-Type: application/json' \ --data-raw '{ "hours": 200, "adversary-types": [], "labels": [], "endpoints": [] }'
GET Request Example
curl --location --request GET 'https://defender.lumu.io/api/adversarial-activity/contacted-adversaries/last?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3&max-items=1&hours=1' \ --data-raw ''
Example Response (200 - Success)
{ "items": [ { "host": "example.com", "adversary-types": [ "Phishing" ], "descriptions": [ "Phishing domain" ], "contacts": 15, "last-contact": { "time": "2021-04-12T15:25:02.228Z", "endpoint": "Gateway 1", "label": 37 } } ], "timestamp": "2021-03-15T15:15:30.234Z", "pagination": { "page": 1, "items": 50 } }

Retrieve last contacted adversaries list

Get a list of adversarial hosts contacted within a number of past hours in plain text format.

POST Request
GET Request
POST Request
POST https://defender.lumu.io/api/adversarial-activity/contacted-adversaries/last/list?key={company-key}
GET Request
GET https://defender.lumu.io/api/adversarial-activity/contacted-adversaries/last/list?key={company-key}
Query Params
Description
key
Your company's unique API key, available in the Lumu Portal
page
Page number of the result set (default: 1)
items
Limit the number of results per page (default: 50, max: 100)

Body Parameters
Name
Data Type
Description
hours
integer (optional)
The number of past hours you want to narrow your results to. The default value 1.
endpoints
array (optional)
List of ID of contacting endpoints. If not specified, all objects are returned. Example: "182.168.100.29", “DESK-9867”
adversary-types
array (optional)
Adversary types. If not specified, all objects are returned. Examples: "C2C", "Malware", "DGA", "Mining", "Spam", "Phishing"
labels
array (optional)
Label IDs — You can use the Labels API call beforehand to retrieve available label IDs and their corresponding names. If not specified, all objects are returned. Example: 2, 3,5
POST Request Example
curl --location --request POST 'https://defender.lumu.io/api/adversarial-activity/contacted-adversaries/last/list?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3&max-items=10' \ --data-raw '{ "hours": 200, "adversary-types": [], "endpoints": [], "labels": [] }'
GET Request Example
curl --location --request GET 'https://defender.lumu.io/api/adversarial-activity/contacted-adversaries/last/list?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3&max-items=10&hours=1' \ --data-raw ''
Example Response (200 - Success)
126.25.36.2 fraud.ro phishing.com fake-site.com 95.26.34.5

Retrieve affected endpoints

Get a paginated summary of the incidents across endpoints within a time-frame.

POST Request
GET Request
POST Request
POST https://defender.lumu.io/api/adversarial-activity/affected-endpoints?key={company-key}
GET Request
GET https://defender.lumu.io/api/adversarial-activity/affected-endpoints?key={company-key}
Query Params
Description
key
Your company's unique API key, available in the Lumu Portal
page
Page number of the result set (default: 1)
items
Limit the number of results per page (default: 50, max: 100)

Body Parameters
Name
Data Type
Description
fromDate
date-time (optional)
Search start date. The default value is 7 days before the current date. Example: "2021-04-01T14:40:14.939Z"
toDate
date-time (optional)
Search end date. The default value is the current date. Example: "2021-04-07T14:40:14.939Z"
adversaries
array (optional)
List of ID of contacting endpoints. If not specified, all objects are returned. Example: "182.168.100.29", “DESK-9867”
adversary-types
array (optional)
Adversary types. If not specified, all objects are returned. Examples: "C2C", "Malware", "DGA", "Mining", "Spam", "Phishing"
labels
array (optional)
Label IDs — You can use the Labels API call beforehand to retrieve available label IDs and their corresponding names. If not specified, all objects are returned. Example: 2, 3,5
POST Request Example
curl --location --request POST 'https://defender.lumu.io/api/adversarial-activity/affected-endpoints?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3&page=1&items=50' \ --data-raw '{ "fromDate": "2021-02-23T16:15:30.00-05:00[Europe/Paris]", "toDate": "2021-03-15T16:15:30.234+01:00[Europe/Paris]", "adversary-types": [], "adversaries": [], "labels": [] }'
GET Reuqest Example
curl --location --request GET 'https://defender.lumu.io/api/adversarial-activity/affected-endpoints?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3&page=1&items=50' \ --data-raw ''
Example Response (200 - Success)
{
    "items": [
        {
            "label": 38,
            "endpoint": "192.168.0.103",
            "last-ip": "192.168.0.103",
            "total-activity": 6,
            "adversarial-contacts": {
                "last-time": "2020-12-01T17:36:02.228Z",
                "last-host": "example.xyz",
                "count": 6, 
                "distribution": {
                    "C2C": 5,
                    "Mining": 1
                }
            }
        }
    ],
    "timestamp": "2021-03-15T15:15:30.234Z",
    "pagination": {
        "page": 1,
        "items": 50
    }
}   
Info
The total number of incidents ("count") does not necessarily have to match the sum of the incident types, as the same incident can be classified in different categories. In case an endpoint was contacted by more than two adversaries, only the most recent adversary will be retrieved.

Retrieve last affected endpoints

Get a paginated list of endpoints and adversarial contacts within a number of past hours.

POST Request
GET Request
POST Request
POST https://defender.lumu.io/api/adversarial-activity/affected-endpoints/last?key={company-key}
GET Request
GET https://defender.lumu.io/api/adversarial-activity/affected-endpoints/last?key={company-key}
Query Params
Description
key
Your company's unique API key, available in the Lumu Portal
page
Page number of the result set (default: 1)
items
The maximum number of items that will be returned (default: 10, max: 10240)
hours
(only for GET) The number of past hours you want to narrow your results to  (default: 1)

Body Parameters
Name
Data Type
Description
hours
integer (optional)
The number of past hours you want to narrow your results to. The default value 1.
endpoints
array (optional)
List of ID of contacting endpoints. If not specified, all objects are returned. Example: "182.168.100.29", “DESK-9867”
adversary-types
array (optional)
Adversary types. If not specified, all objects are returned. Examples: "C2C", "Malware", "DGA", "Mining", "Spam", "Phishing"
labels
array (optional)
Label IDs — You can use the Labels API call beforehand to retrieve available label IDs and their corresponding names. If not specified, all objects are returned. Example: 2, 3,5
POST Request Example
curl --location --request POST 'https://defender.lumu.io/api/adversarial-activity/affected-endpoints/last?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3&page=1&items=50' \ --header 'Content-Type: application/json' \ --data-raw '{ "hours": 700, "adversary-types": [], "adversaries": [], "labels": [] }'
GET Request Example
curl --location --request GET 'https://defender.lumu.io/api/adversarial-activity/affected-endpoints/last?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3&page=1&items=50&hours=1' \ --data-raw ''
Example Response (200 - Success)
{
    "items": [
        {
            "label": 37,
            "endpoint": "Gateway 1",
            "last-ip": "192.168.3.11",
            "total-activity": 15,
            "adversarial-contacts": {
                "last-time": "2021-04-12T15:25:02.228Z",
                "last-host": "example.com",
                "count": 15,
                "distribution": {
                    "Phishing": 15
                }
            }
        }
    ],
    "timestamp": "2021-04-26T17:55:43.929612Z",
    "pagination": {
        "page": 1,
        "items": 50
    }
}  

Retrieve last affected endpoints list

Get a list of endpoints with adversarial contacts within a number of hours in plain text format.

POST Request
GET Request
POST Request
POST https://defender.lumu.io/api/adversarial-activity/affected-endpoints/last/list?key={company-key}
GET Request
GET https://defender.lumu.io/api/adversarial-activity/affected-endpoints/last/list?key={company-key}
Query Params
Description
key
Your company's unique API key, available in the Lumu Portal
hours
(only for GET) The number of past hours you want to narrow your results to  (default: 1)
max-items
Limit the number of results per page (default: 50, max: 100)

Body Parameters
Name
Data Type
Description
hours
integer (optional)
The number of past hours you want to narrow your results to. The default value 1.
adversaries
array (optional)
List of adversarial hosts. If not specified, all objects are returned. Example: "phishing-site.domain".
adversary-types
array (optional)
Adversary types. If not specified, all objects are returned. Examples: "C2C", "Malware", "DGA", "Mining", "Spam", "Phishing"
endpoint-identification-type
string (optional)
Type of endpoint identification. Possible values: "IP" (IP address), "ID" (case-sensitive endpoint ID) - The default value is "ID".
labels
array (optional)
Label IDs — You can use the Labels API call beforehand to retrieve available label IDs and their corresponding names. If not specified, all objects are returned. Example: 2, 3,5

Get a paginated summary of the adversaries related to Lumu Email Intelligence that were contacted by endpoints.

POST Request
GET Request
POST Request
POST https://defender.lumu.io/api/adversarial-activity/contacted-adversaries/spambox?key={company-key}
GET Request
GET https://defender.lumu.io/api/adversarial-activity/contacted-adversaries/spambox?key={company-key}

Query Params
Description
key
Your company's unique API key, available in the Lumu Portal
page
Page number of the result set (default: 1)
items
Limit the number of results per page (default: 50, max: 100)

Body Parameters
Name
Data Type
Description
fromDate
date-time (optional)
Search start date. The default value is 7 days before the current date. Example: "2021-04-01T14:40:14.939Z"
toDate
date-time (optional)
Search end date. The default value is the current date. Example: "2021-04-07T14:40:14.939Z"
labels
array (optional)
Label IDs — You can use the Labels API call beforehand to retrieve available label IDs and their corresponding names. If not specified, all objects are returned. Example: 2, 3,5

Get a detailed list of adversarial hosts contacted, related to Lumu Email Intelligence, within a number of past hours.

POST Request
GET Request
POST Request
POST https://defender.lumu.io/api/adversarial-activity/contacted-adversaries/spambox/last?key={company-key}
GET Request
GET https://defender.lumu.io/api/adversarial-activity/contacted-adversaries/spambox/last?key={company-key}
Query Params
Description
key
Your company's unique API key, available in the Lumu Portal
page
Page number of the result set (default: 1)
items
Limit the number of results per page (default: 50, max: 100)
hours
(only for GET) The number of past hours you want to narrow your results to  (default: 1)

Body Parameters
Name
Data Type
Description
hours
date-time (optional)
The number of past hours you want to narrow your results to. The default value 1.
labels
array (optional)
Label IDs — You can use the Labels API call beforehand to retrieve available label IDs and their corresponding names. If not specified, all objects are returned. Example: 2, 3,5
POST Request Example
curl --location --request POST 'https://defender.lumu.io/api/adversarial-activity/contacted-adversaries/spambox/last?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3&page=1&items=50' \ --data-raw '{ "hours": 200, "labels": [] }'
GET Request Example
curl --location --request GET 'https://defender.lumu.io/api/adversarial-activity/contacted-adversaries/spambox/last?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3&page=1&items=50&hours=1' \ --data-raw ''
Example Response (200 - Success)
{
    "items": [
        {
            "host": "suspicious.com",
            "adversary-types": [
                "C2C"
            ],
            "descriptions": [
                "Malware family ZeuS"
            ],
            "contacts": 3,
            "last-contact": {
                "time": "2021-04-26T22:37:59.148Z",
                "endpoint": "New GW",
                "label": 144
            }
        }
    ],
    "timestamp": "2021-04-28T18:05:06.517940Z",
    "pagination": {
        "page": 1,
        "items": 1,
        "next": 2
    }
}  

Get a list of adversarial hosts contacted within a number of past hours in plain text format.

POST Request
GET request
POST Request
POST https://defender.lumu.io/api/adversarial-activity/contacted-adversaries/spambox/last/list?key={company-key}
GET request
GET https://defender.lumu.io/api/adversarial-activity/contacted-adversaries/spambox/last/list?key={company-key}
Query Params
Description
key
Your company's unique API key, available in the Lumu Portal
hours
(only for GET) The number of past hours you want to narrow your results to  (default: 1)
max-items
Limit the number of results per page (default: 50, max: 100)

Body Parameters
Name
Data Type
Description
hours
integer (optional)
The number of past hours you want to narrow your results to. The default value 1.
adversary-types
array (optional)
Adversary types. If not specified, all objects are returned. Examples: "C2C", "Malware", "DGA", "Mining", "Spam", "Phishing"

Working with Lumu Email Intelligence (Spambox Endpoint)

The  /spambox endpoints contain detailed compromise activity detected to adversaries related to Lumu Email Intelligence, categorized according to threat type, regardless of being contacted or not. For the GET endpoint queries., the default values are used for all parameters. To get started with Lumu Email Intelligence, consult our documentation.

Get a paginated summary of the adversaries related to Lumu Email Intelligence.

GET Request
GET Request
GET https://defender.lumu.io/api/spambox/adversaries?key={company-key}
Query Params
Description
key
Your company's unique API key, available in the Lumu Portal
page
Page number of the result set (default: 1)
items
Limit the number of results per page (default: 50, max: 100)

Body Parameters
Name
Data Type
Description
fromDate
date-time (optional)
Search start date. The default value is 7 days before the current date. Example: "2021-04-01T14:40:14.939Z"
toDate
date-time (optional)
Search end date. The default value is the current date. Example: "2021-04-07T14:40:14.939Z"
adversary-types
array (optional)
Adversary types. If not specified, all objects are returned. Examples: "C2C", "Malware", "DGA", "Mining", "Spam", "Phishing"
GET Request Example
curl --location --request GET 'https://defender.lumu.io/api/spambox/adversaries?key=&page=1&items=50' \ --data-raw ''
Example Response (200 - Success)
{ "adversaries": [ { "indicator": "http://mining.com" "info": [ { "type": "Mining", "description": "CryptoMining domain" } ] } ], "timestamp": "2021-04-29T15:29:48.177Z", "paginationInfo": { "page": 1, "items": 1, "next": 2 } }

Get a detailed list of adversarial hosts related to Lumu Email Intelligence, within a number of past hours.

POST Request
GET Request
POST Request
POST https://defender.lumu.io/api/spambox/adversaries/last?key={company-key}
GET Request
GET https://defender.lumu.io/api/spambox/adversaries/last?key={company-key}
Query Params
Description
key
Your company's unique API key, available in the Lumu Portal
page
Page number of the result set (default: 1)
items
Limit the number of results per page (default: 50, max: 100)
hours
(only for GET) The number of past hours you want to narrow your results to  (default: 1)

Body Parameters
Name
Data Type
Description
hours
integer (optional)
The number of past hours you want to narrow your results to. The default value 1.
adversary-types
array (optional)
Adversary types. If not specified, all objects are returned. Examples: "C2C", "Malware", "DGA", "Mining", "Spam", "Phishing"
POST Request Example
curl --location --request POST 'https://defender.lumu.io/api/spambox/adversaries/last?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3&page=1&items=50' \ --data-raw '{ "hours": 200, "adversary-types": [] }'
GET Request Example
curl --location --request GET 'https://defender.lumu.io/api/spambox/adversaries/last?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3&page=1&items=50&hours=1' \ --data-raw ''
Example Response (200 - Success)
{
    "adversaries": [
        {
            "indicator": "http:<span>//</span>mining<span>.</span>com",
            "info": [
                {
                    "type": "Mining",
                    "description": "CryptoMining domain"
                }
            ]
        }
    ],
    "paginationInfo": {
        "page": 1,
        "items": 1,
        "next": 2
    }
}  

Get a list of adversarial hosts contacted within a number of past hours in plain text format.

POST Request
GET Request
POST Request
POST https://defender.lumu.io/api/spambox/adversaries/last/list?key={company-key}
GET Request
GET https://defender.lumu.io/api/spambox/adversaries/last/list?key={company-key}
Query Params
Description
key
Your company's unique API key, available in the Lumu Portal
hours
(only for GET) The number of past hours you want to narrow your results to  (default: 1)
max-items
Limit the number of results per page (default: 50, max: 100)

Body Parameters
Name
Data Type
Description
hours
integer (optional)
The number of past hours you want to narrow your results to. The default value 1.
POST Request Example
curl --location --request POST 'https://defender.lumu.io/api/spambox/adversaries/last/list?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3&max-items=50' \ --data-raw '{ "hours": 200 }'
GET Request Example
curl --location --request GET 'https://defender.lumu.io/api/spambox/adversaries/last/list?key=&max-items=50&hours=1' \ --data-raw ''
Example Response (200 - Success)
http://fraud.ro/
http://phishing.com/
http://fake-site.com/

Working with Incidents - Legacy [Deprecated]

Alert DEPRECATION NOTICE: This endpoint has been deprecated and it will be out of commission in the future. You can still use this endpoint if needed; however, we strongly recommend migrating to the new /secops/incidents. By migrating to this endpoint you can leverage enriched incident metadata for our existing incidents as well as all our newly introduced incident detections (Login Brute Force, Network Brute Force, Unusual Login, etc.)

The /incidents endpoints contain information about incidents of the company. Lumu groups all occurrences of contacts to malicious infrastructure by an adversary and presents them consolidated in the form of incidents.

Info
To get started with Incidents, consult our documentation.

General considerations

Incident statuses and types may vary over time. Therefore, any implementation using endpoints that accept these as query parameters should account for possible changes.

The following are the current values for these parameters:

  • status:  "open", "muted", "closed" .
  • incident-types:  "C2C", "Malware", "DGA", "Mining", "Spam", "Phishing"

User identification considerations

To associate a specific user with POST API actions (such as mark as read, mute, unmute, and close), include the  Lumu-User-Id header in the request, using the user's ID as its value.
Notes Example:  Lumu-User-Id:2. This parameter is optional. If it is not included, the action will not be associated with any specific user. For example, if the query header includes the ID 2, which corresponds to the user "Integration user", the incident log will appear as shown in the following image.

Retrieve Incidents

Retrieves a paginated list of incidents for the company, ordered by most recent first.

POST Request
POST Request
POST https://defender.lumu.io/api/incidents/all?key={company-key}
Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.
page
Page number of the result set (default: 1)
items
Limit the number of results per page (default: 50, max: 100)

Body parameters

Name
Data Type
Description
fromDate
date-time (optional)
Search start date. The default value is 7 days before the current date. Example: "2021-04-01T14:40:14.939Z"
toDate
date-time (optional)
Search end date. The default value is the current date. Example: "2021-04-07T14:40:14.939Z"
status
array (optional)
Incident status. If not specified, all objects are returned. Example: "open", "muted", "closed"
adversary-types
array (optional)
Adversary types. If not specified, all objects are returned. Examples: "C2C", "Malware", "DGA", "Mining", "Spam", "Phishing"
labels
array (optional)
Label IDs — You can use the Labels API call beforehand to retrieve available label IDs and their corresponding names. If not specified, all objects are returned. Example: 2, 3, 5
Example Request
curl --location --request POST 'https://defender.lumu.io/api/incidents/all?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3&page=1&items=50' \ --data-raw '{ "fromDate": "2021-03-23T16:15:30.00-05:00[Europe/Paris]", "toDate": "2021-04-15T16:15:30.234+01:00[Europe/Paris]", "status": ["open"], "adversary-types": ["C2C"], "labels": [0, 815] }'
Example Response
{
    "items": [
        {
            "id": "2a4862b0-97af-11eb-aa46-b5c18d44caca", 
            "timestamp": "2021-04-07T14:40:14.939Z", 
            "statusTimestamp": "2021-04-07T14:40:14.939Z", 
            "status": "open", 
            "contacts": 1, 
            "adversaries": [
                "example1.com"
            ], 
            "adversaryTypes": [
                "C2C"
            ], 
            "labelDistribution": {
                "17": 1
            }, 
            "totalEndpoints": 1, 
            "lastContact": "2021-04-04T14:37:02.228Z", 
            "unread": true
        }
    ],
    "paginationInfo": {
        "page": 1, 
        "items": 50,
    } 
}

Retrieve a specific Incident's details  [Available for Insights]

Retrieves detailed information about a specific incident. The response may include additional parameters—such as DNSPacketExtraInfo—depending on the data collection source.

GET Request
GET Request
GET https://defender.lumu.io/api/incidents/{incident-uuid}/details?key={company-key}
Query Params
Description
key
Your company's unique API key, available in the Lumu Portal. 

Example Request
--location --request GET 'https://defender.lumu.io/api/incidents/4d90fc30-a6de-11eb-8239-a117f0a9f6f5/details?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3' \ --data-raw ''
Example Response (200 - Success)
{
    "id": "4d90fc30-a6de-11eb-8239-a117f0a9f6f5",
    "timestamp": "2021-04-26T22:25:27.923Z",
    "isUnread": false,
    "contacts": 114,
    "adversaryId": "Malware family qakbot",
    "adversaries": [
        "malicious.net",
        "suspicious.biz",
        "example.com"
    ],
    "adversaryTypes": [
        "DGA"
    ],
    "description": "Malware family qakbot",
    "labelDistribution": {
        "144": 114
    },
    "totalEndpoints": 1,
    "lastContact": "2021-04-26T22:39:16.131Z",
    "actions": [
        {
            "datetime": "2021-04-27T15:13:56.939Z",
            "userId": 0,
            "action": "close",
            "comment": "Incident close from external API"
        },
        {
            "datetime": "2021-04-26T22:42:32.532Z",
            "userId": 1,
            "action": "read",
            "comment": ""
        }
    ],
    "status": "closed",
    "statusTimestamp": "2021-04-27T15:13:56.939Z",
    "firstContactDetails": {
        "uuid": "09e02310-de1b-11ec-b481-eb776e1a9b92",
        "datetime": "2022-05-28T00:13:45.281Z",
        "host": "111example.com",
        "types": [
            "Phishing"
        ],
        "details": [
            "Malware family Pony"
        ],
        "endpointIp": "255.111.22.000",
        "endpointName": "USER.USER-PC",
        "label": 346,
        "sourceType": "virtual_appliance",
        "sourceId": "55719C03-b31t-4d5e-8e1e-9f2b7d651c45",
        "sourceData": {
            "DNSPacketExtraInfo": {
                "question": {
                    "type": "A",
                    "name": "111example.com",
                    "class": "IN"
                },
                "responseCode": "NOERROR",
                "flags": {
                    "authoritative": false,
                    "recursion_available": true,
                    "truncated_response": false,
                    "checking_disabled": false,
                    "recursion_desired": true,
                    "authentic_data": false
                },
                "answers": [
                    {
                        "name": "111example.com",
                        "type": "A",
                        "class": "IN",
                        "ttl": 2549,
                        "data": "51.225.156.155"
                    }
                ],
                "opCode": "QUERY"
            }
        },
        "isPlayback": false
    },
    "lastContactDetails": {
        "uuid": "a53c04a0-de1b-11ec-8d45-eb776e3f5271",
        "datetime": "2022-05-28T00:18:05.930Z",
        "host": "111example.com",
        "types": [
            "Phishing"
        ],
        "details": [
            "Malware family Pony"
        ],
        "endpointIp": "119.129.000.11",
        "endpointName": "USER.USER-PC",
        "label": 346,
        "sourceType": "virtual_appliance",
        "sourceId": "55719C03-b31t-4d5e-8e1e-9f2b7d651c45",
        "sourceData": {
            "DNSPacketExtraInfo": {
                "question": {
                    "type": "A",
                    "name": "111example.com",
                    "class": "IN"
                },
                "responseCode": "NOERROR",
                "flags": {
                    "authoritative": false,
                    "recursion_available": true,
                    "truncated_response": false,
                    "checking_disabled": false,
                    "recursion_desired": true,
                    "authentic_data": false
                },
                "answers": [
                    {
                        "name": "111example.com",
                        "type": "A",
                        "class": "IN",
                        "ttl": 2549,
                        "data": "250.4.148.28"
                    }
                ],
                "opCode": "QUERY"
            }
        },
        "isPlayback": false
    }

Retrieve a specific Incident's context

Retrieves contextual information related to a specific incident.

GET Request
GET Request
GET https://defender.lumu.io/api/incidents/{incident-uuid}/context?key={company-key}&hash={hash-type}

Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.
hash-type
Message-digest algorithm (Cryptographic Hash Function) you are requesting, can correspond to SHA256, SHA1 or MD5. If a hash type isn't requested, this will return a SHA256 hash by default. This parameter isn't case sensitive.

Example Request
curl --location --request GET 'https://defender.lumu.io/api/incidents/4d90fc30-a6de-11eb-8239-a117f0a9f6f5/context?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3&hash=sha1'
Example Response (200 - Success)
{
    "adversary_id": "domain-example.net",
    "currently_active": false, 
    "deactivated_on": "2021-09-04T14:32:23.325Z",    
    "mitre": {
      "details": [
        {
            "tactic": "discovery",
            "techniques": ["T1083", "T1069.002", "T1082"]
        }, 
        {
            "tactic": "initial-access",
            "techniques": ["T1189", "T1566.001"]
        }
      ],
      "matrix": "enterprise",
      "version": "9.0"      
    }, 
    "related_files": [
        "c7267981748605fd27af739ef32d4688dc1dc160",
        "0668db6c06fe1bf8726487cd346f5dea7a20caf7",
        "4adb5eeb53dae0a580f4ec55a9add1a0696f4e93",
        "c38e3a08046938c0d9017c5d09e460b3d0046563",
        "8ae2e0bbb7174320379d720ca35421d3d96843ff",
        "c5515101ec506e963cc6fd4d2fc488300c4b4053",
        "79d78a1de39c09977d7d2b8bb09d78cfd7621804",
        "981ea159a18d468aded419ddace8403efa53e1a6",
        "c08b0daa01a2a3f5ce42d1f4838ca5ecd0e6b64c",
        "c7ea27eb33916cc63243354bd6bee988f2a16d09",
        "46b37255f22cb75c5031153d1639794c4ea53da4",
        "e89a0a90d44b186c129a9dfac85b2a6cb5686c94",
        "253738ee1fdff2131cc9917088d277dae983859a",
        "b61ac17c70aed3ad70d768d92dd39771e3eb9c59"
    ],
    "threat_details": [
        "Sodinokibi Ransomware related"
    ], 
    "threat_triggers": ["http://domain-example.net/"],
    "playbooks": ["https://docs.lumu.io/portal/en/kb/articles/malware-incident-response-playbook"],
    "external_resources": [
        "https://www.virustotal.com/gui/domain/domain-example.net/relations",
        "https://urlhaus.abuse.ch/host/domain-example.net/",
        "https://www.appgate.com/blog/electric-company-ransomware-attack-calls-for-14-million-in-ransom", 
        "https://blog.talosintelligence.com/2019/04/sodinokibi-ransomware-exploits-weblogic.html"
    ],
    "timestamp": "2021-11-03T18:30:01.782Z"
}

Comment a specific incident  [Available for Insights]

Add a comment to a specific incident. This operation does not return a response. 

POST Request
POST Request
POST https://defender.lumu.io/api/incidents/{incident-uuid}/comment?key={company-key}
Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.

Body parameters:
Name
Data Type
Description
comment
string
comment to be added to the incident
Example Request
curl --location --request POST 'https://defender.lumu.io/api/incidents/eec41860-e69f-11ec-b7a5-9ded001a2220/comment?key=MbEoJwFYiPmMUDi8k1CaIIo3EDeFwWox' \
--header 'Content-Type: application/json' \
--data-raw '{
    "comment": "comment"
}'

Retrieve open incidents  [Available for Insights]

Retrieves a paginated list of open incidents for the company, ordered by most recent first.

POST Request
POST Request
POST https://defender.lumu.io/api/incidents/open?key={company-key}
Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.
page
Page number of the result set (default: 1)
items
Limit the number of results per page (default: 50, max: 100)

Body Parameters
Name
Data Type
Description
adversary-types
array (optional)
Adversary types. If not specified, all objects are returned. Examples: "C2C", "Malware", "DGA", "Mining", "Spam", "Phishing"
labels
array (optional)
Label IDs — You can use the Labels API call beforehand to retrieve available label IDs and their corresponding names. If not specified, all objects are returned. Example: 2, 3,
Example Request
curl --location --request POST 'https://defender.lumu.io/api/incidents/open?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3&page=1&items=50' \ --data-raw '{ "adversary-types": [], "labels": [] }'
Example Response (200 - Success)
{
    "items": [
        {
            "id": "d53f69d0-9948-11eb-9b30-bd475fa20b50",
            "timestamp": "2021-04-09T15:32:45.933Z",
            "statusTimestamp": "2021-04-13T15:15:57.591Z",
            "status": "open",
            "contacts": 4,
            "adversaries": [
                "malicious.com",
                "suspicious.com"
            ],
            "adversaryId": "Malware family Banjori",
            "adversaryTypes": [
                "DGA"
            ],
            "description": "Malware family Banjori",
            "labelDistribution": {
                "37": 2,
                "39": 1,
                "179": 1
            },
            "totalEndpoints": 3,
            "lastContact": "2021-04-08T15:25:02.228Z",
            "unread": false
        }
    ],
    "paginationInfo": {
        "page": 1,
        "items": 50
    }
}

Retrieve muted incidents  [Available for Insights]

Retrieves a paginated list of muted incidents for the company, ordered by most recent first.

POST Request
POST Request
POST https://defender.lumu.io/api/incidents/muted?key={company-key}
Query Params
Description
key
Your company unique API key available at the Lumu Portal.
pages
Page number of the result set (default: 1)
items
Limit the number of results per page (default: 50, max: 100)

Body Parameters
Name
Data Type
Description
adversary-types
array (optional)
Adversary types. If not specified, all objects are returned. Examples: "C2C", "Malware", "DGA", "Mining", "Spam", "Phishing"
labels
array (optional)
Label IDs — You can use the Labels API call beforehand to retrieve available label IDs and their corresponding names. If not specified, all objects are returned. Example: 2, 3,

Mute incident  [Available for Insights]

Silence notifications for a specific incident.
POST Request
POST Request
POST https://defender.lumu.io/api/incidents/{incident-uuid}/mute?key={company-key}
Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.

Body Parameters
Name
Data Type
Description
comment
string (optional)
Comment to be added in the Incident log. Example: "Internal penetration tests"
Example Request
curl --location --request POST 'https://defender.lumu.io/api/incidents/d3f41000-af3f-11eb-84b5-75a575634188/mute?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3' \ --data-raw '{ "comment": "" }'

Unmute incident  [Available for Insights]

Enable notifications for a specific incident.

POST request
POST request
POST https://defender.lumu.io/api/incidents/{incident-uuid}/unmute?key={company-key}
Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.

Body Parameters
Name
Data Type
Description
comment
string (optional)
Comment to be added in the Incident log. Example: "Internal penetration tests"

Close incident  [Available for Insights]

Close a specific incident.
POST Request
POST Request
POST https://defender.lumu.io/api/incidents/{incident-uuid}/close?key={company-key}
Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.

Body Parameters
Name
Data Type
Description
comment
string (optional)
Comment to be added in the Incident log. Example: "Internal penetration tests"
Example Request
curl --location --request POST 'https://defender.lumu.io/api/incidents/d3f41000-af3f-11eb-84b5-75a575634188/close?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3' \ --data-raw '{ "comment": "" }'

Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.

Body parameters:
Name
Data Type
Description
comment
string
comment to be added to the incident
Example Request
curl --location --request POST 'https://defender.lumu.io/api/incidents/eec41860-e69f-11ec-b7a5-9ded001a2220/comment?key=MbEoJwFYiPmMUDi8k1CaIIo3EDeFwWox' \
--header 'Content-Type: application/json' \
--data-raw '{
    "comment": "comment"
}'

Retrieve open incidents  [Available for Insights]

Retrieves a paginated list of open incidents for the company, ordered by most recent first.

POST Request
POST Request
POST https://defender.lumu.io/api/incidents/open?key={company-key}
Query Params
Description
key
Your company's unique API key, available in the Lumu Portal.
page
Page number of the result set (default: 1)
items
Limit the number of results per page (default: 50, max: 100)

Body Parameters
Name
Data Type
Description
adversary-types
array (optional)
Adversary types. If not specified, all objects are returned. Examples: "C2C", "Malware", "DGA", "Mining", "Spam", "Phishing"
labels
array (optional)
Label IDs — You can use the Labels API call beforehand to retrieve available label IDs and their corresponding names. If not specified, all objects are returned. Example: 2, 3,
Example Request
curl --location --request POST 'https://defender.lumu.io/api/incidents/open?key=56a0fc30-a6de-85eb-8249-a117f0a9f8g3&page=1&items=50' \ --data-raw '{ "adversary-types": [], "labels": [] }'
Example Response (200 - Success)
{
    "items": [
        {
            "id": "d53f69d0-9948-11eb-9b30-bd475fa20b50",
            "timestamp": "2021-04-09T15:32:45.933Z",
            "statusTimestamp": "2021-04-13T15:15:57.591Z",
            "status": "open",
            "contacts": 4,
            "adversaries": [
                "malicious.com",
                "suspicious.com"
            ],
            "adversaryId": "Malware family Banjori",
            "adversaryTypes": [
                "DGA"
            ],
            "description": "Malware family Banjori",
            "labelDistribution": {
                "37": 2,
                "39": 1,
                "179": 1
            },
            "totalEndpoints": 3,
            "lastContact": "2021-04-08T15:25:02.228Z",
            "unread": false
        }
    ],
    "paginationInfo": {
        "page": 1,
        "items": 50
    }
}

Retrieve muted incidents  [Available for Insights]

Retrieves a paginated list of muted incidents for the company, ordered by most recent first.

POST Request
POST Request
POST https://defender.lumu.io/api/incidents/muted?key={company-key}
Query Params
Description
key
Your company unique API key available at the Lumu Portal.
pages
Page number of the result set (default: 1)
items
Limit the number of results per page (default: 50, max: 100)

Body Parameters
Name
Data Type
Description
adversary-types
array (optional)
Adversary types. If not specified, all objects are returned. Examples: "C2C", "Malware", "DGA", "Mining", "Spam", "Phishing"
labels
array (optional)

Subscribe to Incidents (Websocket) [Deprecated]

Lumu provides a streaming endpoint to subscribe to real-time updates on activity notifications. Establishing a connection to the streaming API means making a very long-lived HTTP request, and parsing the response incrementally.

The following endpoint can be used to stream notifications to any client that implements WebSockets.

wss://defender.lumu.io/api/incidents/subscribe?key={company-key}
Info
The date format in the notifications received by a WebSocket client from the Defender API is in the UTC time zone and follows standards published in RFC 3339 and ISO 8601.

See the following examples of notification logs received by a WebSocket client from the Defender API:

New Incident

The stream notification log for a new incident detection will be similar to the following:

Example
{
    "NewIncidentCreated": {
        "companyId": "89068290-4388-4b4d-b638-b5y83a730a51",
        "incident": {
            "id": "3ccf3e50-a771-61eb-95ec-ab811662da34",
            "timestamp": "2021-04-27T15:57:15.829Z",
            "statusTimestamp": "2021-04-27T15:57:15.829Z",
            "status": "open",
            "contacts": 1,
            "adversaries": ["example.com"],
            "adversaryId": "example.com",
            "adversaryTypes": ["Phishing"],
            "description": "Phishing domain",
            "labelDistribution": {
                "37": 1
            },
            "totalEndpoints": 1,
            "lastContact": "2021-04-12T15:25:02.228Z",
            "unread": true
        },
        "openIncidentsStats": {
            "openIncidents": 2,
            "totalContacts": 4,
            "typeDistribution": {
                "Phishing": 2
            },
            "labelDistribution": {
                "179": 1,
                "37": 2
            },
            "totalEndpoints": 2
        }
    }
}    

Incident Read

In the following log, we have an example of an incident that was marked as read:

Example
{
   "IncidentMarkedAsRead": {
         "companyId": "c5437753-03e1-4792-aec6-b72604f87668", 
         "incidentId": "be2a5ea0-989c-11eb-8093-c5b4c3cefe69"
   }
}

Incident Closed

In the following log, we have an example of an incident that was marked as closed:

Example
{
    "IncidentClosed": {
        "companyId": "c5437753-03e1-4792-aec6-b72604f87668", 
        "incident": {
            "id": "17615ed0-97c9-11eb-b4f0-e13747f3cc1f", 
            "timestamp": "2021-04-07T17:45:50.141Z", 
            "statusTimestamp": "2021-04-07T17:47:07.906Z", 
            "status": "closed", 
            "contacts": 1, 
            "adversaries": [
                "fraud.it"
            ], 
            "adversaryId": "fraud.it", 
            "adversaryTypes": [
                "Phishing"
            ], 
            "labelDistribution": {
                "25": 1
            }, 
            "totalEndpoints": 1, 
            "lastContact": "2021-04-07T10:37:02.228Z", 
            "unread": false
        }, 
        "comment": "This case is now solved"
    }
}   

Incident Muted

In the following log, we have an example of an incident that was marked as muted:

Example
{
    "IncidentMuted": {
        "companyId": "c5437753-03e1-4792-aec6-b72604f87668", 
        "incident": {
            "id": "547773a0-97c8-11eb-b4f0-e13747f3cc1f", 
            "timestamp": "2021-04-07T17:40:23.130Z", 
            "statusTimestamp": "2021-04-07T17:42:23.100Z", 
            "status": "muted", 
            "contacts": 1, 
            "adversaries": [
                "phishing.ru"
            ], 
            "adversaryId": "phishing.ru", 
            "adversaryTypes": [
                "Mining"
            ], 
            "labelDistribution": {
                "25": 1
            }, 
            "totalEndpoints": 1, 
            "lastContact": "2021-04-07T10:37:02.228Z", 
            "unread": false
        }, 
        "comment": "This was an internal test"
        "reason": "irrelevant"
    }
}  

Incident Unmuted

In the following log, we have an example of an incident that was marked as unmuted:

Example
{
    "IncidentUnmuted": {
        "companyId": "c5437753-03e1-4792-aec6-b72604f87668", 
        "incident": {
            "id": "547773a0-97c8-11eb-b4f0-e13747f3cc1f", 
            "timestamp": "2021-04-07T17:40:23.130Z", 
            "statusTimestamp": "2021-04-07T17:44:50.861Z", 
            "status": "open", 
            "contacts": 3, 
            "adversaries": [
                "examlple.ru"
            ], 
            "adversaryId": "example.ru", 
            "adversaryTypes": [
                "Mining"
            ], 
            "labelDistribution": {
                "25": 3
            }, 
            "totalEndpoints": 1, 
            "lastContact": "2021-04-07T10:37:02.228Z", 
            "unread": false
        }, 
        "comment": "The incident is now relevant"
    }
}      

Incident Updated

An incident is updated whenever new contact with an Indicator of Compromise (IoC) is detected. The following log shows an example of an updated incident:

Example
{
    "IncidentUpdated": {
        "companyId": "89068290-4388-4b4d-b638-b9b93a730a51",
        "incident": {
            "id": "3ccf3e50-a771-11eb-95ec-ab811662da34",
            "timestamp": "2021-04-27T15:57:15.829Z",
            "statusTimestamp": "2021-04-27T15:57:15.829Z",
            "status": "open",
            "contacts": 2,
            "adversaries": ["example.com"],
            "adversaryId": "example.com",
            "adversaryTypes": ["Phishing"],
            "description": "Phishing domain",
            "labelDistribution": {
                "37": 2
            },
            "totalEndpoints": 1,
            "lastContact": "2021-04-12T15:25:02.228Z",
            "unread": true
        },
        "openIncidentsStats": {
            "openIncidents": 2,
            "totalContacts": 5,
            "typeDistribution": {
                "Phishing": 2
            },
            "labelDistribution": {
                "179": 1,
                "37": 2
            },
            "totalEndpoints": 2
        }
    }
}       

      Get an AI Summary

          • Related Articles

          • ESET PROTECT Cloud Custom Response Integration

            Learn how to use the Lumu Defender API and ESET PROTECT Cloud, together with the ESET Connect API, to effectively mitigate security risks. Response integration between ESET PROTECT Cloud and Lumu Requirements ESET PROTECT Cloud You need an ESET ...
          • Kaspersky Endpoint Security On-Premise Custom Response Integration

            This article shows how to leverage Kaspersky Endpoint Security, also known as KES, through its Kaspersky Security Center (KSC) Web Console and Lumu Defender API to enhance your Response capabilities. Response integration between Kaspersky Endpoint ...
          • Custom Integrations - Lumu Defender API

            For getting started with Lumu integrations with third-party solutions, consult our Integrations guide. The Lumu Defender API offers a framework to help you leverage the value of existing investments by integrating Lumu’s real-time information on ...
          • Bitdefender Custom Response Integration

            Bitdefender Custom Response Integration This article shows how to leverage the Lumu Defender API and Bitdefender API to mitigate security risks. Requirements GravityZone Business Security Enterprise, cloud version, ...
          • Symantec Endpoint Protection Custom Response Integration

            Before going through this article, check our Out-of-the-box App Integrations category. This is the recommended way to integrate the components of your cybersecurity stack with Lumu. If the product you are looking to integrate is there, it is advised ...