diff --git a/package.json b/package.json index cb572f0..31e541b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@jupiterone/graph-netskope", - "version": "1.2.7", + "version": "1.2.8", "description": "A JupiterOne Integration for ingesting data of the Netskope", "repository": { "type": "git", @@ -49,8 +49,7 @@ "@types/to-json-schema": "^0.2.4" }, "dependencies": { - "@lifeomic/attempt": "^3.0.3", - "node-fetch": "2", + "@jupiterone/integration-sdk-http-client": "^13.2.0", "to-json-schema": "^0.2.5" } } diff --git a/src/client.ts b/src/client.ts index 5bd8fb6..6382100 100644 --- a/src/client.ts +++ b/src/client.ts @@ -1,113 +1,57 @@ -import { URL, URLSearchParams } from 'url'; -import fetch, { Response } from 'node-fetch'; -import { retry } from '@lifeomic/attempt'; - import { + IntegrationLogger, IntegrationProviderAPIError, IntegrationProviderAuthenticationError, } from '@jupiterone/integration-sdk-core'; import { IntegrationConfig } from './config'; import { AppInstance, Device, NetskopeResponse, UserConfig } from './types'; +import { BaseAPIClient } from '@jupiterone/integration-sdk-http-client'; export type ResourceIteratee = (each: T) => Promise | void; -class ResponseError extends IntegrationProviderAPIError { - response: Response; - constructor(options) { - super(options); - this.response = options.response; - } -} +const ENTITIES_PER_PAGE = 500; -export class APIClient { - constructor(readonly config: IntegrationConfig) {} +export class APIClient extends BaseAPIClient { + private readonly token: string; - private readonly paginateEntitiesPerPage = 500; + constructor(config: IntegrationConfig, logger: IntegrationLogger) { + super({ + baseUrl: `https://${config.tenantName}.goskope.com/api/v1`, + logger, + logErrorBody: true, + }); + this.token = config.apiV1Token; + } - private withBaseUri = (path: string, params?: Record) => { - const url = new URL( - `https://${this.config.tenantName}.goskope.com/api/v1${path}`, - ); - url.search = new URLSearchParams(params).toString(); - return url.toString(); - }; + protected getAuthorizationHeaders(): Record { + // Not fully implemented because netskope API doesn't authenticate through headers + return {}; + } - public async request(uri: string): Promise { - try { - const result = await retry( - async () => { - // Only POST requests can have body, where token is placed - const authBody = { token: this.config.apiV1Token }; - const response = await fetch(uri, { - method: 'POST', - body: JSON.stringify(authBody), - headers: { 'Content-Type': 'application/json' }, - }); - if (!response.ok) { - throw new ResponseError({ - endpoint: uri, - status: response.status, - statusText: response.statusText, - response, - }); - } - return response; - }, - { - delay: 1000, - maxAttempts: 10, - }, - ); - return (await result.json()) as T; - } catch (err) { - throw new IntegrationProviderAPIError({ - cause: err, - endpoint: uri.toString(), - status: err.status, - statusText: err.statusText, - }); - } + public async postRequest(uri: string): Promise { + const response = await this.retryableRequest(uri, { + method: 'POST', + body: { + token: this.token, + }, + authorize: false, // don't set Authorization headers + }); + return response.json(); } public async getRequest(uri: string): Promise { - try { - const result = await retry( - async () => { - const response = await fetch(uri, { - method: 'GET', - headers: { 'Content-Type': 'application/json' }, - }); - if (!response.ok) { - throw new ResponseError({ - endpoint: uri, - status: response.status, - statusText: response.statusText, - response, - }); - } - return response; - }, - { - delay: 1000, - maxAttempts: 10, - }, - ); - return (await result.json()) as T; - } catch (err) { - throw new IntegrationProviderAPIError({ - cause: err, - endpoint: uri.toString(), - status: err.status, - statusText: err.statusText, - }); - } + const response = await this.retryableRequest(uri, { + method: 'GET', + authorize: false, // don't set Authorization headers + }); + return response.json(); } public async verifyAuthentication(): Promise { - const endpoint = this.withBaseUri('/clients', { limit: '1' }); + const endpoint = '/clients?limit=1'; try { - const body = await this.request>(endpoint); + const body = await this.postRequest>(endpoint); if (body.status === 'error') { throw new IntegrationProviderAuthenticationError({ endpoint, @@ -130,12 +74,10 @@ export class APIClient { let length = 0; do { - const endpoint = this.withBaseUri('/clients', { - limit: `${this.paginateEntitiesPerPage}`, - skip: `${this.paginateEntitiesPerPage * page}`, - }); + const skip = ENTITIES_PER_PAGE * page; + const endpoint = `/clients?limit=${ENTITIES_PER_PAGE}&skip=${skip}`; - const body = await this.request>(endpoint); + const body = await this.postRequest>(endpoint); if (body.status === 'error') { throw new IntegrationProviderAPIError({ @@ -158,12 +100,8 @@ export class APIClient { email: string, iteratee: ResourceIteratee, ) { - const endpoint = this.withBaseUri('/userconfig', { - email, - configtype: 'agent', - }); - - const body = await this.request>(endpoint); + const endpoint = `/userconfig?email=${email}&configtype=agent`; + const body = await this.postRequest>(endpoint); if (body.status === 'success') { await iteratee(body.data); @@ -175,14 +113,11 @@ export class APIClient { let length = 0; do { - const endpoint = this.withBaseUri('/app_instances', { - op: 'list', - limit: `${this.paginateEntitiesPerPage}`, - skip: `${this.paginateEntitiesPerPage * page}`, - }); + const skip = ENTITIES_PER_PAGE * page; + const endpoint = `/app_instances?op=list&limit=${ENTITIES_PER_PAGE}&skip=${skip}`; const body = - await this.request>(endpoint); + await this.postRequest>(endpoint); if (body.status === 'error') { throw new IntegrationProviderAPIError({ @@ -207,12 +142,8 @@ export class APIClient { let length = 0; do { - const endpoint = this.withBaseUri('/app_instances', { - op: 'list', - limit: `${this.paginateEntitiesPerPage}`, - skip: `${this.paginateEntitiesPerPage * page}`, - token: this.config.apiV1Token, - }); + const skip = ENTITIES_PER_PAGE * page; + const endpoint = `/app_instances?op=list&limit=${ENTITIES_PER_PAGE}&skip=${skip}&token=${this.token}`; const body = await this.getRequest>(endpoint); @@ -235,6 +166,13 @@ export class APIClient { } } -export function createAPIClient(config: IntegrationConfig): APIClient { - return new APIClient(config); +let client: APIClient | undefined; +export function createAPIClient( + config: IntegrationConfig, + logger: IntegrationLogger, +): APIClient { + if (!client) { + client = new APIClient(config, logger); + } + return client; } diff --git a/src/config.ts b/src/config.ts index 80d4dfb..e963982 100644 --- a/src/config.ts +++ b/src/config.ts @@ -35,6 +35,6 @@ export async function validateInvocation( ); } - const apiClient = createAPIClient(config); + const apiClient = createAPIClient(config, context.logger); await apiClient.verifyAuthentication(); } diff --git a/src/steps/app-instance/index.ts b/src/steps/app-instance/index.ts index a517e94..411e608 100644 --- a/src/steps/app-instance/index.ts +++ b/src/steps/app-instance/index.ts @@ -19,8 +19,9 @@ import { createAppInstanceEntity } from './converter'; export async function fetchAppInstances({ instance, jobState, + logger, }: IntegrationStepExecutionContext) { - const apiClient = createAPIClient(instance.config); + const apiClient = createAPIClient(instance.config, logger); const tenantEntity = (await jobState.getData(TENANT_ENTITY_KEY)) as Entity; await apiClient.iterateGetAppInstances(async (appInstance) => { diff --git a/src/steps/device/index.ts b/src/steps/device/index.ts index 40238c2..aabf0d1 100644 --- a/src/steps/device/index.ts +++ b/src/steps/device/index.ts @@ -19,8 +19,9 @@ import { createDeviceEntity } from './converter'; export async function fetchDevices({ instance, jobState, + logger, }: IntegrationStepExecutionContext) { - const apiClient = createAPIClient(instance.config); + const apiClient = createAPIClient(instance.config, logger); const tenantEntity = (await jobState.getData(TENANT_ENTITY_KEY)) as Entity; await apiClient.iterateDevices(async (device) => { diff --git a/src/steps/user-configuration/__recordings__/fetch-and-build-user-configuration_1957353361/recording.har b/src/steps/user-configuration/__recordings__/fetch-and-build-user-configuration_1957353361/recording.har index c2e5cd9..bc2c0f3 100644 --- a/src/steps/user-configuration/__recordings__/fetch-and-build-user-configuration_1957353361/recording.har +++ b/src/steps/user-configuration/__recordings__/fetch-and-build-user-configuration_1957353361/recording.har @@ -4,11 +4,11 @@ "creator": { "comment": "persister:JupiterOneIntegationFSPersister", "name": "Polly.JS", - "version": "5.1.1" + "version": "6.0.5" }, "entries": [ { - "_id": "ac27007468283a82ee95a6503c2d44a3", + "_id": "e831f389aefbf207e1753dc1cd7b425b", "_order": 0, "cache": {}, "request": { @@ -23,7 +23,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -40,17 +40,12 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 333, + "headersSize": 291, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -60,22 +55,22 @@ }, "queryString": [ { - "name": "email", - "value": "priyank.shah2@crestdatasys.com" + "name": "limit", + "value": "500" }, { - "name": "configtype", - "value": "agent" + "name": "skip", + "value": "0" } ], - "url": "https://alliances.goskope.com/api/v1/userconfig?email=priyank.shah2%40crestdatasys.com&configtype=agent" + "url": "https://alliances.eu.goskope.com/api/v1/clients?limit=500&skip=0" }, "response": { - "bodySize": 463, + "bodySize": 17948, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 463, - "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"priyank.shah2@crestdatasys.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"Netskope\",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"priyank.shah2@crestdatasys.com\",\"UserKey\":\"[REDACTED]\"}}}" + "size": 17948, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":[{\"attributes\":{\"_id\":\"z5d3sHSYG05r6bZweIAs_95C8C428-9BBC-061B-1A82-576A4F51DB9A\",\"client_version\":\"117.0.0.2090\",\"device_id\":\"z5d3sHSYG05r6bZweIAs_95C8C428-9BBC-061B-1A82-576A4F51DB9A\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"Mac15,3\",\"hostname\":\"M3-General\",\"last_hostinfo_update_timestamp\":\"1720527733\",\"macAddresses\":[\"32:9F:41:B9:04:FC\",\"10:9F:41:B9:04:FC\",\"00:E0:4C:68:00:39\"],\"managementID\":\"0199ADC3943A5DA18141F38815843120\",\"migrated_revision\":\"v1\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"\",\"os\":\"Mac\",\"os_version\":\"14.3.1\",\"serialNumber\":\"GYXPN2KV2F\",\"steeringConfig\":\"Default tenant config\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Enabled\",\"service_name\":\"Private Access\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1722898295},\"last_event_service_name\":\"Private Access\",\"users\":[{\"_id\":\"80087e7c64f4836bda1eb0a0\",\"device_classification_custom_status\":\"unmanaged\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Enabled\",\"service_name\":\"Private Access\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1722898295},\"user_added_time\":1710151785.0721564,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"levente.fangli@cososys.com\"}]}},{\"attributes\":{\"_id\":\"vSLVto5lgjDKwblfHdxy_32EA6176-413E-F32D-664F-86B2CB4768A7\",\"client_install_time\":1722366126,\"client_version\":\"117.0.0.2090\",\"device_id\":\"vSLVto5lgjDKwblfHdxy_32EA6176-413E-F32D-664F-86B2CB4768A7\",\"host_info\":{\"device_make\":\"VMware, Inc.\",\"device_model\":\"VMware Virtual Platform\",\"hostname\":\"oak-vcs1437\",\"last_hostinfo_update_timestamp\":\"1722366137\",\"macAddresses\":[\"00:50:56:AE:64:83\",\"00:50:56:AE:E9:68\"],\"managementID\":\"\",\"migrated_revision\":\"v2\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"58484882-EF1A-55A4-DDCE-9A09C6D0B508\",\"os\":\"Windows\",\"os_version\":\"11.0.22631\",\"serialNumber\":\"VMware-42 2e 35 8a 08 57 91 7d-c8 2e 1c b2 7a be ea cc\",\"steeringConfig\":\"Default tenant config\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Enabled\",\"service_name\":\"Internet Security\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1722894619},\"last_event_service_name\":\"Internet Security\",\"users\":[{\"_id\":\"8a058acd4f6aab36ac6c92d9\",\"device_classification_custom_status\":\"unmanaged\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Enabled\",\"service_name\":\"Internet Security\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1722894619},\"user_added_time\":1714627491.7501545,\"user_groups\":[\"Rvbd_npm\"],\"user_source\":\"Directory\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"mcaponetti@riverbed.com\"}]}},{\"attributes\":{\"_id\":\"s3cdns0BnSSxwwPjexH7_8251E21F-2223-73F5-D308-70FF560EE4C2\",\"client_install_time\":1719143870,\"client_version\":\"117.0.0.2090\",\"device_id\":\"s3cdns0BnSSxwwPjexH7_8251E21F-2223-73F5-D308-70FF560EE4C2\",\"host_info\":{\"device_make\":\"Google\",\"device_model\":\"Google Compute Engine\",\"hostname\":\"instance-ngcc1\",\"last_hostinfo_update_timestamp\":\"1720487073\",\"macAddresses\":[\"42:01:0A:46:00:13\"],\"managementID\":\"\",\"migrated_revision\":\"v2\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"3580E698-54EC-5558-AB45-1441D4B79D1B\",\"os\":\"Windows Server\",\"os_version\":\"10.0(1607)\",\"serialNumber\":\"GoogleCloud-A8670CC298AA1DCF02C7776E0CF257AB\",\"steeringConfig\":\"Default tenant config\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Enabled\",\"service_name\":\"Private Access\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1722713867},\"last_event_service_name\":\"Private Access\",\"users\":[{\"_id\":\"cf28df104ae301c16b2459d3\",\"device_classification_custom_status\":\"unmanaged\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Enabled\",\"service_name\":\"Private Access\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1722713867},\"user_added_time\":1717383375.3607075,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"nadav@skyformation.onmicrosoft.com\"}]}},{\"attributes\":{\"_id\":\"hQaUnvCz65aMEw7ov4z4_B31800FD-B023-FB33-ECC5-05509D4B2CBD\",\"client_install_time\":1712043282,\"client_version\":\"117.0.0.2090\",\"device_id\":\"hQaUnvCz65aMEw7ov4z4_B31800FD-B023-FB33-ECC5-05509D4B2CBD\",\"host_info\":{\"device_make\":\"VMware, Inc.\",\"device_model\":\"VMware Virtual Platform\",\"hostname\":\"oak-vcs2697\",\"last_hostinfo_update_timestamp\":\"1721230175\",\"macAddresses\":[\"00:50:56:AB:D2:A1\"],\"managementID\":\"\",\"migrated_revision\":\"v2\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"ECE13078-01F0-F3CC-E617-32BE96D4A127\",\"os\":\"Windows\",\"os_version\":\"10.0.19045\",\"serialNumber\":\"VMware-42 2b e6 41 b2 ce 11 06-0c c6 e7 5e cb 0c a5 95\",\"steeringConfig\":\"Rvbd_SHM\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Enabled\",\"service_name\":\"Private Access\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1722713740},\"last_event_service_name\":\"Private Access\",\"users\":[{\"_id\":\"88b17b5bff44cb872b4346ad\",\"device_classification_custom_status\":\"unmanaged\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Enabled\",\"service_name\":\"Private Access\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1722713740},\"user_added_time\":1712041127.5332298,\"user_groups\":[\"Rvbd_shm\"],\"user_source\":\"Directory\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"vikash.ranjan@riverbed.com\"}]}},{\"attributes\":{\"_id\":\"v4cpao3eO7s6Bjs3pURk_94A665CB-9FBF-2E29-2E84-E974B5B121DF\",\"client_install_time\":1709816501,\"client_version\":\"117.0.0.2090\",\"device_id\":\"v4cpao3eO7s6Bjs3pURk_94A665CB-9FBF-2E29-2E84-E974B5B121DF\",\"host_info\":{\"device_make\":\"Parallels International GmbH.\",\"device_model\":\"Parallels ARM Virtual Machine\",\"hostname\":\"YAIRCHOTAMA1E4\",\"last_hostinfo_update_timestamp\":\"1721822221\",\"macAddresses\":[\"00:1C:42:11:C9:E7\"],\"managementID\":\"\",\"migrated_revision\":\"v2\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"E346A18E-C9F1-00C2-9E86-972ED09CB3BC\",\"os\":\"Windows\",\"os_version\":\"11.0.22631\",\"serialNumber\":\"Parallels-0D C4 97 FD B6 23 48 C6 A7 75 0E AA 24 29 BC ED\",\"steeringConfig\":\"Default tenant config\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Down\",\"npa_status\":\"Disabled\",\"service_name\":\"Private Access\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1722613813},\"last_event_service_name\":\"Private Access\",\"users\":[{\"_id\":\"9919976939c49cf7756281b5\",\"device_classification_custom_status\":\"unmanaged\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Down\",\"npa_status\":\"Disabled\",\"service_name\":\"Private Access\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1722613813},\"user_added_time\":1709814134.6763482,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"demoy@infinipoint.co\"}]}},{\"attributes\":{\"_id\":\"nqThejFv1idNHDlYUZwq_990862CC-F478-FEC8-24E2-11B77FFDC1A1\",\"client_install_time\":1714670367,\"client_version\":\"117.0.0.2090\",\"device_id\":\"nqThejFv1idNHDlYUZwq_990862CC-F478-FEC8-24E2-11B77FFDC1A1\",\"host_info\":{\"device_make\":\"VMware, Inc.\",\"device_model\":\"VMware7,1\",\"hostname\":\"DESKTOP-0SGNQC8\",\"last_hostinfo_update_timestamp\":\"1721783781\",\"macAddresses\":[\"00:0C:29:37:BF:AD\"],\"managementID\":\"\",\"migrated_revision\":\"v2\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"E012A4E0-8BFB-E262-6D5E-0C9FEA3B22B7\",\"os\":\"Windows\",\"os_version\":\"10.0.19045\",\"serialNumber\":\"VMware-56 4d 4b c4 c5 3c 0c 86-63 f7 61 4b 50 37 bf ad\",\"steeringConfig\":\"Default tenant config\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Enabled\",\"service_name\":\"Internet Security\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1721862019},\"last_event_service_name\":\"Internet Security\",\"users\":[{\"_id\":\"29a2a1d4c6d3b1da5e2cf23d\",\"device_classification_custom_status\":\"unmanaged\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Enabled\",\"service_name\":\"Internet Security\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1721862019},\"user_added_time\":1714627372.382257,\"user_groups\":[\"Rvbd_npm\"],\"user_source\":\"Directory\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"jdelio@riverbed.com\"}]}},{\"attributes\":{\"_id\":\"thcS22ROVobTcp7daXCK_F9CABE66-07BF-70FB-1579-A4D9E22D9F80\",\"client_install_time\":1718619907,\"client_version\":\"117.0.0.2090\",\"device_id\":\"thcS22ROVobTcp7daXCK_F9CABE66-07BF-70FB-1579-A4D9E22D9F80\",\"host_info\":{\"device_make\":\"Xen\",\"device_model\":\"N\\/A\",\"hostname\":\"ip-172-31-37-148\",\"last_hostinfo_update_timestamp\":\"1720481608\",\"macAddresses\":[\"0E:A8:AC:A1:55:AB\"],\"managementID\":\"\",\"migrated_revision\":\"v1\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"\",\"os\":\"Linux\",\"os_version\":\"22.04\",\"serialNumber\":\"ec283fd8-a53f-0b8b-02db-233a8f633fad\",\"steeringConfig\":\"Default tenant config\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Uninstalled\",\"timestamp\":1721389157},\"last_event_service_name\":\"Internet Security\",\"users\":[{\"_id\":\"04aa771dcf2d4e8d2d366fb7\",\"device_classification_custom_status\":\"unknown\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Uninstalled\",\"timestamp\":1721389157},\"user_added_time\":1718618868.3456221,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"kmaheshwari@netskope.com\"}]}},{\"attributes\":{\"_id\":\"Nhk3lu4FzXpJ2NKmMCht_AB2E7066-747D-8728-71F9-6163532C2BD0\",\"client_version\":\"117.0.0.2090\",\"device_id\":\"Nhk3lu4FzXpJ2NKmMCht_AB2E7066-747D-8728-71F9-6163532C2BD0\",\"host_info\":{\"device_make\":\"Microsoft Corporation\",\"device_model\":\"Surface Laptop Studio\",\"hostname\":\"Jenga-Surface\",\"last_hostinfo_update_timestamp\":\"1720532699\",\"macAddresses\":[\"6C:A1:00:00:44:CD\"],\"managementID\":\"\",\"migrated_revision\":\"v2\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"F546DEC0-AFF8-F1D5-1759-6721396ED3F8\",\"os\":\"Windows\",\"os_version\":\"11.0.22621\",\"serialNumber\":\"0F00X1H213700C\",\"steeringConfig\":\"Default tenant config\"},\"last_event\":{\"actor\":\"User\",\"event\":\"System shutdown\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Disabled\",\"timestamp\":1721019201},\"last_event_service_name\":\"Internet Security\",\"users\":[{\"_id\":\"e435dd14de582283ed35d71a\",\"device_classification_custom_status\":\"unmanaged\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"User\",\"event\":\"System shutdown\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Disabled\",\"timestamp\":1721019201},\"user_added_time\":1716919059.9516065,\"user_groups\":[],\"user_source\":\"Directory\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"taylor@eras.tour\"}]}},{\"attributes\":{\"_id\":\"dQMgF1gHkS9afhV30G9Z_1824AE41-3C36-5E41-0C95-BB71B23F4D27\",\"client_install_time\":1711665068,\"client_version\":\"117.0.0.2090\",\"device_id\":\"dQMgF1gHkS9afhV30G9Z_1824AE41-3C36-5E41-0C95-BB71B23F4D27\",\"host_info\":{\"device_make\":\"VMware, Inc.\",\"device_model\":\"VMware Virtual Platform\",\"hostname\":\"oak-vcs1593\",\"last_hostinfo_update_timestamp\":\"1720486941\",\"macAddresses\":[\"00:50:56:AE:21:AD\",\"00:50:56:AE:E6:91\"],\"managementID\":\"\",\"migrated_revision\":\"v2\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"B6184985-A869-E996-F8EC-125558AA5899\",\"os\":\"Windows\",\"os_version\":\"11.0.22631\",\"serialNumber\":\"VMware-42 2e a6 0c fa 11 02 43-7f 98 6b e9 e9 a0 86 98\",\"steeringConfig\":\"Default tenant config\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Enabled\",\"service_name\":\"Private Access\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1720571281},\"last_event_service_name\":\"Private Access\",\"users\":[{\"_id\":\"58bfb9ee785143849a9f1e04\",\"device_classification_custom_status\":\"unmanaged\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Enabled\",\"service_name\":\"Private Access\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1720571281},\"user_added_time\":1618419177,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"Karim.Saadah@riverbed.com\"}]}},{\"attributes\":{\"_id\":\"s3cdns0BnSSxwwPjexH7_18CB389E-B612-7863-6A27-C5E55E0A9C0A\",\"client_install_time\":1718268105,\"client_version\":\"116.0.0.2073\",\"device_id\":\"s3cdns0BnSSxwwPjexH7_18CB389E-B612-7863-6A27-C5E55E0A9C0A\",\"host_info\":{\"device_make\":\"Google\",\"device_model\":\"Google Compute Engine\",\"hostname\":\"instance-ngsre-5940\",\"last_hostinfo_update_timestamp\":\"1718268115\",\"macAddresses\":[\"42:01:0A:46:01:19\"],\"managementID\":\"\",\"migrated_revision\":\"v2\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"5BA52832-BD07-68EB-0F8A-D17EB074987B\",\"os\":\"Windows Server\",\"os_version\":\"10.0(1607)\",\"serialNumber\":\"GoogleCloud-B66535985951DB5F62B15A1CA4C95F86\",\"steeringConfig\":\"Default tenant config\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Rollback Failure\",\"event_details\":\"Failed to rollback to client version 116.0.0.2073 - AgentService Installation Failed\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Disabled\",\"timestamp\":1719140024},\"last_event_service_name\":\"Internet Security\",\"users\":[{\"_id\":\"ea280b7fd54aca744a946db1\",\"device_classification_custom_status\":\"unknown\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Rollback Failure\",\"event_details\":\"Failed to rollback to client version 116.0.0.2073 - AgentService Installation Failed\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Disabled\",\"timestamp\":1719140024},\"user_added_time\":1717383375.3607075,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"nadav@skyformation.onmicrosoft.com\"}]}},{\"attributes\":{\"_id\":\"3V3tf6N09ZyFH7e9jWc6_8D66E961-1E3A-5613-F944-FDF3DEE44762\",\"client_version\":\"116.0.0.2073\",\"device_id\":\"3V3tf6N09ZyFH7e9jWc6_8D66E961-1E3A-5613-F944-FDF3DEE44762\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"MacBookPro17,1\",\"hostname\":\"Aaron\\u2019s MacBook Pro\",\"last_hostinfo_update_timestamp\":\"1717698650\",\"macAddresses\":[\"B2:BE:83:5B:AB:47\",\"B0:BE:83:5B:AB:47\"],\"managementID\":\"CB9D8282C5505292B74CB51B7AAC5BB1\",\"migrated_revision\":\"v1\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"\",\"os\":\"Mac\",\"os_version\":\"14.5.0\",\"serialNumber\":\"C02H16L2Q05F\",\"steeringConfig\":\"Default tenant config\"},\"last_event\":{\"actor\":\"System\",\"event\":\"CA Installation Change\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Disabled\",\"timestamp\":1719008823},\"last_event_service_name\":\"Internet Security\",\"users\":[{\"_id\":\"1b97621e7dac53ff347b76a2\",\"device_classification_custom_status\":\"unmanaged\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"CA Installation Change\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Disabled\",\"timestamp\":1719008823},\"user_added_time\":1717698309.6040349,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"aaron.dunn@endpointprotector.com\"}]}},{\"attributes\":{\"_id\":\"MFo7s628qv9pJnnRY9hj_7B28413D-618A-2FAC-E1D5-7EF320E144C3\",\"client_install_time\":1644913809,\"client_version\":\"116.1.0.2065\",\"device_id\":\"MFo7s628qv9pJnnRY9hj_7B28413D-618A-2FAC-E1D5-7EF320E144C3\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"MacBookAir10,1\",\"hostname\":\"alexM1\",\"last_hostinfo_update_timestamp\":\"1718919658\",\"macAddresses\":[\"0E:91:D5:0A:E2:62\"],\"managementID\":\"675A1FD21EE2595687A0ADC1CB0D4A83\",\"migrated_revision\":\"v1\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"\",\"os\":\"Mac\",\"os_version\":\"15.0.0\",\"serialNumber\":\"C02DQ25KQ6L8\",\"steeringConfig\":\"Default tenant config\"},\"last_event\":{\"actor\":\"System\",\"event\":\"CA Installation Change\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Disabled\",\"timestamp\":1718977684},\"last_event_service_name\":\"Internet Security\",\"users\":[{\"_id\":\"e520de502156a14aeb323f17\",\"device_classification_custom_status\":\"unmanaged\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"CA Installation Change\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Disabled\",\"timestamp\":1718977684},\"user_added_time\":1644909302,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"Alex.puskas@cososys.com\"}]}},{\"attributes\":{\"_id\":\"l2Av1GU8ep268DHq6Rk3_C3921D72-960F-945D-7B6C-5E3E91D79F4B\",\"client_install_time\":1714743883,\"client_version\":\"116.1.0.2065\",\"device_id\":\"l2Av1GU8ep268DHq6Rk3_C3921D72-960F-945D-7B6C-5E3E91D79F4B\",\"host_info\":{\"device_make\":\"VMware, Inc.\",\"device_model\":\"VMware Virtual Platform\",\"hostname\":\"oak-vcs639\",\"last_hostinfo_update_timestamp\":\"1718914855\",\"macAddresses\":[\"00:50:56:AE:8A:AB\",\"00:50:56:AE:0E:7A\"],\"managementID\":\"\",\"migrated_revision\":\"v2\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"FEDF229D-EF98-948E-7D08-A969629225E3\",\"os\":\"Windows\",\"os_version\":\"11.0.22631\",\"serialNumber\":\"VMware-42 2e 4f 24 a6 28 58 ac-8a 3c 20 56 a7 06 52 7f\",\"steeringConfig\":\"Rvbd_SHM\"},\"last_event\":{\"actor\":\"System\",\"event\":\"CA Installation Change\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Disabled\",\"timestamp\":1718975629},\"last_event_service_name\":\"Internet Security\",\"users\":[{\"_id\":\"e4f019efa7486e804081e897\",\"device_classification_custom_status\":\"unmanaged\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"CA Installation Change\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Disabled\",\"timestamp\":1718975629},\"user_added_time\":1713774351.0022242,\"user_groups\":[\"Rvbd_shm\"],\"user_source\":\"Directory\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"as@riverbed.com\"}]}},{\"attributes\":{\"_id\":\"6zBGHO4gtH4rFiePksLx_0A21116F-44C6-2DCC-157C-23F46F053F0F\",\"client_version\":\"115.0.0.2048\",\"device_id\":\"6zBGHO4gtH4rFiePksLx_0A21116F-44C6-2DCC-157C-23F46F053F0F\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"MacBookPro14,1\",\"hostname\":\"elad-wexler\",\"last_hostinfo_update_timestamp\":\"1715263542\",\"macAddresses\":[\"38:F9:D3:5E:C7:54\"],\"managementID\":\"B007F97CD1915EFE963A8570138C3CA8\",\"migrated_revision\":\"v1\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"\",\"os\":\"Mac\",\"os_version\":\"13.5.2\",\"serialNumber\":\"FVFYC187HV2J\",\"steeringConfig\":\"Default tenant config\"},\"last_event\":{\"actor\":\"User\",\"event\":\"Device Posture Change\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Disabled\",\"timestamp\":1718695892},\"last_event_service_name\":\"Internet Security\",\"users\":[{\"_id\":\"57039808b4dce8721da4ff74\",\"device_classification_custom_status\":\"unmanaged\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"User\",\"event\":\"Device Posture Change\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Disabled\",\"timestamp\":1718695892},\"user_added_time\":1627993869,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"ewexler@infinipoint.io\"}]}},{\"attributes\":{\"_id\":\"W2h3EtZ2t2MVoCf8Kub4_8218F5A9-2FD5-700E-A5AE-90E6CAC30976\",\"client_version\":\"116.0.0.2073\",\"device_id\":\"W2h3EtZ2t2MVoCf8Kub4_8218F5A9-2FD5-700E-A5AE-90E6CAC30976\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"MacBookAir10,1\",\"hostname\":\"kesar\\u2019s MacBook Air\",\"last_hostinfo_update_timestamp\":\"1718622772\",\"macAddresses\":[\"F2:09:7D:6D:D6:BF\",\"F2:09:7D:6D:D6:C0\",\"50:ED:3C:3C:BC:F8\"],\"managementID\":\"EEB76C7147D05EDFA84D415A7130E090\",\"migrated_revision\":\"v1\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"\",\"os\":\"Mac\",\"os_version\":\"13.1.0\",\"serialNumber\":\"C02FFCZ9Q6L4\",\"steeringConfig\":\"Default tenant config\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Uninstalled\",\"timestamp\":1718630250},\"last_event_service_name\":\"Internet Security\",\"users\":[{\"_id\":\"ef03cd07248e14c5b6b0d2c6\",\"device_classification_custom_status\":\"unknown\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Uninstalled\",\"timestamp\":1718630250},\"user_added_time\":1718621909.2619662,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"keshavm021@gmail.com\"}]}},{\"attributes\":{\"_id\":\"18H2V2TRmeE9O32dqbv0_E5E3CA42-208F-4CC7-283F-9A4674151229\",\"client_version\":\"116.0.0.2073\",\"device_id\":\"18H2V2TRmeE9O32dqbv0_E5E3CA42-208F-4CC7-283F-9A4674151229\",\"host_info\":{\"device_make\":\"Dell Inc.\",\"device_model\":\"Precision 5530\",\"hostname\":\"VMWAREV-UNSE6D4\",\"last_hostinfo_update_timestamp\":\"1718227063\",\"macAddresses\":[\"D4:3B:04:68:E1:BA\"],\"managementID\":\"39D317DB8C6E114AA01352FC9C4B893F\",\"migrated_revision\":\"v2\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"864F5ED3-0E08-1C92-502A-3A0C67F5C668\",\"os\":\"Windows\",\"os_version\":\"10.0.19045\",\"serialNumber\":\"D33ZMF2\",\"steeringConfig\":\"Default tenant config\"},\"last_event\":{\"actor\":\"User\",\"event\":\"Tunnel Up\",\"npa_status\":\"Enabled\",\"service_name\":\"Private Access\",\"status\":\"Disabled\",\"status_v2\":\"Enabled\",\"timestamp\":1718609401},\"last_event_service_name\":\"Private Access\",\"users\":[{\"_id\":\"7e75885f5aa5510fcb71ceb6\",\"device_classification_custom_status\":\"unmanaged\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"User\",\"event\":\"Tunnel Up\",\"npa_status\":\"Enabled\",\"service_name\":\"Private Access\",\"status\":\"Disabled\",\"status_v2\":\"Enabled\",\"timestamp\":1718609401},\"user_added_time\":1570482423,\"user_source\":\"Manual\",\"userkey\":\"[REDACTED]\",\"username\":\"jasbhati@gmail.com\"}]}},{\"attributes\":{\"_id\":\"s3cdns0BnSSxwwPjexH7_32FF0D8A-AAF2-D6D4-E9CC-89ADA3F5421E\",\"client_install_time\":1717560026,\"client_version\":\"116.0.0.2073\",\"device_id\":\"s3cdns0BnSSxwwPjexH7_32FF0D8A-AAF2-D6D4-E9CC-89ADA3F5421E\",\"host_info\":{\"device_make\":\"VMware, Inc.\",\"device_model\":\"VMware20,1\",\"hostname\":\"ashok_pc\",\"last_hostinfo_update_timestamp\":\"1717589152\",\"macAddresses\":[\"00:0C:29:C5:9C:B1\"],\"managementID\":\"\",\"migrated_revision\":\"v2\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"EC1E0FCB-6B12-7ECC-BF33-E55C94848FCD\",\"os\":\"Windows\",\"os_version\":\"11.0.22631\",\"serialNumber\":\"43BF513B026C4D56\",\"steeringConfig\":\"Default tenant config\"},\"last_event\":{\"actor\":\"Admin\",\"event\":\"Admin Enabled\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1718267958},\"last_event_service_name\":\"Internet Security\",\"users\":[{\"_id\":\"a7321b1dc96a0faf7a82c83f\",\"device_classification_custom_status\":\"unmanaged\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"Admin\",\"event\":\"Admin Enabled\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1718267958},\"user_added_time\":1717383375.3607075,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"nadav@skyformation.onmicrosoft.com\"}]}},{\"attributes\":{\"_id\":\"4vaukhwvHvC8bd0Ly3ms_24A4D3F7-17A7-A28A-96B4-B07E2BEE5BDF\",\"client_version\":\"115.1.1.2047\",\"device_id\":\"4vaukhwvHvC8bd0Ly3ms_24A4D3F7-17A7-A28A-96B4-B07E2BEE5BDF\",\"host_info\":{\"device_make\":\"LENOVO\",\"device_model\":\"20TH003MUS\",\"hostname\":\"R913KBZM\",\"last_hostinfo_update_timestamp\":\"1717621747\",\"macAddresses\":[\"14:85:7F:E7:76:97\"],\"managementID\":\"8D339338129DD841928A7D4F9EE43BFD\",\"migrated_revision\":\"v2\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"ACAAC2E8-6A5D-1950-64B1-1477C33E56BB\",\"os\":\"Windows\",\"os_version\":\"11.0.22631\",\"serialNumber\":\"R913KBZM\",\"steeringConfig\":\"Default tenant config\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Down\",\"npa_status\":\"Disabled\",\"service_name\":\"Private Access\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1717622039},\"last_event_service_name\":\"Private Access\",\"users\":[{\"_id\":\"78270355e54ed6bd6064f3ac\",\"device_classification_custom_status\":\"unmanaged\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Down\",\"npa_status\":\"Disabled\",\"service_name\":\"Private Access\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1717622039},\"user_added_time\":1649372623.807544,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"beyondcorp@demo1-netskope.com\"}]}},{\"attributes\":{\"_id\":\"qbcxu1xrEtn4n2XzvW9W_32FF0D8A-AAF2-D6D4-E9CC-89ADA3F5421E\",\"client_install_time\":1717409648,\"client_version\":\"115.1.1.2047\",\"device_id\":\"qbcxu1xrEtn4n2XzvW9W_32FF0D8A-AAF2-D6D4-E9CC-89ADA3F5421E\",\"host_info\":{\"device_make\":\"VMware, Inc.\",\"device_model\":\"VMware20,1\",\"hostname\":\"ashok_pc\",\"last_hostinfo_update_timestamp\":\"1717454718\",\"macAddresses\":[\"00:0C:29:C5:9C:B1\"],\"managementID\":\"\",\"migrated_revision\":\"v2\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"EC1E0FCB-6B12-7ECC-BF33-E55C94848FCD\",\"os\":\"Windows\",\"os_version\":\"11.0.22631\",\"serialNumber\":\"43BF513B026C4D56\",\"steeringConfig\":\"Default tenant config\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"event_details\":\"UnInstalled client version 115.1.1.2047\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Uninstalled\",\"timestamp\":1717559912},\"last_event_service_name\":\"Internet Security\",\"users\":[{\"_id\":\"88881b872254a1591b4997a2\",\"device_classification_custom_status\":\"unknown\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"event_details\":\"UnInstalled client version 115.1.1.2047\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Uninstalled\",\"timestamp\":1717559912},\"user_added_time\":1717073626.7795422,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"ashok.parida@exabeam.com\"}]}},{\"attributes\":{\"_id\":\"s6spzKx2hvmVCEeNyILx_C3921D72-960F-945D-7B6C-5E3E91D79F4B\",\"client_install_time\":1713786838,\"client_version\":\"114.0.0.2012\",\"device_id\":\"s6spzKx2hvmVCEeNyILx_C3921D72-960F-945D-7B6C-5E3E91D79F4B\",\"host_info\":{\"device_make\":\"VMware, Inc.\",\"device_model\":\"VMware Virtual Platform\",\"hostname\":\"oak-vcs639\",\"last_hostinfo_update_timestamp\":\"1714653300\",\"macAddresses\":[\"00:50:56:AE:8A:AB\",\"00:50:56:AE:0E:7A\"],\"managementID\":\"\",\"migrated_revision\":\"v2\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"FEDF229D-EF98-948E-7D08-A969629225E3\",\"os\":\"Windows\",\"os_version\":\"11.0.22631\",\"serialNumber\":\"VMware-42 2e 4f 24 a6 28 58 ac-8a 3c 20 56 a7 06 52 7f\",\"steeringConfig\":\"Rvbd_SHM\"},\"last_event\":{\"actor\":\"User\",\"event\":\"Device Posture Change\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Disabled\",\"timestamp\":1714656431},\"last_event_service_name\":\"Internet Security\",\"users\":[{\"_id\":\"a8d203c3800c15dbcfafd47b\",\"device_classification_custom_status\":\"\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"User\",\"event\":\"Device Posture Change\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Disabled\",\"timestamp\":1714656431},\"user_added_time\":1713786312.4673533,\"user_groups\":[\"Rvbd_shm\"],\"user_source\":\"Directory\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"sandeep.shekhar@riverbed.com\"}]}},{\"attributes\":{\"_id\":\"l2Av1GU8ep268DHq6Rk3_60A07743-143F-2D67-C160-8279E879C16E\",\"client_install_time\":1713776045,\"client_version\":\"114.0.0.2012\",\"device_id\":\"l2Av1GU8ep268DHq6Rk3_60A07743-143F-2D67-C160-8279E879C16E\",\"host_info\":{\"device_make\":\"LENOVO\",\"device_model\":\"21E4S1G000\",\"hostname\":\"DESKTOP-TSNNL07\",\"last_hostinfo_update_timestamp\":\"1714489099\",\"macAddresses\":[\"E0:D0:45:61:84:83\"],\"managementID\":\"\",\"migrated_revision\":\"v2\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"D1452D49-D339-D41B-5907-06AC6DF65203\",\"os\":\"Windows\",\"os_version\":\"11.0.22631\",\"serialNumber\":\"PG03P96E\",\"steeringConfig\":\"Rvbd_SHM\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"event_details\":\"UnInstalled client version 114.0.0.2012\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Uninstalled\",\"timestamp\":1714491148},\"last_event_service_name\":\"Internet Security\",\"users\":[{\"_id\":\"19e005675e8c2e9c1eb64719\",\"device_classification_custom_status\":\"\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"event_details\":\"UnInstalled client version 114.0.0.2012\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Uninstalled\",\"timestamp\":1714491148},\"user_added_time\":1713774351.0022242,\"user_groups\":[\"Rvbd_shm\"],\"user_source\":\"Directory\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"as@riverbed.com\"}]}},{\"attributes\":{\"_id\":\"l2Av1GU8ep268DHq6Rk3_22C669AB-7102-86E7-7473-735D054E5966\",\"client_install_time\":1713772758,\"client_version\":\"113.0.0.1975\",\"device_id\":\"l2Av1GU8ep268DHq6Rk3_22C669AB-7102-86E7-7473-735D054E5966\",\"host_info\":{\"device_make\":\"VMware, Inc.\",\"device_model\":\"VMware Virtual Platform\",\"hostname\":\"oak-vcs2212\",\"last_hostinfo_update_timestamp\":\"1713772968\",\"macAddresses\":[\"00:50:56:AE:79:5B\"],\"managementID\":\"\",\"migrated_revision\":\"v2\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"7E487B68-D7CB-816B-25C2-EC775E7FC6F1\",\"os\":\"Windows\",\"os_version\":\"10.0(1809)\",\"serialNumber\":\"VMware-42 2e fc 30 ce a5 fd 97-99 98 7d 07 f8 e5 56 e0\",\"steeringConfig\":\"Rvbd_SHM\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"event_details\":\"UnInstalled client version 113.0.0.1975\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Uninstalled\",\"timestamp\":1713777122},\"last_event_service_name\":\"Internet Security\",\"users\":[{\"_id\":\"de0ba554d00393b2c3d0c469\",\"device_classification_custom_status\":\"\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"event_details\":\"UnInstalled client version 113.0.0.1975\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Uninstalled\",\"timestamp\":1713777122},\"user_added_time\":1713774351.0022242,\"user_groups\":[\"Rvbd_shm\"],\"user_source\":\"Directory\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"as@riverbed.com\"}]}},{\"attributes\":{\"_id\":\"z5d3sHSYG05r6bZweIAs_22E6B842-8162-5D65-5925-490ABBB98B67\",\"client_version\":\"113.0.0.1975\",\"device_id\":\"z5d3sHSYG05r6bZweIAs_22E6B842-8162-5D65-5925-490ABBB98B67\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"VMware7,1\",\"hostname\":\"css-sonoma01 (2)\",\"last_hostinfo_update_timestamp\":\"1713351923\",\"macAddresses\":[\"00:50:56:B5:D2:5C\"],\"managementID\":\"4235064B89B34BED8D8F435E4CE79029\",\"migrated_revision\":\"v1\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"\",\"os\":\"Mac\",\"os_version\":\"14.0.0\",\"serialNumber\":\"VMlDkVyihbA1\",\"steeringConfig\":\"Default tenant config\"},\"last_event\":{\"actor\":\"User\",\"event\":\"Tunnel Down\",\"npa_status\":\"Disabled\",\"service_name\":\"Private Access\",\"status\":\"Disabled\",\"status_v2\":\"Disabled\",\"timestamp\":1713351948},\"last_event_service_name\":\"Private Access\",\"users\":[{\"_id\":\"3baa8864ee1b717d674ad751\",\"device_classification_custom_status\":\"\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"User\",\"event\":\"Tunnel Down\",\"npa_status\":\"Disabled\",\"service_name\":\"Private Access\",\"status\":\"Disabled\",\"status_v2\":\"Disabled\",\"timestamp\":1713351948},\"user_added_time\":1710151785.0721564,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"levente.fangli@cososys.com\"}]}},{\"attributes\":{\"_id\":\"T2FIVFz556tSosM63joJ_A4861059-DF99-B597-8884-5527FBC49DEB\",\"client_version\":\"113.0.0.1975\",\"device_id\":\"T2FIVFz556tSosM63joJ_A4861059-DF99-B597-8884-5527FBC49DEB\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"MacBookAir10,1\",\"hostname\":\"Levente\\u2019s MacBook Air\",\"last_hostinfo_update_timestamp\":\"1710492049\",\"macAddresses\":[\"70:AE:D5:4E:EC:55\"],\"managementID\":\"7F35D21A30D85D438F322BE27F421CA7\",\"migrated_revision\":\"v1\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"\",\"os\":\"Mac\",\"os_version\":\"14.4.0\",\"serialNumber\":\"HXJK7CX21WFV\",\"steeringConfig\":\"Default tenant config\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1710492050},\"last_event_service_name\":\"Internet Security\",\"users\":[{\"_id\":\"353f3ef5b9745d118a4767d8\",\"device_classification_custom_status\":\"\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1710492050},\"user_added_time\":1710425911.8767068,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"levi.fangli@gmail.com\"}]}},{\"attributes\":{\"_id\":\"y0nMym74j80eV4Hirf8T_A4861059-DF99-B597-8884-5527FBC49DEB\",\"client_install_time\":1710418923,\"client_version\":\"113.0.0.1975\",\"device_id\":\"y0nMym74j80eV4Hirf8T_A4861059-DF99-B597-8884-5527FBC49DEB\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"MacBookAir10,1\",\"hostname\":\"Levente\\u2019s MacBook Air\",\"last_hostinfo_update_timestamp\":\"1710419023\",\"macAddresses\":[\"70:AE:D5:4E:EC:55\",\"04:BA:D6:96:5F:59\"],\"managementID\":\"7F35D21A30D85D438F322BE27F421CA7\",\"migrated_revision\":\"v1\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"\",\"os\":\"Mac\",\"os_version\":\"14.4.0\",\"serialNumber\":\"HXJK7CX21WFV\",\"steeringConfig\":\"Default tenant config\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Uninstalled\",\"timestamp\":1710419650},\"last_event_service_name\":\"Internet Security\",\"users\":[{\"_id\":\"36847110f6292a5c7974ee5c\",\"device_classification_custom_status\":\"\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Uninstalled\",\"timestamp\":1710419650},\"user_added_time\":1710418854.2873487,\"user_source\":\"Manual\",\"user_state\":2,\"userkey\":\"[REDACTED]\",\"username\":\"levente.fangli@netwrix.com\"}]}},{\"attributes\":{\"_id\":\"z5d3sHSYG05r6bZweIAs_A4861059-DF99-B597-8884-5527FBC49DEB\",\"client_version\":\"113.0.0.1975\",\"device_id\":\"z5d3sHSYG05r6bZweIAs_A4861059-DF99-B597-8884-5527FBC49DEB\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"MacBookAir10,1\",\"hostname\":\"Levente\\u2019s MacBook Air\",\"last_hostinfo_update_timestamp\":\"1710414582\",\"macAddresses\":[\"70:AE:D5:4E:EC:55\",\"04:BA:D6:96:5F:59\"],\"managementID\":\"7F35D21A30D85D438F322BE27F421CA7\",\"migrated_revision\":\"v1\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"\",\"os\":\"Mac\",\"os_version\":\"14.4.0\",\"serialNumber\":\"HXJK7CX21WFV\",\"steeringConfig\":\"Default tenant config\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1710416861},\"last_event_service_name\":\"Internet Security\",\"users\":[{\"_id\":\"615ba387f5be00e49117a687\",\"device_classification_custom_status\":\"\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1710416861},\"user_added_time\":1710151785.0721564,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"levente.fangli@cososys.com\"}]}},{\"attributes\":{\"_id\":\"lKwj5dv5l43drX90PWaj_A4861059-DF99-B597-8884-5527FBC49DEB\",\"client_version\":\"113.0.0.1975\",\"device_id\":\"lKwj5dv5l43drX90PWaj_A4861059-DF99-B597-8884-5527FBC49DEB\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"MacBookAir10,1\",\"hostname\":\"Levente\\u2019s MacBook Air\",\"last_hostinfo_update_timestamp\":\"1710405890\",\"macAddresses\":[\"70:AE:D5:4E:EC:55\",\"04:BA:D6:96:5F:59\"],\"managementID\":\"7F35D21A30D85D438F322BE27F421CA7\",\"migrated_revision\":\"v1\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"\",\"os\":\"Mac\",\"os_version\":\"14.4.0\",\"serialNumber\":\"HXJK7CX21WFV\",\"steeringConfig\":\"Default tenant config\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Uninstalled\",\"timestamp\":1710411880},\"last_event_service_name\":\"Internet Security\",\"users\":[{\"_id\":\"e4fb885e6a8a4a1fc6df3d70\",\"device_classification_custom_status\":\"\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Uninstalled\",\"timestamp\":1710411880},\"user_added_time\":1642488784,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"adrian.ivascu@cososys.com\"}]}},{\"attributes\":{\"_id\":\"LMjuB497jJu8rb7rtkPu_8E1461A8-1D83-93E7-F4FC-4A528F2AED9A\",\"client_install_time\":1709634897,\"client_version\":\"112.0.0.1939\",\"device_id\":\"LMjuB497jJu8rb7rtkPu_8E1461A8-1D83-93E7-F4FC-4A528F2AED9A\",\"host_info\":{\"device_make\":\"Parallels Software International Inc.\",\"device_model\":\"Parallels Virtual Platform\",\"hostname\":\"ITAIHELLER8F6A\",\"last_hostinfo_update_timestamp\":\"1709814218\",\"macAddresses\":[\"00:1C:42:4A:F7:71\"],\"managementID\":\"\",\"migrated_revision\":\"v1\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"\",\"os\":\"Windows\",\"os_version\":\"11.0.22621\",\"serialNumber\":\"Parallels-01 78 3C 57 96 F7 49 F7 BD DD 76 D5 44 84 CF B4\",\"steeringConfig\":\"Default tenant config\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1709814238},\"last_event_service_name\":\"Internet Security\",\"users\":[{\"_id\":\"bf032213508fb41bd7585e3c\",\"device_classification_custom_status\":\"\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1709814238},\"user_added_time\":1660137721.4549017,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"demo@infinipoint.co\"}]}},{\"attributes\":{\"_id\":\"gqXf7w52x76PSsaRiEiN_5D2512E9-9F62-A874-3F38-155FAE899060\",\"client_install_time\":1684151728,\"client_version\":\"111.1.0.1994\",\"device_id\":\"gqXf7w52x76PSsaRiEiN_5D2512E9-9F62-A874-3F38-155FAE899060\",\"host_info\":{\"device_make\":\"Amazon EC2\",\"device_model\":\"N\\/A\",\"hostname\":\"ip-10-0-4-91\",\"last_hostinfo_update_timestamp\":\"1705437641\",\"managementID\":\"\",\"migrated_revision\":\"v1\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"\",\"os\":\"Linux\",\"os_version\":\"20.04\",\"serialNumber\":\"ec20b3884e42f9f387b0448afa9edbc8\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1705516064},\"last_event_service_name\":\"Internet Security\",\"users\":[{\"_id\":\"ad1edd06c51e0374b5e86697\",\"device_classification_custom_status\":\"\",\"device_classification_status\":\"Not Configured\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1705516064},\"user_added_time\":1676571322.8351989,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"leeroy.jenkins@storosta.com\"}]}},{\"attributes\":{\"_id\":\"dQMgF1gHkS9afhV30G9Z_26039428-41FD-D156-A999-F5F71B46A3C8\",\"client_install_time\":1627320483,\"client_version\":\"109.1.0.1702\",\"device_id\":\"dQMgF1gHkS9afhV30G9Z_26039428-41FD-D156-A999-F5F71B46A3C8\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"Macmini7,1\",\"hostname\":\"oak-cs725\",\"last_hostinfo_update_timestamp\":\"1697573944\",\"managementID\":\"495D2F0D4DD0518683306489046F0727\",\"migrated_revision\":\"v1\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"\",\"os\":\"Mac\",\"os_version\":\"12.6.7\",\"serialNumber\":\"C07Q21XHG1J2\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Uninstalled\",\"timestamp\":1698614434},\"last_event_service_name\":\"Internet Security\",\"user_added_time\":1618419177,\"users\":[{\"_id\":\"2aa89db7a1ab0d9ef0a1d5bb\",\"device_classification_custom_status\":\"\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Disabled\",\"status_v2\":\"Uninstalled\",\"timestamp\":1698614434},\"user_source\":\"Manual\",\"userkey\":\"[REDACTED]\",\"username\":\"karim.saadah@riverbed.com\"}]}},{\"attributes\":{\"_id\":\"wrv4Bvb1mfg2758e23M1_45537C4D-99E9-FDD9-5B1B-FFF3BE1238E1\",\"client_install_time\":1676626277,\"client_version\":\"107.1.0.1529\",\"device_id\":\"wrv4Bvb1mfg2758e23M1_45537C4D-99E9-FDD9-5B1B-FFF3BE1238E1\",\"host_info\":{\"device_make\":\"innotek GmbH\",\"device_model\":\"VirtualBox\",\"hostname\":\"DESKTOP-COIL7KC\",\"last_hostinfo_update_timestamp\":\"1692884954\",\"managementID\":\"\",\"migrated_revision\":\"v1\",\"nsdeviceuid\":\"[REDACTED]\",\"old_nsdeviceuid\":\"\",\"os\":\"Windows\",\"os_version\":\"10.0.19045\",\"serialNumber\":\"0\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Enabled\",\"service_name\":\"Private Access\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1692885000},\"last_event_service_name\":\"Private Access\",\"users\":[{\"_id\":\"c66184ccf4481fcfff3ddb96\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Enabled\",\"service_name\":\"Private Access\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1692885000},\"user_added_time\":1683209302.252409,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"justas.zaborovskis@storosta.com\"}]}},{\"attributes\":{\"_id\":\"Jenga-Surface\",\"client_version\":\"105.1.0.1406\",\"device_id\":\"Jenga-Surface\",\"host_info\":{\"device_make\":\"Microsoft Corporation\",\"device_model\":\"Surface Laptop Studio\",\"hostname\":\"Jenga-Surface\",\"last_hostinfo_update_timestamp\":\"1687821111\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"11.0.22621\",\"serialNumber\":\"0F00X1H213700C\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Device Posture Change\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Unmanaged\",\"status_v2\":\"Disabled\",\"timestamp\":1687821134},\"last_event_service_name\":\"Internet Security\",\"users\":[{\"_id\":\"1cc65721b267aa4b3b5ef796\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Device Posture Change\",\"npa_status\":\"Disabled\",\"service_name\":\"Internet Security\",\"status\":\"Unmanaged\",\"status_v2\":\"Disabled\",\"timestamp\":1687821134},\"user_added_time\":1676572030.4593422,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"netskopejenga@gmail.com\"},{\"_id\":\"a085348cb2c83160782d31d3\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Enabled\",\"service_name\":\"Private Apps Access\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1685569716},\"user_added_time\":1685563737.8334663,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"testuser1@M365x59058071.onmicrosoft.com\"}]}},{\"attributes\":{\"_id\":\"EC2AMAZ-K3T6NSR\",\"client_install_time\":1679906722,\"client_version\":\"102.1.0.1248\",\"device_id\":\"EC2AMAZ-K3T6NSR\",\"host_info\":{\"device_make\":\"Xen\",\"device_model\":\"HVM domU\",\"hostname\":\"EC2AMAZ-K3T6NSR\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows Server\",\"os_version\":\"10.0(1809)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"status_v2\":\"Uninstalled\",\"timestamp\":1686651077},\"users\":[{\"_id\":\"6f9aa6d68199f54667630ecb\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"status_v2\":\"Uninstalled\",\"timestamp\":1686651077},\"user_added_time\":1676571322.8351989,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"leeroy.jenkins@storosta.com\"}]}},{\"attributes\":{\"_id\":\"ITAIHELLERA242\",\"client_install_time\":1632903508,\"client_version\":\"104.0.4.1316\",\"device_id\":\"ITAIHELLERA242\",\"host_info\":{\"device_make\":\"Parallels Software International Inc.\",\"device_model\":\"Parallels Virtual Platform\",\"hostname\":\"ITAIHELLERA242\",\"last_hostinfo_update_timestamp\":\"1684237768\",\"managementID\":\"AF6556F469D23E4A9AD43ABCE9BB732D\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0.19045\",\"serialNumber\":\"Parallels-7E CB FF 5C 2E 11 4C CA 93 B2 38 38 99 7B D9 F0\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Down\",\"npa_status\":\"Disabled\",\"service_name\":\"Private Apps Access\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1684238748},\"last_event_service_name\":\"Private Apps Access\",\"user_added_time\":1632647889,\"users\":[{\"_id\":\"332938bb487011d6ad9008ba\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Down\",\"npa_status\":\"Disabled\",\"service_name\":\"Private Apps Access\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1684238748},\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"iheller@infinipoint.io\"}]}},{\"attributes\":{\"_id\":\"EC2AMAZ-S4BLTPC\",\"client_install_time\":1683722667,\"client_version\":\"104.0.4.1316\",\"device_id\":\"EC2AMAZ-S4BLTPC\",\"host_info\":{\"device_make\":\"Xen\",\"device_model\":\"HVM domU\",\"hostname\":\"EC2AMAZ-S4BLTPC\",\"last_hostinfo_update_timestamp\":\"1683722662\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows Server\",\"os_version\":\"10.0.20348\",\"serialNumber\":\"ec214e60-449f-f1d5-9d0b-3a48038001b0\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Errored\",\"service_name\":\"Internet Security\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1683723058},\"last_event_service_name\":\"Internet Security\",\"users\":[{\"_id\":\"4bc2b91db9c76f9d150390ef\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Errored\",\"service_name\":\"Internet Security\",\"status\":\"Enabled\",\"status_v2\":\"Enabled\",\"timestamp\":1683723058},\"user_added_time\":1676571322.8351989,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"leeroy.jenkins@storosta.com\"}]}},{\"attributes\":{\"_id\":\"DESKTOP-COIL7KC\",\"client_install_time\":1676626277,\"client_version\":\"104.0.4.1316\",\"device_id\":\"DESKTOP-COIL7KC\",\"host_info\":{\"device_make\":\"innotek GmbH\",\"device_model\":\"VirtualBox\",\"hostname\":\"DESKTOP-COIL7KC\",\"last_hostinfo_update_timestamp\":\"1683794750\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0.19045\",\"serialNumber\":\"0\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"status_v2\":\"Uninstalled\",\"timestamp\":1683209591},\"last_event_service_name\":\"Internet Security\",\"users\":[{\"_id\":\"ffe98ebe1f89528af059759e\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"status_v2\":\"Uninstalled\",\"timestamp\":1683209591},\"user_added_time\":1676571322.8351989,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"leeroy.jenkins@storosta.com\"}]}},{\"attributes\":{\"_id\":\"DESKTOP-QDTQ6C5\",\"client_install_time\":1682085770,\"client_version\":\"103.0.0.1239\",\"device_id\":\"DESKTOP-QDTQ6C5\",\"host_info\":{\"device_make\":\"Microsoft Corporation\",\"device_model\":\"Virtual Machine\",\"hostname\":\"DESKTOP-QDTQ6C5\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0.19045\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel down due to error\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1682095892},\"users\":[{\"_id\":\"43267b090f3a731403dd1ad8\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel down due to error\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1682095892},\"user_added_time\":1676571322.8351989,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"leeroy.jenkins@storosta.com\"}]}},{\"attributes\":{\"_id\":\"Smadar\\u2019s MacBook Pro\",\"client_install_time\":1674210015,\"client_version\":\"100.1.0.1125\",\"device_id\":\"Smadar\\u2019s MacBook Pro\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"MacBookPro16,1\",\"hostname\":\"Smadar\\u2019s MacBook Pro\",\"managementID\":\"6EDE2DE06AE0525DA63D569387075185\",\"nsdeviceuid\":\"\",\"os\":\"Mac\",\"os_version\":\"13.2.1\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"status_v2\":\"Uninstalled\",\"timestamp\":1680445104},\"users\":[{\"_id\":\"404147ab0ea0d5c3b84e4338\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"status_v2\":\"Uninstalled\",\"timestamp\":1680445104},\"user_added_time\":1674045415.4242086,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"smadi@savvy.security\"}]}},{\"attributes\":{\"_id\":\"EladW-LT\",\"client_install_time\":1627994072,\"client_version\":\"102.0.0.1189\",\"device_id\":\"EladW-LT\",\"host_info\":{\"device_make\":\"Dell Inc.\",\"device_model\":\"XPS 13 9380\",\"hostname\":\"EladW-LT\",\"managementID\":\"07FAC71181755647B7D961DD3D82DB31\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0.19044\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Upgraded\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1678790033},\"user_added_time\":1627993869,\"users\":[{\"_id\":\"020c91128ea96f988e026e8b\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Upgraded\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1678790033},\"user_source\":\"Manual\",\"userkey\":\"[REDACTED]\",\"username\":\"ewexler@infinipoint.io\"}]}},{\"attributes\":{\"_id\":\"admin\\u2019s Mac mini\",\"client_install_time\":1677196004,\"client_version\":\"101.1.0.1141\",\"device_id\":\"admin\\u2019s Mac mini\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"Macmini9,1\",\"hostname\":\"admin\\u2019s Mac mini\",\"managementID\":\"E8BC5CA6E6AC5BF1AE601B2E76F6B00B\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Mac\",\"os_version\":\"13.2.1\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"status_v2\":\"Uninstalled\",\"timestamp\":1677272270},\"users\":[{\"_id\":\"189c79025560f39bdc1684bc\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"status_v2\":\"Uninstalled\",\"timestamp\":1677272270},\"user_added_time\":1618419177,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"Karim.Saadah@riverbed.com\"}]}},{\"attributes\":{\"_id\":\"Adi\",\"client_install_time\":1644917516,\"client_version\":\"101.0.0.1128\",\"device_id\":\"Adi\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"MacBookPro17,1\",\"hostname\":\"Adi\",\"managementID\":\"A8773A82ECAD5AC5810369F04043AAA8\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Mac\",\"os_version\":\"12.6.3\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"status_v2\":\"Uninstalled\",\"timestamp\":1676444285},\"users\":[{\"_id\":\"9ee3d3e796b27f0afdcb30e4\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"status_v2\":\"Uninstalled\",\"timestamp\":1676444285},\"user_added_time\":1642488784,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"Adrian.ivascu@cososys.com\"}]}},{\"attributes\":{\"_id\":\"DESKTOP-LUMU\",\"client_install_time\":1634249761,\"client_version\":\"100.0.0.1112\",\"device_id\":\"DESKTOP-LUMU\",\"host_info\":{\"device_make\":\"VMware, Inc.\",\"device_model\":\"VMware7,1\",\"hostname\":\"DESKTOP-LUMU\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0 (2009)\"},\"last_event\":{\"actor\":\"User\",\"event\":\"User Enabled\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1672850278},\"user_added_time\":1632490693,\"users\":[{\"_id\":\"a9508689df9bfdd7d8aa69c9\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"User\",\"event\":\"User Enabled\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1672850278},\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"aarguelles@lumu.io\"}]}},{\"attributes\":{\"_id\":\"Itai\\u2019s Mac\",\"client_version\":\"97.1.3.1032\",\"device_id\":\"Itai\\u2019s Mac\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"Parallels18,1\",\"hostname\":\"Itai\\u2019s Mac\",\"managementID\":\"6DBFD4392DD755178AF2B6BE1A81A624\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Mac\",\"os_version\":\"12.4.0\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Device Posture Change\",\"npa_status\":\"Steering Disabled\",\"status\":\"Unmanaged\",\"timestamp\":1670504232},\"user_added_time\":1632647889,\"users\":[{\"_id\":\"a80241d49c811717dc25f109\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Device Posture Change\",\"npa_status\":\"Steering Disabled\",\"status\":\"Unmanaged\",\"timestamp\":1670504232},\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"iheller@infinipoint.io\"}]}},{\"attributes\":{\"_id\":\"RAJANEJEM9269\",\"client_install_time\":1667426815,\"client_version\":\"99.0.0.1090\",\"device_id\":\"RAJANEJEM9269\",\"host_info\":{\"device_make\":\"Parallels International GmbH.\",\"device_model\":\"Parallels ARM Virtual Machine\",\"hostname\":\"RAJANEJEM9269\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"11.0 (2009)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Device Posture Change\",\"npa_status\":\"Steering Disabled\",\"status\":\"Managed\",\"timestamp\":1667427632},\"users\":[{\"_id\":\"86c91a8440cb52acd05c92df\",\"device_classification_status\":\"Managed\",\"last_event\":{\"actor\":\"System\",\"event\":\"Device Posture Change\",\"npa_status\":\"Steering Disabled\",\"status\":\"Managed\",\"timestamp\":1667427632},\"user_added_time\":1658920517.5571835,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"rnejem@infinipoint.io\"}]}},{\"attributes\":{\"_id\":\"QA-Macbook\",\"client_install_time\":1643127485,\"client_version\":\"98.1.0.1077\",\"device_id\":\"QA-Macbook\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"MacBookPro11,3\",\"hostname\":\"QA-Macbook\",\"managementID\":\"14674573A27A5D5DBB30F8749082D77E\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Mac\",\"os_version\":\"11.6.5\"},\"last_event\":{\"actor\":\"System\",\"event\":\"System power-up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1666799968},\"users\":[{\"_id\":\"cd2729be254349676aee0a95\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"System power-up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1666799968},\"user_added_time\":1642492341,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"iulia.stoica@cososys.com\"}]}},{\"attributes\":{\"_id\":\"ItaiH-LT\",\"client_install_time\":1632649809,\"client_version\":\"98.1.0.1077\",\"device_id\":\"ItaiH-LT\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"MacBookPro16,1\",\"hostname\":\"ItaiH-LT\",\"managementID\":\"FE812AAFF23F563CA53830401AF771A0\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Mac\",\"os_version\":\"12.6.0\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Device Posture Change\",\"npa_status\":\"Steering Disabled\",\"status\":\"Managed\",\"timestamp\":1664433619},\"user_added_time\":1632647889,\"users\":[{\"_id\":\"213111b997ccfcb94a9ca93b\",\"device_classification_status\":\"Managed\",\"last_event\":{\"actor\":\"System\",\"event\":\"Device Posture Change\",\"npa_status\":\"Steering Disabled\",\"status\":\"Managed\",\"timestamp\":1664433619},\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"iheller@infinipoint.io\"}]}},{\"attributes\":{\"_id\":\"oak-vcs1756\",\"client_install_time\":1636482420,\"client_version\":\"96.1.1.1015\",\"device_id\":\"oak-vcs1756\",\"host_info\":{\"device_make\":\"VMware, Inc.\",\"device_model\":\"VMware Virtual Platform\",\"hostname\":\"oak-vcs1756\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0 (1809)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"System shutdown\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1663119777},\"user_added_time\":1636481652,\"users\":[{\"_id\":\"93457ab6e2ec7f87c9b0a149\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"System shutdown\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1663119777},\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"evgeni.peryshkin@riverbed.com\"}]}},{\"attributes\":{\"_id\":\"N21-PC\",\"client_install_time\":1652279844,\"client_version\":\"97.1.0.1061\",\"device_id\":\"N21-PC\",\"host_info\":{\"device_make\":\"VMware, Inc.\",\"device_model\":\"VMware Virtual Platform\",\"hostname\":\"N21-PC\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows Server\",\"os_version\":\"6.3\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1661894668},\"users\":[{\"_id\":\"977900cabf2dce17c5da27ae\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1661894668},\"user_added_time\":1652279728.6945238,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"osala@riverbed.com\"}]}},{\"attributes\":{\"_id\":\"oak-cs589\",\"client_install_time\":1631734813,\"client_version\":\"97.1.0.1061\",\"device_id\":\"oak-cs589\",\"host_info\":{\"device_make\":\"Dell Inc.\",\"device_model\":\"PowerEdge R210 II\",\"hostname\":\"oak-cs589\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0 (2009)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Installation Failure\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1661464606},\"user_added_time\":1618419177,\"users\":[{\"_id\":\"e1e1e00c118ee177d5554ac5\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Installation Failure\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1661464606},\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"Karim.Saadah@riverbed.com\"}]}},{\"attributes\":{\"_id\":\"win11-0123\",\"client_install_time\":1660136333,\"client_version\":\"96.1.1.1015\",\"device_id\":\"win11-0123\",\"host_info\":{\"device_make\":\"Parallels International GmbH.\",\"device_model\":\"Parallels ARM Virtual Machine\",\"hostname\":\"win11-0123\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"11.0 (2009)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1660138842},\"users\":[{\"_id\":\"74c205fd36010ce139c8b4e9\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1660138842},\"user_added_time\":1658920517.5571835,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"rnejem@infinipoint.io\"}]}},{\"attributes\":{\"_id\":\"CLW595-908\",\"client_install_time\":1631600413,\"client_version\":\"96.1.1.1015\",\"device_id\":\"CLW595-908\",\"host_info\":{\"device_make\":\"LENOVO\",\"device_model\":\"20U1A006IG\",\"hostname\":\"CLW595-908\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"11.0 (2009)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1659080331},\"user_added_time\":1631598912,\"users\":[{\"_id\":\"5545f12e458fcd520aea873f\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1659080331},\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"deep.raval@crestdatasys.com\"}]}},{\"attributes\":{\"_id\":\"Elad\\u2019s MacBook Pro\",\"client_install_time\":1628139681,\"client_version\":\"94.1.1.960\",\"device_id\":\"Elad\\u2019s MacBook Pro\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"MacBookPro14,1\",\"hostname\":\"Elad\\u2019s MacBook Pro\",\"managementID\":\"B007F97CD1915EFE963A8570138C3CA8\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Mac\",\"os_version\":\"11.6.1\"},\"last_event\":{\"actor\":\"User\",\"event\":\"User Disabled\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1656394966},\"user_added_time\":1627993869,\"users\":[{\"_id\":\"420d76323fdca662a254af45\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"User\",\"event\":\"User Disabled\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1656394966},\"user_source\":\"Manual\",\"userkey\":\"[REDACTED]\",\"username\":\"ewexler@infinipoint.io\"}]}},{\"attributes\":{\"_id\":\"gjenkins-laptop\",\"client_version\":\"93.0.1.944\",\"device_id\":\"gjenkins-laptop\",\"host_info\":{\"device_make\":\"LENOVO\",\"device_model\":\"20TH003MUS\",\"hostname\":\"gjenkins-laptop\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0 (2009)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1649781021},\"users\":[{\"_id\":\"ff3b081e12c3d106c76010d9\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1649781021},\"user_added_time\":1649372623.807544,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"beyondcorp@demo1-netskope.com\"}]}},{\"attributes\":{\"_id\":\"Adi\\u2019s MacBook Pro\",\"client_install_time\":1642492079,\"client_version\":\"91.0.6.812\",\"device_id\":\"Adi\\u2019s MacBook Pro\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"MacBookPro17,1\",\"hostname\":\"Adi\\u2019s MacBook Pro\",\"managementID\":\"A8773A82ECAD5AC5810369F04043AAA8\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Mac\",\"os_version\":\"12.1.0\"},\"last_event\":{\"actor\":\"User\",\"event\":\"User Disabled\",\"npa_status\":\"Disconnected\",\"status\":\"Disabled\",\"timestamp\":1643717905},\"users\":[{\"_id\":\"9eaf952e04111d114c07006b\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"User\",\"event\":\"User Disabled\",\"npa_status\":\"Disconnected\",\"status\":\"Disabled\",\"timestamp\":1643717905},\"user_added_time\":1642488784,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"Adrian.ivascu@cososys.com\"}]}},{\"attributes\":{\"_id\":\"Alan\\u2019s MacBook Pro\",\"client_install_time\":1637577400,\"client_version\":\"91.0.6.812\",\"device_id\":\"Alan\\u2019s MacBook Pro\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"MacBookPro16,1\",\"hostname\":\"Alan\\u2019s MacBook Pro\",\"managementID\":\"03B58B5E92B554E9A9D228B2A75772F4\",\"nsdeviceuid\":\"\",\"os\":\"Mac\",\"os_version\":\"11.6.0\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1641739843},\"user_added_time\":1637575642,\"users\":[{\"_id\":\"4d45579f1fad0d40af1a28c4\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1641739843},\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"alan.a@miro.com\"}]}},{\"attributes\":{\"_id\":\"oak-vcs1789\",\"client_install_time\":1631914448,\"client_version\":\"91.0.6.812\",\"device_id\":\"oak-vcs1789\",\"host_info\":{\"device_make\":\"VMware, Inc.\",\"device_model\":\"VMware Virtual Platform\",\"hostname\":\"oak-vcs1789\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0 (2009)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1641328789},\"user_added_time\":1618419177,\"users\":[{\"_id\":\"cf6a64a54f034f63151e3496\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1641328789},\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"Karim.Saadah@riverbed.com\"}]}},{\"attributes\":{\"_id\":\"Emiliano\\u2019s MacBook Pro\",\"client_install_time\":1637576470,\"client_version\":\"90.1.0.805\",\"device_id\":\"Emiliano\\u2019s MacBook Pro\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"MacBookPro16,1\",\"hostname\":\"Emiliano\\u2019s MacBook Pro\",\"managementID\":\"CEBD441C98EB5AB9993E51DC46B98732\",\"nsdeviceuid\":\"\",\"os\":\"Mac\",\"os_version\":\"11.2.3\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Installed\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1637576470},\"user_added_time\":1637575642,\"users\":[{\"_id\":\"fe98902c1743ca9063d3fc05\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Installed\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1637576470},\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"emiliano.nabarro@miro.com\"}]}},{\"attributes\":{\"_id\":\"mikhail-miro\",\"client_install_time\":1637575830,\"client_version\":\"90.1.0.805\",\"device_id\":\"mikhail-miro\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"MacBookPro16,1\",\"hostname\":\"mikhail-miro\",\"managementID\":\"F6C5BD41F68B50B4A4D2538239AF5FEC\",\"nsdeviceuid\":\"\",\"os\":\"Mac\",\"os_version\":\"11.6.0\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Installed\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1637575830},\"user_added_time\":1637575559,\"users\":[{\"_id\":\"ee592c5dfa7d190776a06f86\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Installed\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1637575830},\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"mikhail.kaduchka@miro.com\"}]}},{\"attributes\":{\"_id\":\"DESKTOP-V4BL59N\",\"client_install_time\":1632492830,\"client_version\":\"89.0.0.853\",\"device_id\":\"DESKTOP-V4BL59N\",\"host_info\":{\"device_make\":\"VMware, Inc.\",\"device_model\":\"VMware7,1\",\"hostname\":\"DESKTOP-V4BL59N\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0 (2009)\"},\"last_event\":{\"actor\":\"User\",\"event\":\"User Disabled\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1633990115},\"user_added_time\":1632490693,\"users\":[{\"_id\":\"8f2535d79713d1da6076db2e\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"User\",\"event\":\"User Disabled\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1633990115},\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"aarguelles@lumu.io\"}]}},{\"attributes\":{\"_id\":\"oak-cs594\",\"client_install_time\":1618419670,\"client_version\":\"89.0.0.853\",\"device_id\":\"oak-cs594\",\"host_info\":{\"device_make\":\"Dell Inc.\",\"device_model\":\"PowerEdge R210 II\",\"hostname\":\"oak-cs594\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0 (2009)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1633451885},\"user_added_time\":1618419177,\"users\":[{\"_id\":\"af6a9d94820cfc2b65347d9a\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1633451885},\"user_source\":\"Manual\",\"userkey\":\"[REDACTED]\",\"username\":\"Karim.Saadah@riverbed.com\"}]}},{\"attributes\":{\"_id\":\"CLM02\",\"client_version\":\"89.0.0.853\",\"device_id\":\"CLM02\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"MacBookAir6,2\",\"hostname\":\"CLM02\",\"managementID\":\"CA100A5607D25F0D84F114E3C427273F\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Mac\",\"os_version\":\"10.15.6\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1632807930},\"user_added_time\":1631598912,\"users\":[{\"_id\":\"2cf0207506f59c46039612df\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1632807930},\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"deep.raval@crestdatasys.com\"}]}},{\"attributes\":{\"_id\":\"oak-vcs2077\",\"client_install_time\":1623699372,\"client_version\":\"89.0.0.853\",\"device_id\":\"oak-vcs2077\",\"host_info\":{\"device_make\":\"VMware, Inc.\",\"device_model\":\"VMware Virtual Platform\",\"hostname\":\"oak-vcs2077\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0 (1809)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1632295582},\"user_added_time\":1623699236,\"users\":[{\"_id\":\"2eb5f878bd1a99f76f11ba1b\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1632295582},\"user_source\":\"Manual\",\"userkey\":\"[REDACTED]\",\"username\":\"brian.brasseur@riverbed.com\"}]}},{\"attributes\":{\"_id\":\"AlonL-LT\",\"client_install_time\":1628071116,\"client_version\":\"88.0.0.794\",\"device_id\":\"AlonL-LT\",\"host_info\":{\"device_make\":\"Dell Inc.\",\"device_model\":\"XPS 13 7390\",\"hostname\":\"AlonL-LT\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0 (2009)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1630619291},\"user_added_time\":1628070484,\"users\":[{\"_id\":\"175010d627b67792b3a3c8af\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1630619291},\"user_source\":\"Manual\",\"userkey\":\"[REDACTED]\",\"username\":\"alevin@infinipoint.io\"}]}},{\"attributes\":{\"_id\":\"oak-vcs574\",\"client_install_time\":1620836524,\"client_version\":\"87.0.0.704\",\"device_id\":\"oak-vcs574\",\"host_info\":{\"device_make\":\"VMware, Inc.\",\"device_model\":\"VMware Virtual Platform\",\"hostname\":\"oak-vcs574\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"6.3\"},\"last_event\":{\"actor\":\"User\",\"event\":\"User Disabled\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1627682174},\"user_added_time\":1620836442,\"users\":[{\"_id\":\"b62d0cb6a05b68fb442e3b44\",\"device_classification_status\":\"Not Configured\",\"last_event\":{\"actor\":\"User\",\"event\":\"User Disabled\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1627682174},\"user_source\":\"Manual\",\"userkey\":\"[REDACTED]\",\"username\":\"yogesh.lele@riverbed.com\"}]}},{\"attributes\":{\"_id\":\"Alex\\u2019s MacBook Pro\",\"client_install_time\":1623267163,\"client_version\":\"87.0.0.704\",\"device_id\":\"Alex\\u2019s MacBook Pro\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"MacBookPro13,1\",\"hostname\":\"Alex\\u2019s MacBook Pro\",\"managementID\":\"7ACBF6126EFA5DFA9D08B8F8335520EB\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Mac\",\"os_version\":\"11.4.0\"},\"last_event\":{\"actor\":\"User\",\"event\":\"User Disabled\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1626303698},\"user_added_time\":1623267063,\"users\":[{\"_id\":\"a599a345df6f9e9962fa0956\",\"device_classification_status\":\"Not Configured\",\"last_event\":{\"actor\":\"User\",\"event\":\"User Disabled\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1626303698},\"user_source\":\"Manual\",\"userkey\":\"[REDACTED]\",\"username\":\"alexd6921@alexd6921.asanatest1.us\"}]}},{\"attributes\":{\"_id\":\"oak-cs727\",\"client_install_time\":1625847770,\"client_version\":\"87.0.0.704\",\"device_id\":\"oak-cs727\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"Macmini7,1\",\"hostname\":\"oak-cs727\",\"managementID\":\"74010F7D336A5E38B8C888BC57ABD455\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Mac\",\"os_version\":\"10.15.7\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1625855700},\"user_added_time\":1618419177,\"users\":[{\"_id\":\"91e7f11814522f1625fc12a1\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1625855700},\"user_source\":\"Manual\",\"userkey\":\"[REDACTED]\",\"username\":\"karim.saadah@riverbed.com\"}]}},{\"attributes\":{\"_id\":\"oak-vcs1157\",\"client_install_time\":1620286263,\"client_version\":\"84.2.0.553\",\"device_id\":\"oak-vcs1157\",\"host_info\":{\"device_make\":\"VMware, Inc.\",\"device_model\":\"VMware Virtual Platform\",\"hostname\":\"oak-vcs1157\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows Server\",\"os_version\":\"6.3\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1621872057},\"user_added_time\":1620284647,\"users\":[{\"_id\":\"622a996e60ea5caa5e1651cb\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1621872057},\"user_source\":\"Manual\",\"userkey\":\"[REDACTED]\",\"username\":\"ylele@riverbed.com\"}]}},{\"attributes\":{\"_id\":\"CORP-W10-01\",\"client_install_time\":1565786882,\"client_version\":\"84.2.0.553\",\"device_id\":\"CORP-W10-01\",\"host_info\":{\"device_make\":\"VMware, Inc.\",\"device_model\":\"VMware7,1\",\"hostname\":\"CORP-W10-01\",\"managementID\":\"EEC6A30C09370B4EBE4A0E307C3E1C79\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0 (2009)\"},\"last_event\":{\"actor\":\"User\",\"event\":\"User Disabled\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1620846025},\"users\":[{\"_id\":\"40ceb50e96652080f4707e05\",\"device_classification_status\":\"Not Configured\",\"last_event\":{\"actor\":\"User\",\"event\":\"User Disabled\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1620846025},\"user_added_time\":1565784832,\"user_source\":\"Manual\",\"userkey\":\"[REDACTED]\",\"username\":\"aguedesrocha@vmware.com\"},{\"_id\":\"e207165396ca295a516f209e\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disabled\",\"status\":\"Uninstalled\",\"timestamp\":1565808290},\"user_added_time\":1565784835,\"user_source\":\"Manual\",\"userkey\":\"[REDACTED]\",\"username\":\"alanusse@vmware.com\"}]}},{\"attributes\":{\"_id\":\"CORP-W10-02\",\"client_install_time\":1565786915,\"client_version\":\"70.0.0.391\",\"device_id\":\"CORP-W10-02\",\"host_info\":{\"device_make\":\"Dell Inc.\",\"device_model\":\"XPS 13 9360\",\"hostname\":\"CORP-W10-02\",\"managementID\":\"47E8B4F125D8D84987346662E2D05CB3\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Steering Disabled\",\"status\":\"Uninstalled\",\"timestamp\":1599567888},\"users\":[{\"_id\":\"7366a11457a4c8a1754a360c\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Steering Disabled\",\"status\":\"Uninstalled\",\"timestamp\":1599567888},\"user_added_time\":1565784832,\"user_source\":\"Manual\",\"userkey\":\"[REDACTED]\",\"username\":\"aguedesrocha@vmware.com\"}]}},{\"attributes\":{\"_id\":\"DESKTOP-368PFN5\",\"client_install_time\":1581360227,\"client_version\":\"70.0.0.391\",\"device_id\":\"DESKTOP-368PFN5\",\"host_info\":{\"device_make\":\"Dell Inc.\",\"device_model\":\"XPS 15 9550\",\"hostname\":\"DESKTOP-368PFN5\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disabled\",\"status\":\"Uninstalled\",\"timestamp\":1581366242},\"users\":[{\"_id\":\"fcf86ab1558b035ad3c80d2c\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disabled\",\"status\":\"Uninstalled\",\"timestamp\":1581366242},\"user_added_time\":1581359456,\"user_source\":\"Manual\",\"userkey\":\"[REDACTED]\",\"username\":\"kcakebread@vera.com\"}]}},{\"attributes\":{\"_id\":\"NS-000346\",\"client_install_time\":1570655127,\"client_version\":\"68.1.0.346\",\"device_id\":\"NS-000346\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"MacBookPro14,2\",\"hostname\":\"NS-000346\",\"managementID\":\"BDD0DAB08BF2564CBF2A963B5C9176B7\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Mac\",\"os_version\":\"10.15.0\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disabled\",\"status\":\"Uninstalled\",\"timestamp\":1571780101},\"users\":[{\"_id\":\"c848ec5f2127c893f61eab5a\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disabled\",\"status\":\"Uninstalled\",\"timestamp\":1571780101},\"user_added_time\":1570655047,\"user_source\":\"Manual\",\"userkey\":\"[REDACTED]\",\"username\":\"saurabh@netskope.com\"}]}},{\"attributes\":{\"_id\":\"Bob\\u2019s iMac\",\"client_install_time\":1570649805,\"client_version\":\"68.1.0.346\",\"device_id\":\"Bob\\u2019s iMac\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"iMac17,1\",\"hostname\":\"Bob\\u2019s iMac\",\"managementID\":\"0DA09A5C40C45A668632EC2210AB9D7D\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Mac\",\"os_version\":\"10.15.0\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disabled\",\"status\":\"Uninstalled\",\"timestamp\":1571758553},\"users\":[{\"_id\":\"6f0e963eb65f5eff2f23de5a\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disabled\",\"status\":\"Uninstalled\",\"timestamp\":1571758553},\"user_added_time\":1570649729,\"user_source\":\"Manual\",\"userkey\":\"[REDACTED]\",\"username\":\"bob@netskope.com\"}]}},{\"attributes\":{\"_id\":\"jaspreetb-VM01\",\"client_install_time\":1570729968,\"client_version\":\"68.0.0.351\",\"device_id\":\"jaspreetb-VM01\",\"host_info\":{\"device_make\":\"VMware, Inc.\",\"device_model\":\"VMware7,1\",\"hostname\":\"jaspreetb-VM01\",\"managementID\":\"5B43EBC1F0014449847B5C5A27778B7E\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Disabled\",\"status\":\"Enabled\",\"timestamp\":1570766579},\"users\":[{\"_id\":\"47c39fd37a244f466323e446\",\"device_classification_status\":\"Not Configured\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Disabled\",\"status\":\"Enabled\",\"timestamp\":1570766579},\"user_added_time\":1570482423,\"user_source\":\"Manual\",\"userkey\":\"[REDACTED]\",\"username\":\"jasbhati@gmail.com\"}]}},{\"attributes\":{\"_id\":\"Justin\\u2019s Mac (2)\",\"client_install_time\":1565785850,\"client_version\":\"67.2.0.344\",\"device_id\":\"Justin\\u2019s Mac (2)\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"Parallels15,1\",\"hostname\":\"Justin\\u2019s Mac (2)\",\"managementID\":\"BCAE183BC690565CAC7805C38D982359\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Mac\",\"os_version\":\"10.14.3\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Disabled\",\"status\":\"Enabled\",\"timestamp\":1569192258},\"users\":[{\"_id\":\"824c952a4b7361877a99d4b7\",\"device_classification_status\":\"Not Configured\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Disabled\",\"status\":\"Enabled\",\"timestamp\":1569192258},\"user_added_time\":1565784832,\"user_groups\":[\"Phantom_Risky_Users\",\"Test_Group\",\"Demo_Group\",\"mGk_54_Group9003\"],\"user_source\":\"Directory\",\"user_state\":1,\"userkey\":\"[REDACTED]\",\"username\":\"jadrian@netskope.com\"}]}},{\"attributes\":{\"_id\":\"TECHZONE-W10-01\",\"client_install_time\":1565799749,\"client_version\":\"66.1.0.227\",\"device_id\":\"TECHZONE-W10-01\",\"host_info\":{\"device_make\":\"VMware, Inc.\",\"device_model\":\"VMware7,1\",\"hostname\":\"TECHZONE-W10-01\",\"managementID\":\"8076CF1143670843A9953CD12BC6AF0D\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Disabled\",\"status\":\"Enabled\",\"timestamp\":1566506001},\"users\":[{\"_id\":\"902e4463f63220c25518b8ef\",\"device_classification_status\":\"Not Configured\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Disabled\",\"status\":\"Enabled\",\"timestamp\":1566506001},\"user_added_time\":1565784833,\"user_source\":\"Manual\",\"userkey\":\"[REDACTED]\",\"username\":\"ahardy@vmware.com\"}]}}]}" }, "cookies": [ { @@ -102,16 +97,12 @@ }, { "name": "date", - "value": "Fri, 06 May 2022 14:26:15 GMT" + "value": "Mon, 05 Aug 2024 22:59:05 GMT" }, { "name": "content-type", "value": "application/json; charset=UTF-8" }, - { - "name": "content-length", - "value": "463" - }, { "name": "connection", "value": "close" @@ -144,7 +135,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-hYvYNTkK/fPamverjCywwPjT' blob: http://*.3gl.net; style-src 'self' 'nonce-hYvYNTkK/fPamverjCywwPjT'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -163,14 +154,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 1000, + "headersSize": 1481, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-06T14:26:15.478Z", - "time": 908, + "startedDateTime": "2024-08-05T22:59:03.587Z", + "time": 1664, "timings": { "blocked": -1, "connect": -1, @@ -178,11 +169,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 908 + "wait": 1664 } }, { - "_id": "301fdbe9fe569206a98253f45724451c", + "_id": "0d9335ca0143cd257eda99b0e839044a", "_order": 0, "cache": {}, "request": { @@ -197,7 +188,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -214,17 +205,12 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 332, + "headersSize": 293, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -234,22 +220,22 @@ }, "queryString": [ { - "name": "email", - "value": "beyondcorp@demo1-netskope.com" + "name": "limit", + "value": "500" }, { - "name": "configtype", - "value": "agent" + "name": "skip", + "value": "500" } ], - "url": "https://alliances.goskope.com/api/v1/userconfig?email=beyondcorp%40demo1-netskope.com&configtype=agent" + "url": "https://alliances.eu.goskope.com/api/v1/clients?limit=500&skip=500" }, "response": { - "bodySize": 461, + "bodySize": 39, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 461, - "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"beyondcorp@demo1-netskope.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"Netskope\",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"beyondcorp@demo1-netskope.com\",\"UserKey\":\"[REDACTED]\"}}}" + "size": 39, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":[]}" }, "cookies": [ { @@ -276,7 +262,7 @@ }, { "name": "date", - "value": "Fri, 06 May 2022 14:26:16 GMT" + "value": "Mon, 05 Aug 2024 22:59:07 GMT" }, { "name": "content-type", @@ -284,16 +270,12 @@ }, { "name": "content-length", - "value": "461" + "value": "39" }, { "name": "connection", "value": "close" }, - { - "name": "vary", - "value": "Accept-Encoding" - }, { "_fromType": "array", "name": "set-cookie", @@ -318,7 +300,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-OD7oNK0FPFP4RJIwy8Hnha3x' blob: http://*.3gl.net; style-src 'self' 'nonce-OD7oNK0FPFP4RJIwy8Hnha3x'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -337,14 +319,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 1000, + "headersSize": 1428, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-06T14:26:16.394Z", - "time": 670, + "startedDateTime": "2024-08-05T22:59:05.274Z", + "time": 1567, "timings": { "blocked": -1, "connect": -1, @@ -352,11 +334,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 670 + "wait": 1567 } }, { - "_id": "443ca701472f508f79d7635778977bd2", + "_id": "28269c69bb3622db549e2d060f86770f", "_order": 0, "cache": {}, "request": { @@ -371,7 +353,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -388,17 +370,12 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 330, + "headersSize": 329, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -409,21 +386,21 @@ "queryString": [ { "name": "email", - "value": "gjenkins@bcepartnertest.com" + "value": "levente.fangli@cososys.com" }, { "name": "configtype", "value": "agent" } ], - "url": "https://alliances.goskope.com/api/v1/userconfig?email=gjenkins%40bcepartnertest.com&configtype=agent" + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=levente.fangli%40cososys.com&configtype=agent" }, "response": { - "bodySize": 457, + "bodySize": 424, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 457, - "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"gjenkins@bcepartnertest.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"Netskope\",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"gjenkins@bcepartnertest.com\",\"UserKey\":\"[REDACTED]\"}}}" + "size": 424, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"levente.fangli@cososys.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"levente.fangli@cososys.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" }, "cookies": [ { @@ -450,16 +427,12 @@ }, { "name": "date", - "value": "Fri, 06 May 2022 14:26:17 GMT" + "value": "Mon, 05 Aug 2024 22:59:07 GMT" }, { "name": "content-type", "value": "application/json; charset=UTF-8" }, - { - "name": "content-length", - "value": "457" - }, { "name": "connection", "value": "close" @@ -492,7 +465,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-N4RM0uCva7TrguR7dBAtaZiE' blob: http://*.3gl.net; style-src 'self' 'nonce-N4RM0uCva7TrguR7dBAtaZiE'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -511,14 +484,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 1000, + "headersSize": 1483, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-06T14:26:17.069Z", - "time": 702, + "startedDateTime": "2024-08-05T22:59:06.855Z", + "time": 638, "timings": { "blocked": -1, "connect": -1, @@ -526,11 +499,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 702 + "wait": 638 } }, { - "_id": "4d89c342ce8b1ed1c00fe627e4591f6e", + "_id": "11e77691c72fa14028e065b790c7cf33", "_order": 0, "cache": {}, "request": { @@ -545,7 +518,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -562,17 +535,12 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 328, + "headersSize": 326, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -583,21 +551,21 @@ "queryString": [ { "name": "email", - "value": "labs_12345@protonmail.com" + "value": "mcaponetti@riverbed.com" }, { "name": "configtype", "value": "agent" } ], - "url": "https://alliances.goskope.com/api/v1/userconfig?email=labs_12345%40protonmail.com&configtype=agent" + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=mcaponetti%40riverbed.com&configtype=agent" }, "response": { - "bodySize": 453, + "bodySize": 511, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 453, - "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"labs_12345@protonmail.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"Netskope\",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"labs_12345@protonmail.com\",\"UserKey\":\"[REDACTED]\"}}}" + "size": 511, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"mcaponetti@riverbed.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"mcaponetti@riverbed.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" }, "cookies": [ { @@ -624,7 +592,7 @@ }, { "name": "date", - "value": "Fri, 06 May 2022 14:26:18 GMT" + "value": "Mon, 05 Aug 2024 22:59:08 GMT" }, { "name": "content-type", @@ -632,16 +600,12 @@ }, { "name": "content-length", - "value": "453" + "value": "511" }, { "name": "connection", "value": "close" }, - { - "name": "vary", - "value": "Accept-Encoding" - }, { "_fromType": "array", "name": "set-cookie", @@ -666,7 +630,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-w2bN/lZ6fKtQljbIrUAH+kYV' blob: http://*.3gl.net; style-src 'self' 'nonce-w2bN/lZ6fKtQljbIrUAH+kYV'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -685,14 +649,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 998, + "headersSize": 1427, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-06T14:26:17.775Z", - "time": 1028, + "startedDateTime": "2024-08-05T22:59:07.503Z", + "time": 596, "timings": { "blocked": -1, "connect": -1, @@ -700,11 +664,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1028 + "wait": 596 } }, { - "_id": "5eb5f18beb5222f367e610d4a6e69dc3", + "_id": "f3f4deca6c224a85bec39e9c9ab43376", "_order": 0, "cache": {}, "request": { @@ -719,7 +683,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -736,17 +700,12 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 321, + "headersSize": 337, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -757,21 +716,21 @@ "queryString": [ { "name": "email", - "value": "osala@riverbed.com" + "value": "nadav@skyformation.onmicrosoft.com" }, { "name": "configtype", "value": "agent" } ], - "url": "https://alliances.goskope.com/api/v1/userconfig?email=osala%40riverbed.com&configtype=agent" + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=nadav%40skyformation.onmicrosoft.com&configtype=agent" }, "response": { - "bodySize": 439, + "bodySize": 424, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 439, - "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"osala@riverbed.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"Netskope\",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"osala@riverbed.com\",\"UserKey\":\"[REDACTED]\"}}}" + "size": 424, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"nadav@skyformation.onmicrosoft.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"nadav@skyformation.onmicrosoft.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" }, "cookies": [ { @@ -798,16 +757,12 @@ }, { "name": "date", - "value": "Fri, 06 May 2022 14:26:18 GMT" + "value": "Mon, 05 Aug 2024 22:59:08 GMT" }, { "name": "content-type", "value": "application/json; charset=UTF-8" }, - { - "name": "content-length", - "value": "439" - }, { "name": "connection", "value": "close" @@ -840,7 +795,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-vPZO+WjO4pQhSzQxFc2U88Yw' blob: http://*.3gl.net; style-src 'self' 'nonce-vPZO+WjO4pQhSzQxFc2U88Yw'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -859,14 +814,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 1000, + "headersSize": 1481, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-06T14:26:18.807Z", - "time": 750, + "startedDateTime": "2024-08-05T22:59:08.104Z", + "time": 577, "timings": { "blocked": -1, "connect": -1, @@ -874,11 +829,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 750 + "wait": 577 } }, { - "_id": "b6eff32c881624ccfa5192e4194a9624", + "_id": "e0f85947b8f0dc1f3e7bcebf0dd93f26", "_order": 0, "cache": {}, "request": { @@ -893,7 +848,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -910,17 +865,12 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 326, + "headersSize": 329, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -931,21 +881,21 @@ "queryString": [ { "name": "email", - "value": "jason.reimer@tanium.com" + "value": "vikash.ranjan@riverbed.com" }, { "name": "configtype", "value": "agent" } ], - "url": "https://alliances.goskope.com/api/v1/userconfig?email=jason.reimer%40tanium.com&configtype=agent" + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=vikash.ranjan%40riverbed.com&configtype=agent" }, "response": { - "bodySize": 449, + "bodySize": 420, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 449, - "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"jason.reimer@tanium.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"Netskope\",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"jason.reimer@tanium.com\",\"UserKey\":\"[REDACTED]\"}}}" + "size": 420, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"vikash.ranjan@riverbed.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"vikash.ranjan@riverbed.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" }, "cookies": [ { @@ -972,16 +922,12 @@ }, { "name": "date", - "value": "Fri, 06 May 2022 14:26:19 GMT" + "value": "Mon, 05 Aug 2024 22:59:11 GMT" }, { "name": "content-type", "value": "application/json; charset=UTF-8" }, - { - "name": "content-length", - "value": "449" - }, { "name": "connection", "value": "close" @@ -1014,7 +960,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-eyBols+Yucy1U27bDJRm+P+s' blob: http://*.3gl.net; style-src 'self' 'nonce-eyBols+Yucy1U27bDJRm+P+s'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -1033,14 +979,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 1000, + "headersSize": 1481, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-06T14:26:19.562Z", - "time": 729, + "startedDateTime": "2024-08-05T22:59:08.689Z", + "time": 2610, "timings": { "blocked": -1, "connect": -1, @@ -1048,11 +994,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 729 + "wait": 2610 } }, { - "_id": "8718c4f5a5d732d9b1d9244f04a8f7f4", + "_id": "ffb9c8b4a3c09fc45cf05ccc5306109d", "_order": 0, "cache": {}, "request": { @@ -1067,7 +1013,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -1084,17 +1030,12 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 328, + "headersSize": 323, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -1105,21 +1046,21 @@ "queryString": [ { "name": "email", - "value": "hashlock@thousandeyes.com" + "value": "demoy@infinipoint.co" }, { "name": "configtype", "value": "agent" } ], - "url": "https://alliances.goskope.com/api/v1/userconfig?email=hashlock%40thousandeyes.com&configtype=agent" + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=demoy%40infinipoint.co&configtype=agent" }, "response": { - "bodySize": 453, + "bodySize": 505, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 453, - "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"hashlock@thousandeyes.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"Netskope\",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"hashlock@thousandeyes.com\",\"UserKey\":\"[REDACTED]\"}}}" + "size": 505, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"demoy@infinipoint.co\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"demoy@infinipoint.co\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" }, "cookies": [ { @@ -1146,7 +1087,7 @@ }, { "name": "date", - "value": "Fri, 06 May 2022 14:26:20 GMT" + "value": "Mon, 05 Aug 2024 22:59:12 GMT" }, { "name": "content-type", @@ -1154,16 +1095,12 @@ }, { "name": "content-length", - "value": "453" + "value": "505" }, { "name": "connection", "value": "close" }, - { - "name": "vary", - "value": "Accept-Encoding" - }, { "_fromType": "array", "name": "set-cookie", @@ -1188,7 +1125,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-HMGV9geIfYFFGVt3phUWxViq' blob: http://*.3gl.net; style-src 'self' 'nonce-HMGV9geIfYFFGVt3phUWxViq'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -1207,14 +1144,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 998, + "headersSize": 1429, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-06T14:26:20.296Z", - "time": 727, + "startedDateTime": "2024-08-05T22:59:11.308Z", + "time": 588, "timings": { "blocked": -1, "connect": -1, @@ -1222,11 +1159,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 727 + "wait": 588 } }, { - "_id": "83b90dcf66c1b701b7ab8ff41baba34a", + "_id": "cf066f002cfef1dc2134b40369b514b9", "_order": 0, "cache": {}, "request": { @@ -1241,7 +1178,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -1258,17 +1195,12 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 337, + "headersSize": 322, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -1279,21 +1211,21 @@ "queryString": [ { "name": "email", - "value": "brandon.mccaffrey+1@cyberark.com" + "value": "jdelio@riverbed.com" }, { "name": "configtype", "value": "agent" } ], - "url": "https://alliances.goskope.com/api/v1/userconfig?email=brandon.mccaffrey%2B1%40cyberark.com&configtype=agent" + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=jdelio%40riverbed.com&configtype=agent" }, "response": { - "bodySize": 467, + "bodySize": 503, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 467, - "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"brandon.mccaffrey+1@cyberark.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"Netskope\",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"brandon.mccaffrey+1@cyberark.com\",\"UserKey\":\"[REDACTED]\"}}}" + "size": 503, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"jdelio@riverbed.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"jdelio@riverbed.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" }, "cookies": [ { @@ -1320,7 +1252,7 @@ }, { "name": "date", - "value": "Fri, 06 May 2022 14:26:21 GMT" + "value": "Mon, 05 Aug 2024 22:59:12 GMT" }, { "name": "content-type", @@ -1328,16 +1260,12 @@ }, { "name": "content-length", - "value": "467" + "value": "503" }, { "name": "connection", "value": "close" }, - { - "name": "vary", - "value": "Accept-Encoding" - }, { "_fromType": "array", "name": "set-cookie", @@ -1362,7 +1290,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-yfyEYtyxuPu1KI3YUSAWuWhP' blob: http://*.3gl.net; style-src 'self' 'nonce-yfyEYtyxuPu1KI3YUSAWuWhP'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -1381,14 +1309,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 998, + "headersSize": 1427, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-06T14:26:21.028Z", - "time": 668, + "startedDateTime": "2024-08-05T22:59:11.903Z", + "time": 644, "timings": { "blocked": -1, "connect": -1, @@ -1396,11 +1324,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 668 + "wait": 644 } }, { - "_id": "abf69b3a24979243d7713d6fbfc15d97", + "_id": "b5457f0b9b94ae09617da555e01189f6", "_order": 0, "cache": {}, "request": { @@ -1415,7 +1343,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -1432,14 +1360,9 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], "headersSize": 327, @@ -1453,21 +1376,21 @@ "queryString": [ { "name": "email", - "value": "david.r.willis@gmail.com" + "value": "kmaheshwari@netskope.com" }, { "name": "configtype", "value": "agent" } ], - "url": "https://alliances.goskope.com/api/v1/userconfig?email=david.r.willis%40gmail.com&configtype=agent" + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=kmaheshwari%40netskope.com&configtype=agent" }, "response": { - "bodySize": 451, + "bodySize": 412, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 451, - "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"david.r.willis@gmail.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"Netskope\",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"david.r.willis@gmail.com\",\"UserKey\":\"[REDACTED]\"}}}" + "size": 412, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"kmaheshwari@netskope.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"kmaheshwari@netskope.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" }, "cookies": [ { @@ -1494,16 +1417,12 @@ }, { "name": "date", - "value": "Fri, 06 May 2022 14:26:21 GMT" + "value": "Mon, 05 Aug 2024 22:59:13 GMT" }, { "name": "content-type", "value": "application/json; charset=UTF-8" }, - { - "name": "content-length", - "value": "451" - }, { "name": "connection", "value": "close" @@ -1536,7 +1455,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-n5/IojY4OAx4hBSxllOA8WzY' blob: http://*.3gl.net; style-src 'self' 'nonce-n5/IojY4OAx4hBSxllOA8WzY'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -1555,14 +1474,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 998, + "headersSize": 1481, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-06T14:26:21.700Z", - "time": 662, + "startedDateTime": "2024-08-05T22:59:12.554Z", + "time": 738, "timings": { "blocked": -1, "connect": -1, @@ -1570,11 +1489,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 662 + "wait": 738 } }, { - "_id": "5a7163922e9ffdc25ca9ae8e10e7316c", + "_id": "0b61e5d3ce679dcd66fd7f38a6881d16", "_order": 0, "cache": {}, "request": { @@ -1589,7 +1508,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -1606,17 +1525,12 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 321, + "headersSize": 319, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -1627,21 +1541,21 @@ "queryString": [ { "name": "email", - "value": "harry@awesomeco.us" + "value": "taylor@eras.tour" }, { "name": "configtype", "value": "agent" } ], - "url": "https://alliances.goskope.com/api/v1/userconfig?email=harry%40awesomeco.us&configtype=agent" + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=taylor%40eras.tour&configtype=agent" }, "response": { - "bodySize": 439, + "bodySize": 497, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 439, - "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"harry@awesomeco.us\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"Netskope\",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"harry@awesomeco.us\",\"UserKey\":\"[REDACTED]\"}}}" + "size": 497, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"taylor@eras.tour\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"taylor@eras.tour\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" }, "cookies": [ { @@ -1668,7 +1582,7 @@ }, { "name": "date", - "value": "Fri, 06 May 2022 14:26:22 GMT" + "value": "Mon, 05 Aug 2024 22:59:15 GMT" }, { "name": "content-type", @@ -1676,16 +1590,12 @@ }, { "name": "content-length", - "value": "439" + "value": "497" }, { "name": "connection", "value": "close" }, - { - "name": "vary", - "value": "Accept-Encoding" - }, { "_fromType": "array", "name": "set-cookie", @@ -1710,7 +1620,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-7uScMKua0NlycRFXGU9oP0OM' blob: http://*.3gl.net; style-src 'self' 'nonce-7uScMKua0NlycRFXGU9oP0OM'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -1729,14 +1639,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 998, + "headersSize": 1429, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-06T14:26:22.367Z", - "time": 645, + "startedDateTime": "2024-08-05T22:59:13.300Z", + "time": 1584, "timings": { "blocked": -1, "connect": -1, @@ -1744,11 +1654,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 645 + "wait": 1584 } }, { - "_id": "7bfa9e3f9aec93c9951c6283b9b8d4b0", + "_id": "c9bcc62c67962bc4488fd42e5d0f5cb2", "_order": 0, "cache": {}, "request": { @@ -1763,7 +1673,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -1780,17 +1690,12 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 324, + "headersSize": 328, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -1801,21 +1706,21 @@ "queryString": [ { "name": "email", - "value": "gjenkins@netskope.com" + "value": "Karim.Saadah@riverbed.com" }, { "name": "configtype", "value": "agent" } ], - "url": "https://alliances.goskope.com/api/v1/userconfig?email=gjenkins%40netskope.com&configtype=agent" + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=Karim.Saadah%40riverbed.com&configtype=agent" }, "response": { - "bodySize": 445, + "bodySize": 424, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 445, - "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"gjenkins@netskope.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"Netskope\",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"gjenkins@netskope.com\",\"UserKey\":\"[REDACTED]\"}}}" + "size": 424, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"Karim.Saadah@riverbed.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"Karim.Saadah@riverbed.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" }, "cookies": [ { @@ -1842,16 +1747,12 @@ }, { "name": "date", - "value": "Fri, 06 May 2022 14:26:23 GMT" + "value": "Mon, 05 Aug 2024 22:59:15 GMT" }, { "name": "content-type", "value": "application/json; charset=UTF-8" }, - { - "name": "content-length", - "value": "445" - }, { "name": "connection", "value": "close" @@ -1884,7 +1785,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-ehh/TdxzVBNuGzC9YCgaMbqJ' blob: http://*.3gl.net; style-src 'self' 'nonce-ehh/TdxzVBNuGzC9YCgaMbqJ'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -1903,14 +1804,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 998, + "headersSize": 1481, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-06T14:26:23.015Z", - "time": 655, + "startedDateTime": "2024-08-05T22:59:14.890Z", + "time": 599, "timings": { "blocked": -1, "connect": -1, @@ -1918,11 +1819,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 655 + "wait": 599 } }, { - "_id": "fe70dcd1fd2a8fb5116eaeb3106bb8d1", + "_id": "f7c6922016d93d9e5770b485bc37d4c1", "_order": 0, "cache": {}, "request": { @@ -1937,7 +1838,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -1954,17 +1855,12 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 325, + "headersSize": 335, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -1975,21 +1871,21 @@ "queryString": [ { "name": "email", - "value": "gary.jenkins@gmail.com" + "value": "aaron.dunn@endpointprotector.com" }, { "name": "configtype", "value": "agent" } ], - "url": "https://alliances.goskope.com/api/v1/userconfig?email=gary.jenkins%40gmail.com&configtype=agent" + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=aaron.dunn%40endpointprotector.com&configtype=agent" }, "response": { - "bodySize": 447, + "bodySize": 428, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 447, - "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"gary.jenkins@gmail.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"Netskope\",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"gary.jenkins@gmail.com\",\"UserKey\":\"[REDACTED]\"}}}" + "size": 428, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"aaron.dunn@endpointprotector.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"aaron.dunn@endpointprotector.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" }, "cookies": [ { @@ -2016,16 +1912,12 @@ }, { "name": "date", - "value": "Fri, 06 May 2022 14:26:23 GMT" + "value": "Mon, 05 Aug 2024 22:59:16 GMT" }, { "name": "content-type", "value": "application/json; charset=UTF-8" }, - { - "name": "content-length", - "value": "447" - }, { "name": "connection", "value": "close" @@ -2058,7 +1950,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-57Dge206IZ/N/nC/KJHgP99/' blob: http://*.3gl.net; style-src 'self' 'nonce-57Dge206IZ/N/nC/KJHgP99/'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -2077,14 +1969,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 1000, + "headersSize": 1483, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-06T14:26:23.674Z", - "time": 903, + "startedDateTime": "2024-08-05T22:59:15.496Z", + "time": 606, "timings": { "blocked": -1, "connect": -1, @@ -2092,11 +1984,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 903 + "wait": 606 } }, { - "_id": "fbf5484aeed4169361b29347d721bcf8", + "_id": "ae86d37ee03244bd5bd685f604396142", "_order": 0, "cache": {}, "request": { @@ -2111,7 +2003,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -2128,17 +2020,12 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 325, + "headersSize": 326, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -2149,21 +2036,21 @@ "queryString": [ { "name": "email", - "value": "dmulugeta@netskope.com" + "value": "Alex.puskas@cososys.com" }, { "name": "configtype", "value": "agent" } ], - "url": "https://alliances.goskope.com/api/v1/userconfig?email=dmulugeta%40netskope.com&configtype=agent" + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=Alex.puskas%40cososys.com&configtype=agent" }, "response": { - "bodySize": 447, + "bodySize": 511, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 447, - "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"dmulugeta@netskope.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"Netskope\",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"dmulugeta@netskope.com\",\"UserKey\":\"[REDACTED]\"}}}" + "size": 511, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"Alex.puskas@cososys.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"Alex.puskas@cososys.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" }, "cookies": [ { @@ -2190,7 +2077,7 @@ }, { "name": "date", - "value": "Fri, 06 May 2022 14:26:24 GMT" + "value": "Mon, 05 Aug 2024 22:59:16 GMT" }, { "name": "content-type", @@ -2198,16 +2085,12 @@ }, { "name": "content-length", - "value": "447" + "value": "511" }, { "name": "connection", "value": "close" }, - { - "name": "vary", - "value": "Accept-Encoding" - }, { "_fromType": "array", "name": "set-cookie", @@ -2232,7 +2115,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-jr4rG4BPPuHenmxSN1WDY5ji' blob: http://*.3gl.net; style-src 'self' 'nonce-jr4rG4BPPuHenmxSN1WDY5ji'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -2251,14 +2134,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 998, + "headersSize": 1429, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-06T14:26:24.581Z", - "time": 657, + "startedDateTime": "2024-08-05T22:59:16.108Z", + "time": 586, "timings": { "blocked": -1, "connect": -1, @@ -2266,11 +2149,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 657 + "wait": 586 } }, { - "_id": "56109f7b298b991785fd65911b3a31e4", + "_id": "2ea3188697ce8ce570c7e0ff5d50277c", "_order": 0, "cache": {}, "request": { @@ -2285,7 +2168,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -2302,17 +2185,12 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 326, + "headersSize": 318, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -2323,21 +2201,21 @@ "queryString": [ { "name": "email", - "value": "mrajurkar@securview.com" + "value": "as@riverbed.com" }, { "name": "configtype", "value": "agent" } ], - "url": "https://alliances.goskope.com/api/v1/userconfig?email=mrajurkar%40securview.com&configtype=agent" + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=as%40riverbed.com&configtype=agent" }, "response": { - "bodySize": 449, + "bodySize": 495, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 449, - "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"mrajurkar@securview.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"Netskope\",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"mrajurkar@securview.com\",\"UserKey\":\"[REDACTED]\"}}}" + "size": 495, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"as@riverbed.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"as@riverbed.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" }, "cookies": [ { @@ -2364,7 +2242,7 @@ }, { "name": "date", - "value": "Fri, 06 May 2022 14:26:25 GMT" + "value": "Mon, 05 Aug 2024 22:59:17 GMT" }, { "name": "content-type", @@ -2372,16 +2250,12 @@ }, { "name": "content-length", - "value": "449" + "value": "495" }, { "name": "connection", "value": "close" }, - { - "name": "vary", - "value": "Accept-Encoding" - }, { "_fromType": "array", "name": "set-cookie", @@ -2406,7 +2280,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-WqHWQ4iPJSJNIhd7Eh+WxZgz' blob: http://*.3gl.net; style-src 'self' 'nonce-WqHWQ4iPJSJNIhd7Eh+WxZgz'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -2425,14 +2299,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 998, + "headersSize": 1429, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-06T14:26:25.241Z", - "time": 672, + "startedDateTime": "2024-08-05T22:59:16.699Z", + "time": 590, "timings": { "blocked": -1, "connect": -1, @@ -2440,11 +2314,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 672 + "wait": 590 } }, { - "_id": "f3cbbea6260a8f6ec60695c675f3588f", + "_id": "5e81fb0c8dd6d405df4d7e79e7985e9d", "_order": 0, "cache": {}, "request": { @@ -2459,7 +2333,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -2476,17 +2350,12 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 328, + "headersSize": 325, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -2497,21 +2366,21 @@ "queryString": [ { "name": "email", - "value": "labs_12346@protonmail.com" + "value": "ewexler@infinipoint.io" }, { "name": "configtype", "value": "agent" } ], - "url": "https://alliances.goskope.com/api/v1/userconfig?email=labs_12346%40protonmail.com&configtype=agent" + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=ewexler%40infinipoint.io&configtype=agent" }, "response": { - "bodySize": 453, + "bodySize": 509, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 453, - "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"labs_12346@protonmail.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"Netskope\",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"labs_12346@protonmail.com\",\"UserKey\":\"[REDACTED]\"}}}" + "size": 509, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"ewexler@infinipoint.io\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"ewexler@infinipoint.io\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" }, "cookies": [ { @@ -2538,7 +2407,7 @@ }, { "name": "date", - "value": "Fri, 06 May 2022 14:26:25 GMT" + "value": "Mon, 05 Aug 2024 22:59:18 GMT" }, { "name": "content-type", @@ -2546,16 +2415,12 @@ }, { "name": "content-length", - "value": "453" + "value": "509" }, { "name": "connection", "value": "close" }, - { - "name": "vary", - "value": "Accept-Encoding" - }, { "_fromType": "array", "name": "set-cookie", @@ -2580,7 +2445,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-qJRSevdTtLpWk8fBjsSSj5Wj' blob: http://*.3gl.net; style-src 'self' 'nonce-qJRSevdTtLpWk8fBjsSSj5Wj'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -2599,14 +2464,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 998, + "headersSize": 1427, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-06T14:26:25.917Z", - "time": 669, + "startedDateTime": "2024-08-05T22:59:17.292Z", + "time": 576, "timings": { "blocked": -1, "connect": -1, @@ -2614,11 +2479,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 669 + "wait": 576 } }, { - "_id": "95faa0076f50683543728ca716d47072", + "_id": "6f50238e4f972b8f59d70ac8253ea335", "_order": 0, "cache": {}, "request": { @@ -2633,7 +2498,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -2650,17 +2515,12 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 336, + "headersSize": 323, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -2671,21 +2531,21 @@ "queryString": [ { "name": "email", - "value": "arnab.chakrabarty@crowdstrike.com" + "value": "keshavm021@gmail.com" }, { "name": "configtype", "value": "agent" } ], - "url": "https://alliances.goskope.com/api/v1/userconfig?email=arnab.chakrabarty%40crowdstrike.com&configtype=agent" + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=keshavm021%40gmail.com&configtype=agent" }, "response": { - "bodySize": 469, + "bodySize": 505, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 469, - "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"arnab.chakrabarty@crowdstrike.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"Netskope\",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"arnab.chakrabarty@crowdstrike.com\",\"UserKey\":\"[REDACTED]\"}}}" + "size": 505, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"keshavm021@gmail.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"keshavm021@gmail.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" }, "cookies": [ { @@ -2712,7 +2572,7 @@ }, { "name": "date", - "value": "Fri, 06 May 2022 14:26:26 GMT" + "value": "Mon, 05 Aug 2024 22:59:19 GMT" }, { "name": "content-type", @@ -2720,16 +2580,12 @@ }, { "name": "content-length", - "value": "469" + "value": "505" }, { "name": "connection", "value": "close" }, - { - "name": "vary", - "value": "Accept-Encoding" - }, { "_fromType": "array", "name": "set-cookie", @@ -2754,7 +2610,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-PTI5INPiXYWbmXGs8Q1fUydp' blob: http://*.3gl.net; style-src 'self' 'nonce-PTI5INPiXYWbmXGs8Q1fUydp'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -2773,14 +2629,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 1000, + "headersSize": 1429, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-06T14:26:26.589Z", - "time": 680, + "startedDateTime": "2024-08-05T22:59:17.874Z", + "time": 1636, "timings": { "blocked": -1, "connect": -1, @@ -2788,11 +2644,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 680 + "wait": 1636 } }, { - "_id": "0b0637d1fdaa522c3080ed69093980bf", + "_id": "3ca4f340bbb37b9a34a6c77f72d760a9", "_order": 0, "cache": {}, "request": { @@ -2807,7 +2663,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -2824,17 +2680,12 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 335, + "headersSize": 321, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -2845,21 +2696,21 @@ "queryString": [ { "name": "email", - "value": "raj.charkhawala@crestdatasys.com" + "value": "jasbhati@gmail.com" }, { "name": "configtype", "value": "agent" } ], - "url": "https://alliances.goskope.com/api/v1/userconfig?email=raj.charkhawala%40crestdatasys.com&configtype=agent" + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=jasbhati%40gmail.com&configtype=agent" }, "response": { - "bodySize": 467, + "bodySize": 501, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 467, - "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"raj.charkhawala@crestdatasys.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"Netskope\",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"raj.charkhawala@crestdatasys.com\",\"UserKey\":\"[REDACTED]\"}}}" + "size": 501, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"jasbhati@gmail.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"jasbhati@gmail.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" }, "cookies": [ { @@ -2886,7 +2737,7 @@ }, { "name": "date", - "value": "Fri, 06 May 2022 14:26:27 GMT" + "value": "Mon, 05 Aug 2024 22:59:20 GMT" }, { "name": "content-type", @@ -2894,16 +2745,12 @@ }, { "name": "content-length", - "value": "467" + "value": "501" }, { "name": "connection", "value": "close" }, - { - "name": "vary", - "value": "Accept-Encoding" - }, { "_fromType": "array", "name": "set-cookie", @@ -2928,7 +2775,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-ZxQ9m0DLP1nLkGwMOSYd0wLI' blob: http://*.3gl.net; style-src 'self' 'nonce-ZxQ9m0DLP1nLkGwMOSYd0wLI'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -2947,14 +2794,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 998, + "headersSize": 1427, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-06T14:26:27.272Z", - "time": 642, + "startedDateTime": "2024-08-05T22:59:19.514Z", + "time": 559, "timings": { "blocked": -1, "connect": -1, @@ -2962,11 +2809,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 642 + "wait": 559 } }, { - "_id": "82720c6deafef69f13847a34ee984a1c", + "_id": "301fdbe9fe569206a98253f45724451c", "_order": 0, "cache": {}, "request": { @@ -2981,7 +2828,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -2998,17 +2845,12 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 330, + "headersSize": 332, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -3019,21 +2861,21 @@ "queryString": [ { "name": "email", - "value": "deep.raval@crestdatasys.com" + "value": "beyondcorp@demo1-netskope.com" }, { "name": "configtype", "value": "agent" } ], - "url": "https://alliances.goskope.com/api/v1/userconfig?email=deep.raval%40crestdatasys.com&configtype=agent" + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=beyondcorp%40demo1-netskope.com&configtype=agent" }, "response": { - "bodySize": 457, + "bodySize": 420, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 457, - "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"deep.raval@crestdatasys.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"Netskope\",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"deep.raval@crestdatasys.com\",\"UserKey\":\"[REDACTED]\"}}}" + "size": 420, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"beyondcorp@demo1-netskope.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"beyondcorp@demo1-netskope.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" }, "cookies": [ { @@ -3060,16 +2902,12 @@ }, { "name": "date", - "value": "Fri, 06 May 2022 14:26:28 GMT" + "value": "Mon, 05 Aug 2024 22:59:20 GMT" }, { "name": "content-type", "value": "application/json; charset=UTF-8" }, - { - "name": "content-length", - "value": "457" - }, { "name": "connection", "value": "close" @@ -3102,7 +2940,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-+3pRZoigB8V/VI0xPk7m4qFC' blob: http://*.3gl.net; style-src 'self' 'nonce-+3pRZoigB8V/VI0xPk7m4qFC'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -3121,14 +2959,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 1000, + "headersSize": 1481, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-06T14:26:27.917Z", - "time": 1653, + "startedDateTime": "2024-08-05T22:59:20.076Z", + "time": 568, "timings": { "blocked": -1, "connect": -1, @@ -3136,11 +2974,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1653 + "wait": 568 } }, { - "_id": "5b97ed3c93ec860efec9da4faad8e689", + "_id": "9334bfafc4fcf300e1de37ef99a9e20b", "_order": 0, "cache": {}, "request": { @@ -3155,7 +2993,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -3172,17 +3010,12 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 331, + "headersSize": 327, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -3193,21 +3026,21 @@ "queryString": [ { "name": "email", - "value": "dhyey.patel@crestdatasys.com" + "value": "ashok.parida@exabeam.com" }, { "name": "configtype", "value": "agent" } ], - "url": "https://alliances.goskope.com/api/v1/userconfig?email=dhyey.patel%40crestdatasys.com&configtype=agent" + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=ashok.parida%40exabeam.com&configtype=agent" }, "response": { - "bodySize": 459, + "bodySize": 416, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 459, - "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"dhyey.patel@crestdatasys.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"Netskope\",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"dhyey.patel@crestdatasys.com\",\"UserKey\":\"[REDACTED]\"}}}" + "size": 416, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"ashok.parida@exabeam.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"ashok.parida@exabeam.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" }, "cookies": [ { @@ -3234,16 +3067,12 @@ }, { "name": "date", - "value": "Fri, 06 May 2022 14:26:29 GMT" + "value": "Mon, 05 Aug 2024 22:59:21 GMT" }, { "name": "content-type", "value": "application/json; charset=UTF-8" }, - { - "name": "content-length", - "value": "459" - }, { "name": "connection", "value": "close" @@ -3276,7 +3105,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-BBro6HO/RQrL3XsgSYSTIQU/' blob: http://*.3gl.net; style-src 'self' 'nonce-BBro6HO/RQrL3XsgSYSTIQU/'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -3295,14 +3124,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 1002, + "headersSize": 1483, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-06T14:26:29.573Z", - "time": 729, + "startedDateTime": "2024-08-05T22:59:20.650Z", + "time": 612, "timings": { "blocked": -1, "connect": -1, @@ -3310,11 +3139,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 729 + "wait": 612 } }, { - "_id": "786b1ffa506b0b4dfe79b3158494b790", + "_id": "b9f15008f39fe2b2ef8c30acb15e3eec", "_order": 0, "cache": {}, "request": { @@ -3329,7 +3158,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -3346,17 +3175,12 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 335, + "headersSize": 331, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -3367,21 +3191,21 @@ "queryString": [ { "name": "email", - "value": "jadrian+alliances@netskope.com" + "value": "sandeep.shekhar@riverbed.com" }, { "name": "configtype", "value": "agent" } ], - "url": "https://alliances.goskope.com/api/v1/userconfig?email=jadrian%2Balliances%40netskope.com&configtype=agent" + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=sandeep.shekhar%40riverbed.com&configtype=agent" }, "response": { - "bodySize": 463, + "bodySize": 420, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 463, - "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"jadrian+alliances@netskope.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"Netskope\",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"jadrian+alliances@netskope.com\",\"UserKey\":\"[REDACTED]\"}}}" + "size": 420, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"sandeep.shekhar@riverbed.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"sandeep.shekhar@riverbed.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" }, "cookies": [ { @@ -3408,16 +3232,12 @@ }, { "name": "date", - "value": "Fri, 06 May 2022 14:26:30 GMT" + "value": "Mon, 05 Aug 2024 22:59:22 GMT" }, { "name": "content-type", "value": "application/json; charset=UTF-8" }, - { - "name": "content-length", - "value": "463" - }, { "name": "connection", "value": "close" @@ -3450,7 +3270,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-FryKRFnz6/TAVeR1RYRSmxQs' blob: http://*.3gl.net; style-src 'self' 'nonce-FryKRFnz6/TAVeR1RYRSmxQs'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -3469,14 +3289,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 998, + "headersSize": 1481, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-06T14:26:30.305Z", - "time": 694, + "startedDateTime": "2024-08-05T22:59:21.268Z", + "time": 578, "timings": { "blocked": -1, "connect": -1, @@ -3484,11 +3304,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 694 + "wait": 578 } }, { - "_id": "a365f16536e12405c9bb3e5bc68c2d7e", + "_id": "628ecfd70a5f3f3a58f82bbe60633b78", "_order": 0, "cache": {}, "request": { @@ -3503,7 +3323,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -3520,17 +3340,3972 @@ "name": "accept-encoding", "value": "gzip,deflate" }, + { + "name": "host", + "value": "alliances.eu.goskope.com" + } + ], + "headersSize": 324, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/json", + "params": [], + "text": "{\"token\":\"[REDACTED]\"}" + }, + "queryString": [ + { + "name": "email", + "value": "levi.fangli@gmail.com" + }, + { + "name": "configtype", + "value": "agent" + } + ], + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=levi.fangli%40gmail.com&configtype=agent" + }, + "response": { + "bodySize": 507, + "content": { + "mimeType": "application/json; charset=UTF-8", + "size": 507, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"levi.fangli@gmail.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"levi.fangli@gmail.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" + }, + "cookies": [ + { + "httpOnly": true, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + }, + { + "expires": "1970-01-01T00:00:01.000Z", + "httpOnly": true, + "maxAge": 0, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + } + ], + "headers": [ + { + "name": "server", + "value": "nginx" + }, + { + "name": "date", + "value": "Mon, 05 Aug 2024 22:59:22 GMT" + }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, + { + "name": "content-length", + "value": "507" + }, + { + "name": "connection", + "value": "close" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "name": "expires", + "value": "Thu, 19 Nov 1981 08:52:00 GMT" + }, + { + "name": "cache-control", + "value": "no-store, no-cache, must-revalidate" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-security-policy", + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-1gxmlJvR0J7rUHTApYDPPfnS' blob: http://*.3gl.net; style-src 'self' 'nonce-1gxmlJvR0J7rUHTApYDPPfnS'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" + }, + { + "name": "x-frame-options", + "value": "DENY, DENY" + }, + { + "name": "x-xss-protection", + "value": "1; mode=block" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains" + } + ], + "headersSize": 1431, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2024-08-05T22:59:21.853Z", + "time": 611, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 611 + } + }, + { + "_id": "720fc756e0e92aef70a05e5f35aeb5be", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 44, + "cookies": [], + "headers": [ + { + "_fromType": "array", + "name": "content-type", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "accept", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "content-length", + "value": "44" + }, + { + "_fromType": "array", + "name": "user-agent", + "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" + }, + { + "_fromType": "array", + "name": "accept-encoding", + "value": "gzip,deflate" + }, + { + "name": "host", + "value": "alliances.eu.goskope.com" + } + ], + "headersSize": 329, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/json", + "params": [], + "text": "{\"token\":\"[REDACTED]\"}" + }, + "queryString": [ + { + "name": "email", + "value": "levente.fangli@netwrix.com" + }, + { + "name": "configtype", + "value": "agent" + } + ], + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=levente.fangli%40netwrix.com&configtype=agent" + }, + "response": { + "bodySize": 100, + "content": { + "mimeType": "application/json; charset=UTF-8", + "size": 100, + "text": "{\"status\":\"error\",\"errorCode\":\"General Error\",\"errors\":[\"Error Processing Request\"],\"warnings\":[\"\"]}" + }, + "cookies": [ + { + "httpOnly": true, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + }, + { + "expires": "1970-01-01T00:00:01.000Z", + "httpOnly": true, + "maxAge": 0, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + } + ], + "headers": [ + { + "name": "server", + "value": "nginx" + }, + { + "name": "date", + "value": "Mon, 05 Aug 2024 22:59:23 GMT" + }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, + { + "name": "content-length", + "value": "100" + }, + { + "name": "connection", + "value": "close" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "name": "expires", + "value": "Thu, 19 Nov 1981 08:52:00 GMT" + }, + { + "name": "cache-control", + "value": "no-store, no-cache, must-revalidate" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-security-policy", + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-RMQAmSjg/AMZGtgl+eq6z9cP' blob: http://*.3gl.net; style-src 'self' 'nonce-RMQAmSjg/AMZGtgl+eq6z9cP'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" + }, + { + "name": "x-frame-options", + "value": "DENY, DENY" + }, + { + "name": "x-xss-protection", + "value": "1; mode=block" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains" + } + ], + "headersSize": 1427, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2024-08-05T22:59:22.470Z", + "time": 675, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 675 + } + }, + { + "_id": "4409dd57c3ecbdf8aaa080c6cb384955", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 44, + "cookies": [], + "headers": [ + { + "_fromType": "array", + "name": "content-type", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "accept", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "content-length", + "value": "44" + }, + { + "_fromType": "array", + "name": "user-agent", + "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" + }, + { + "_fromType": "array", + "name": "accept-encoding", + "value": "gzip,deflate" + }, + { + "name": "host", + "value": "alliances.eu.goskope.com" + } + ], + "headersSize": 328, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/json", + "params": [], + "text": "{\"token\":\"[REDACTED]\"}" + }, + "queryString": [ + { + "name": "email", + "value": "adrian.ivascu@cososys.com" + }, + { + "name": "configtype", + "value": "agent" + } + ], + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=adrian.ivascu%40cososys.com&configtype=agent" + }, + "response": { + "bodySize": 420, + "content": { + "mimeType": "application/json; charset=UTF-8", + "size": 420, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"adrian.ivascu@cososys.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"adrian.ivascu@cososys.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" + }, + "cookies": [ + { + "httpOnly": true, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + }, + { + "expires": "1970-01-01T00:00:01.000Z", + "httpOnly": true, + "maxAge": 0, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + } + ], + "headers": [ + { + "name": "server", + "value": "nginx" + }, + { + "name": "date", + "value": "Mon, 05 Aug 2024 22:59:23 GMT" + }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, + { + "name": "connection", + "value": "close" + }, + { + "name": "vary", + "value": "Accept-Encoding" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "name": "expires", + "value": "Thu, 19 Nov 1981 08:52:00 GMT" + }, + { + "name": "cache-control", + "value": "no-store, no-cache, must-revalidate" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-security-policy", + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-sXcvjZ69HpEaaBBrb/lc2xlP' blob: http://*.3gl.net; style-src 'self' 'nonce-sXcvjZ69HpEaaBBrb/lc2xlP'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" + }, + { + "name": "x-frame-options", + "value": "DENY, DENY" + }, + { + "name": "x-xss-protection", + "value": "1; mode=block" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains" + } + ], + "headersSize": 1483, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2024-08-05T22:59:23.149Z", + "time": 580, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 580 + } + }, + { + "_id": "88a9365db8b939b6f46801a7d8debbdc", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 44, + "cookies": [], + "headers": [ + { + "_fromType": "array", + "name": "content-type", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "accept", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "content-length", + "value": "44" + }, + { + "_fromType": "array", + "name": "user-agent", + "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" + }, + { + "_fromType": "array", + "name": "accept-encoding", + "value": "gzip,deflate" + }, + { + "name": "host", + "value": "alliances.eu.goskope.com" + } + ], + "headersSize": 322, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/json", + "params": [], + "text": "{\"token\":\"[REDACTED]\"}" + }, + "queryString": [ + { + "name": "email", + "value": "demo@infinipoint.co" + }, + { + "name": "configtype", + "value": "agent" + } + ], + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=demo%40infinipoint.co&configtype=agent" + }, + "response": { + "bodySize": 503, + "content": { + "mimeType": "application/json; charset=UTF-8", + "size": 503, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"demo@infinipoint.co\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"demo@infinipoint.co\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" + }, + "cookies": [ + { + "httpOnly": true, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + }, + { + "expires": "1970-01-01T00:00:01.000Z", + "httpOnly": true, + "maxAge": 0, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + } + ], + "headers": [ + { + "name": "server", + "value": "nginx" + }, + { + "name": "date", + "value": "Mon, 05 Aug 2024 22:59:26 GMT" + }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, + { + "name": "content-length", + "value": "503" + }, + { + "name": "connection", + "value": "close" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "name": "expires", + "value": "Thu, 19 Nov 1981 08:52:00 GMT" + }, + { + "name": "cache-control", + "value": "no-store, no-cache, must-revalidate" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-security-policy", + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-wvM/M8kB+IdS25j55Z37kBCj' blob: http://*.3gl.net; style-src 'self' 'nonce-wvM/M8kB+IdS25j55Z37kBCj'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" + }, + { + "name": "x-frame-options", + "value": "DENY, DENY" + }, + { + "name": "x-xss-protection", + "value": "1; mode=block" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains" + } + ], + "headersSize": 1429, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2024-08-05T22:59:23.733Z", + "time": 2619, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 2619 + } + }, + { + "_id": "900fe8d7851104aab4c724e606c7835b", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 44, + "cookies": [], + "headers": [ + { + "_fromType": "array", + "name": "content-type", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "accept", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "content-length", + "value": "44" + }, + { + "_fromType": "array", + "name": "user-agent", + "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" + }, + { + "_fromType": "array", + "name": "accept-encoding", + "value": "gzip,deflate" + }, + { + "name": "host", + "value": "alliances.eu.goskope.com" + } + ], + "headersSize": 330, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/json", + "params": [], + "text": "{\"token\":\"[REDACTED]\"}" + }, + "queryString": [ + { + "name": "email", + "value": "leeroy.jenkins@storosta.com" + }, + { + "name": "configtype", + "value": "agent" + } + ], + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=leeroy.jenkins%40storosta.com&configtype=agent" + }, + "response": { + "bodySize": 420, + "content": { + "mimeType": "application/json; charset=UTF-8", + "size": 420, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"leeroy.jenkins@storosta.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"leeroy.jenkins@storosta.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" + }, + "cookies": [ + { + "httpOnly": true, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + }, + { + "expires": "1970-01-01T00:00:01.000Z", + "httpOnly": true, + "maxAge": 0, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + } + ], + "headers": [ + { + "name": "server", + "value": "nginx" + }, + { + "name": "date", + "value": "Mon, 05 Aug 2024 22:59:27 GMT" + }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, + { + "name": "connection", + "value": "close" + }, + { + "name": "vary", + "value": "Accept-Encoding" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "name": "expires", + "value": "Thu, 19 Nov 1981 08:52:00 GMT" + }, + { + "name": "cache-control", + "value": "no-store, no-cache, must-revalidate" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-security-policy", + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-fsfhERTiVdMN1i0SQ4s5nkqq' blob: http://*.3gl.net; style-src 'self' 'nonce-fsfhERTiVdMN1i0SQ4s5nkqq'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" + }, + { + "name": "x-frame-options", + "value": "DENY, DENY" + }, + { + "name": "x-xss-protection", + "value": "1; mode=block" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains" + } + ], + "headersSize": 1483, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2024-08-05T22:59:26.355Z", + "time": 620, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 620 + } + }, + { + "_id": "66552f5c2ae2ead6e834f883227abf41", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 44, + "cookies": [], + "headers": [ + { + "_fromType": "array", + "name": "content-type", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "accept", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "content-length", + "value": "44" + }, + { + "_fromType": "array", + "name": "user-agent", + "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" + }, + { + "_fromType": "array", + "name": "accept-encoding", + "value": "gzip,deflate" + }, + { + "name": "host", + "value": "alliances.eu.goskope.com" + } + ], + "headersSize": 328, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/json", + "params": [], + "text": "{\"token\":\"[REDACTED]\"}" + }, + "queryString": [ + { + "name": "email", + "value": "karim.saadah@riverbed.com" + }, + { + "name": "configtype", + "value": "agent" + } + ], + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=karim.saadah%40riverbed.com&configtype=agent" + }, + "response": { + "bodySize": 424, + "content": { + "mimeType": "application/json; charset=UTF-8", + "size": 424, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"karim.saadah@riverbed.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"karim.saadah@riverbed.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" + }, + "cookies": [ + { + "httpOnly": true, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + }, + { + "expires": "1970-01-01T00:00:01.000Z", + "httpOnly": true, + "maxAge": 0, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + } + ], + "headers": [ + { + "name": "server", + "value": "nginx" + }, + { + "name": "date", + "value": "Mon, 05 Aug 2024 22:59:27 GMT" + }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, + { + "name": "connection", + "value": "close" + }, + { + "name": "vary", + "value": "Accept-Encoding" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "name": "expires", + "value": "Thu, 19 Nov 1981 08:52:00 GMT" + }, + { + "name": "cache-control", + "value": "no-store, no-cache, must-revalidate" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-security-policy", + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-4wsO3hgKXRZ9t30RfKvynm51' blob: http://*.3gl.net; style-src 'self' 'nonce-4wsO3hgKXRZ9t30RfKvynm51'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" + }, + { + "name": "x-frame-options", + "value": "DENY, DENY" + }, + { + "name": "x-xss-protection", + "value": "1; mode=block" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains" + } + ], + "headersSize": 1483, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2024-08-05T22:59:26.979Z", + "time": 578, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 578 + } + }, + { + "_id": "d0d9d96fdb4b3eefe75cd4aac3595507", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 44, + "cookies": [], + "headers": [ + { + "_fromType": "array", + "name": "content-type", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "accept", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "content-length", + "value": "44" + }, + { + "_fromType": "array", + "name": "user-agent", + "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" + }, + { + "_fromType": "array", + "name": "accept-encoding", + "value": "gzip,deflate" + }, + { + "name": "host", + "value": "alliances.eu.goskope.com" + } + ], + "headersSize": 334, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/json", + "params": [], + "text": "{\"token\":\"[REDACTED]\"}" + }, + "queryString": [ + { + "name": "email", + "value": "justas.zaborovskis@storosta.com" + }, + { + "name": "configtype", + "value": "agent" + } + ], + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=justas.zaborovskis%40storosta.com&configtype=agent" + }, + "response": { + "bodySize": 424, + "content": { + "mimeType": "application/json; charset=UTF-8", + "size": 424, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"justas.zaborovskis@storosta.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"justas.zaborovskis@storosta.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" + }, + "cookies": [ + { + "httpOnly": true, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + }, + { + "expires": "1970-01-01T00:00:01.000Z", + "httpOnly": true, + "maxAge": 0, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + } + ], + "headers": [ + { + "name": "server", + "value": "nginx" + }, + { + "name": "date", + "value": "Mon, 05 Aug 2024 22:59:28 GMT" + }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, + { + "name": "connection", + "value": "close" + }, + { + "name": "vary", + "value": "Accept-Encoding" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "name": "expires", + "value": "Thu, 19 Nov 1981 08:52:00 GMT" + }, + { + "name": "cache-control", + "value": "no-store, no-cache, must-revalidate" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-security-policy", + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-MZj39L89lA5K+8OhrRHTPPZl' blob: http://*.3gl.net; style-src 'self' 'nonce-MZj39L89lA5K+8OhrRHTPPZl'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" + }, + { + "name": "x-frame-options", + "value": "DENY, DENY" + }, + { + "name": "x-xss-protection", + "value": "1; mode=block" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains" + } + ], + "headersSize": 1481, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2024-08-05T22:59:27.561Z", + "time": 628, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 628 + } + }, + { + "_id": "b2906077b3197009c65eba0ce147fd43", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 44, + "cookies": [], + "headers": [ + { + "_fromType": "array", + "name": "content-type", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "accept", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "content-length", + "value": "44" + }, + { + "_fromType": "array", + "name": "user-agent", + "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" + }, + { + "_fromType": "array", + "name": "accept-encoding", + "value": "gzip,deflate" + }, + { + "name": "host", + "value": "alliances.eu.goskope.com" + } + ], + "headersSize": 326, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/json", + "params": [], + "text": "{\"token\":\"[REDACTED]\"}" + }, + "queryString": [ + { + "name": "email", + "value": "netskopejenga@gmail.com" + }, + { + "name": "configtype", + "value": "agent" + } + ], + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=netskopejenga%40gmail.com&configtype=agent" + }, + "response": { + "bodySize": 511, + "content": { + "mimeType": "application/json; charset=UTF-8", + "size": 511, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"netskopejenga@gmail.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"netskopejenga@gmail.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" + }, + "cookies": [ + { + "httpOnly": true, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + }, + { + "expires": "1970-01-01T00:00:01.000Z", + "httpOnly": true, + "maxAge": 0, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + } + ], + "headers": [ + { + "name": "server", + "value": "nginx" + }, + { + "name": "date", + "value": "Mon, 05 Aug 2024 22:59:29 GMT" + }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, + { + "name": "content-length", + "value": "511" + }, + { + "name": "connection", + "value": "close" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "name": "expires", + "value": "Thu, 19 Nov 1981 08:52:00 GMT" + }, + { + "name": "cache-control", + "value": "no-store, no-cache, must-revalidate" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-security-policy", + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-YZX7mRoWwMzxkOLpbOrCjnQs' blob: http://*.3gl.net; style-src 'self' 'nonce-YZX7mRoWwMzxkOLpbOrCjnQs'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" + }, + { + "name": "x-frame-options", + "value": "DENY, DENY" + }, + { + "name": "x-xss-protection", + "value": "1; mode=block" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains" + } + ], + "headersSize": 1431, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2024-08-05T22:59:28.194Z", + "time": 719, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 719 + } + }, + { + "_id": "1bece4e1f29ee833e9c2f0ace3b39bb2", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 44, + "cookies": [], + "headers": [ + { + "_fromType": "array", + "name": "content-type", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "accept", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "content-length", + "value": "44" + }, + { + "_fromType": "array", + "name": "user-agent", + "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" + }, + { + "_fromType": "array", + "name": "accept-encoding", + "value": "gzip,deflate" + }, + { + "name": "host", + "value": "alliances.eu.goskope.com" + } + ], + "headersSize": 342, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/json", + "params": [], + "text": "{\"token\":\"[REDACTED]\"}" + }, + "queryString": [ + { + "name": "email", + "value": "testuser1@M365x59058071.onmicrosoft.com" + }, + { + "name": "configtype", + "value": "agent" + } + ], + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=testuser1%40M365x59058071.onmicrosoft.com&configtype=agent" + }, + "response": { + "bodySize": 432, + "content": { + "mimeType": "application/json; charset=UTF-8", + "size": 432, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"testuser1@M365x59058071.onmicrosoft.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"testuser1@M365x59058071.onmicrosoft.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" + }, + "cookies": [ + { + "httpOnly": true, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + }, + { + "expires": "1970-01-01T00:00:01.000Z", + "httpOnly": true, + "maxAge": 0, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + } + ], + "headers": [ + { + "name": "server", + "value": "nginx" + }, + { + "name": "date", + "value": "Mon, 05 Aug 2024 22:59:29 GMT" + }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, + { + "name": "connection", + "value": "close" + }, + { + "name": "vary", + "value": "Accept-Encoding" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "name": "expires", + "value": "Thu, 19 Nov 1981 08:52:00 GMT" + }, + { + "name": "cache-control", + "value": "no-store, no-cache, must-revalidate" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-security-policy", + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-TWpVGq0VFBHjbNf8ItHAZj1R' blob: http://*.3gl.net; style-src 'self' 'nonce-TWpVGq0VFBHjbNf8ItHAZj1R'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" + }, + { + "name": "x-frame-options", + "value": "DENY, DENY" + }, + { + "name": "x-xss-protection", + "value": "1; mode=block" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains" + } + ], + "headersSize": 1481, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2024-08-05T22:59:28.919Z", + "time": 589, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 589 + } + }, + { + "_id": "f4f26db01ec2a5d51709f02ebadca4dd", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 44, + "cookies": [], + "headers": [ + { + "_fromType": "array", + "name": "content-type", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "accept", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "content-length", + "value": "44" + }, + { + "_fromType": "array", + "name": "user-agent", + "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" + }, + { + "_fromType": "array", + "name": "accept-encoding", + "value": "gzip,deflate" + }, + { + "name": "host", + "value": "alliances.eu.goskope.com" + } + ], + "headersSize": 325, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/json", + "params": [], + "text": "{\"token\":\"[REDACTED]\"}" + }, + "queryString": [ + { + "name": "email", + "value": "iheller@infinipoint.io" + }, + { + "name": "configtype", + "value": "agent" + } + ], + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=iheller%40infinipoint.io&configtype=agent" + }, + "response": { + "bodySize": 509, + "content": { + "mimeType": "application/json; charset=UTF-8", + "size": 509, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"iheller@infinipoint.io\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"iheller@infinipoint.io\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" + }, + "cookies": [ + { + "httpOnly": true, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + }, + { + "expires": "1970-01-01T00:00:01.000Z", + "httpOnly": true, + "maxAge": 0, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + } + ], + "headers": [ + { + "name": "server", + "value": "nginx" + }, + { + "name": "date", + "value": "Mon, 05 Aug 2024 22:59:30 GMT" + }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, + { + "name": "content-length", + "value": "509" + }, + { + "name": "connection", + "value": "close" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "name": "expires", + "value": "Thu, 19 Nov 1981 08:52:00 GMT" + }, + { + "name": "cache-control", + "value": "no-store, no-cache, must-revalidate" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-security-policy", + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-y2WCe9DaxdVGcm/KrbH34UJF' blob: http://*.3gl.net; style-src 'self' 'nonce-y2WCe9DaxdVGcm/KrbH34UJF'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" + }, + { + "name": "x-frame-options", + "value": "DENY, DENY" + }, + { + "name": "x-xss-protection", + "value": "1; mode=block" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains" + } + ], + "headersSize": 1427, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2024-08-05T22:59:29.513Z", + "time": 596, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 596 + } + }, + { + "_id": "7c2b0339ea8be8641659cec13c5caf4f", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 44, + "cookies": [], + "headers": [ + { + "_fromType": "array", + "name": "content-type", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "accept", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "content-length", + "value": "44" + }, + { + "_fromType": "array", + "name": "user-agent", + "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" + }, + { + "_fromType": "array", + "name": "accept-encoding", + "value": "gzip,deflate" + }, + { + "name": "host", + "value": "alliances.eu.goskope.com" + } + ], + "headersSize": 323, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/json", + "params": [], + "text": "{\"token\":\"[REDACTED]\"}" + }, + "queryString": [ + { + "name": "email", + "value": "smadi@savvy.security" + }, + { + "name": "configtype", + "value": "agent" + } + ], + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=smadi%40savvy.security&configtype=agent" + }, + "response": { + "bodySize": 505, + "content": { + "mimeType": "application/json; charset=UTF-8", + "size": 505, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"smadi@savvy.security\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"smadi@savvy.security\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" + }, + "cookies": [ + { + "httpOnly": true, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + }, + { + "expires": "1970-01-01T00:00:01.000Z", + "httpOnly": true, + "maxAge": 0, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + } + ], + "headers": [ + { + "name": "server", + "value": "nginx" + }, + { + "name": "date", + "value": "Mon, 05 Aug 2024 22:59:32 GMT" + }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, + { + "name": "content-length", + "value": "505" + }, + { + "name": "connection", + "value": "close" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "name": "expires", + "value": "Thu, 19 Nov 1981 08:52:00 GMT" + }, + { + "name": "cache-control", + "value": "no-store, no-cache, must-revalidate" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-security-policy", + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-hdE4lKyAG6wMlOQXKUNyRvJy' blob: http://*.3gl.net; style-src 'self' 'nonce-hdE4lKyAG6wMlOQXKUNyRvJy'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" + }, + { + "name": "x-frame-options", + "value": "DENY, DENY" + }, + { + "name": "x-xss-protection", + "value": "1; mode=block" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains" + } + ], + "headersSize": 1427, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2024-08-05T22:59:30.113Z", + "time": 2721, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 2721 + } + }, + { + "_id": "cfb97448a3220c775227f79de3a2c5a1", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 44, + "cookies": [], + "headers": [ + { + "_fromType": "array", + "name": "content-type", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "accept", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "content-length", + "value": "44" + }, + { + "_fromType": "array", + "name": "user-agent", + "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" + }, + { + "_fromType": "array", + "name": "accept-encoding", + "value": "gzip,deflate" + }, + { + "name": "host", + "value": "alliances.eu.goskope.com" + } + ], + "headersSize": 328, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/json", + "params": [], + "text": "{\"token\":\"[REDACTED]\"}" + }, + "queryString": [ + { + "name": "email", + "value": "Adrian.ivascu@cososys.com" + }, + { + "name": "configtype", + "value": "agent" + } + ], + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=Adrian.ivascu%40cososys.com&configtype=agent" + }, + "response": { + "bodySize": 420, + "content": { + "mimeType": "application/json; charset=UTF-8", + "size": 420, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"Adrian.ivascu@cososys.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"Adrian.ivascu@cososys.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" + }, + "cookies": [ + { + "httpOnly": true, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + }, + { + "expires": "1970-01-01T00:00:01.000Z", + "httpOnly": true, + "maxAge": 0, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + } + ], + "headers": [ + { + "name": "server", + "value": "nginx" + }, + { + "name": "date", + "value": "Mon, 05 Aug 2024 22:59:34 GMT" + }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, + { + "name": "connection", + "value": "close" + }, + { + "name": "vary", + "value": "Accept-Encoding" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "name": "expires", + "value": "Thu, 19 Nov 1981 08:52:00 GMT" + }, + { + "name": "cache-control", + "value": "no-store, no-cache, must-revalidate" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-security-policy", + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-L+Y7AH1q2DWSyGR406DkKmTq' blob: http://*.3gl.net; style-src 'self' 'nonce-L+Y7AH1q2DWSyGR406DkKmTq'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" + }, + { + "name": "x-frame-options", + "value": "DENY, DENY" + }, + { + "name": "x-xss-protection", + "value": "1; mode=block" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains" + } + ], + "headersSize": 1481, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2024-08-05T22:59:32.840Z", + "time": 1588, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 1588 + } + }, + { + "_id": "304ec1ae04a11df4390509f05dffc0e8", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 44, + "cookies": [], + "headers": [ + { + "_fromType": "array", + "name": "content-type", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "accept", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "content-length", + "value": "44" + }, + { + "_fromType": "array", + "name": "user-agent", + "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" + }, + { + "_fromType": "array", + "name": "accept-encoding", + "value": "gzip,deflate" + }, + { + "name": "host", + "value": "alliances.eu.goskope.com" + } + ], + "headersSize": 321, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/json", + "params": [], + "text": "{\"token\":\"[REDACTED]\"}" + }, + "queryString": [ + { + "name": "email", + "value": "aarguelles@lumu.io" + }, + { + "name": "configtype", + "value": "agent" + } + ], + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=aarguelles%40lumu.io&configtype=agent" + }, + "response": { + "bodySize": 501, + "content": { + "mimeType": "application/json; charset=UTF-8", + "size": 501, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"aarguelles@lumu.io\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"aarguelles@lumu.io\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" + }, + "cookies": [ + { + "httpOnly": true, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + }, + { + "expires": "1970-01-01T00:00:01.000Z", + "httpOnly": true, + "maxAge": 0, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + } + ], + "headers": [ + { + "name": "server", + "value": "nginx" + }, + { + "name": "date", + "value": "Mon, 05 Aug 2024 22:59:36 GMT" + }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, + { + "name": "content-length", + "value": "501" + }, + { + "name": "connection", + "value": "close" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "name": "expires", + "value": "Thu, 19 Nov 1981 08:52:00 GMT" + }, + { + "name": "cache-control", + "value": "no-store, no-cache, must-revalidate" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-security-policy", + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-FJ7z8+T1nr5Gs0L4ytNC0Hii' blob: http://*.3gl.net; style-src 'self' 'nonce-FJ7z8+T1nr5Gs0L4ytNC0Hii'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" + }, + { + "name": "x-frame-options", + "value": "DENY, DENY" + }, + { + "name": "x-xss-protection", + "value": "1; mode=block" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains" + } + ], + "headersSize": 1427, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2024-08-05T22:59:34.435Z", + "time": 1591, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 1591 + } + }, + { + "_id": "d1a737c6422462002fb314be76b47c65", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 44, + "cookies": [], + "headers": [ + { + "_fromType": "array", + "name": "content-type", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "accept", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "content-length", + "value": "44" + }, + { + "_fromType": "array", + "name": "user-agent", + "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" + }, + { + "_fromType": "array", + "name": "accept-encoding", + "value": "gzip,deflate" + }, + { + "name": "host", + "value": "alliances.eu.goskope.com" + } + ], + "headersSize": 324, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/json", + "params": [], + "text": "{\"token\":\"[REDACTED]\"}" + }, + "queryString": [ + { + "name": "email", + "value": "rnejem@infinipoint.io" + }, + { + "name": "configtype", + "value": "agent" + } + ], + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=rnejem%40infinipoint.io&configtype=agent" + }, + "response": { + "bodySize": 507, + "content": { + "mimeType": "application/json; charset=UTF-8", + "size": 507, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"rnejem@infinipoint.io\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"rnejem@infinipoint.io\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" + }, + "cookies": [ + { + "httpOnly": true, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + }, + { + "expires": "1970-01-01T00:00:01.000Z", + "httpOnly": true, + "maxAge": 0, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + } + ], + "headers": [ + { + "name": "server", + "value": "nginx" + }, + { + "name": "date", + "value": "Mon, 05 Aug 2024 22:59:36 GMT" + }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, + { + "name": "content-length", + "value": "507" + }, + { + "name": "connection", + "value": "close" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "name": "expires", + "value": "Thu, 19 Nov 1981 08:52:00 GMT" + }, + { + "name": "cache-control", + "value": "no-store, no-cache, must-revalidate" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-security-policy", + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-vFujuxT2VPQYOK48tAfwqHZA' blob: http://*.3gl.net; style-src 'self' 'nonce-vFujuxT2VPQYOK48tAfwqHZA'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" + }, + { + "name": "x-frame-options", + "value": "DENY, DENY" + }, + { + "name": "x-xss-protection", + "value": "1; mode=block" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains" + } + ], + "headersSize": 1429, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2024-08-05T22:59:36.033Z", + "time": 612, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 612 + } + }, + { + "_id": "fc7876d260367ef136369c6e6766680b", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 44, + "cookies": [], + "headers": [ + { + "_fromType": "array", + "name": "content-type", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "accept", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "content-length", + "value": "44" + }, + { + "_fromType": "array", + "name": "user-agent", + "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" + }, + { + "_fromType": "array", + "name": "accept-encoding", + "value": "gzip,deflate" + }, + { + "name": "host", + "value": "alliances.eu.goskope.com" + } + ], + "headersSize": 327, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/json", + "params": [], + "text": "{\"token\":\"[REDACTED]\"}" + }, + "queryString": [ + { + "name": "email", + "value": "iulia.stoica@cososys.com" + }, + { + "name": "configtype", + "value": "agent" + } + ], + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=iulia.stoica%40cososys.com&configtype=agent" + }, + "response": { + "bodySize": 420, + "content": { + "mimeType": "application/json; charset=UTF-8", + "size": 420, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"iulia.stoica@cososys.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"iulia.stoica@cososys.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" + }, + "cookies": [ + { + "httpOnly": true, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + }, + { + "expires": "1970-01-01T00:00:01.000Z", + "httpOnly": true, + "maxAge": 0, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + } + ], + "headers": [ + { + "name": "server", + "value": "nginx" + }, + { + "name": "date", + "value": "Mon, 05 Aug 2024 22:59:38 GMT" + }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, + { + "name": "connection", + "value": "close" + }, + { + "name": "vary", + "value": "Accept-Encoding" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "name": "expires", + "value": "Thu, 19 Nov 1981 08:52:00 GMT" + }, + { + "name": "cache-control", + "value": "no-store, no-cache, must-revalidate" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-security-policy", + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-WGPMb4SQpsCWAygrWTHKidIP' blob: http://*.3gl.net; style-src 'self' 'nonce-WGPMb4SQpsCWAygrWTHKidIP'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" + }, + { + "name": "x-frame-options", + "value": "DENY, DENY" + }, + { + "name": "x-xss-protection", + "value": "1; mode=block" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains" + } + ], + "headersSize": 1481, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2024-08-05T22:59:36.651Z", + "time": 1627, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 1627 + } + }, + { + "_id": "7f9c073f266e9281133a18da16b014e4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 44, + "cookies": [], + "headers": [ + { + "_fromType": "array", + "name": "content-type", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "accept", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "content-length", + "value": "44" + }, + { + "_fromType": "array", + "name": "user-agent", + "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" + }, + { + "_fromType": "array", + "name": "accept-encoding", + "value": "gzip,deflate" + }, + { + "name": "host", + "value": "alliances.eu.goskope.com" + } + ], + "headersSize": 332, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/json", + "params": [], + "text": "{\"token\":\"[REDACTED]\"}" + }, + "queryString": [ + { + "name": "email", + "value": "evgeni.peryshkin@riverbed.com" + }, + { + "name": "configtype", + "value": "agent" + } + ], + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=evgeni.peryshkin%40riverbed.com&configtype=agent" + }, + "response": { + "bodySize": 424, + "content": { + "mimeType": "application/json; charset=UTF-8", + "size": 424, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"evgeni.peryshkin@riverbed.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"evgeni.peryshkin@riverbed.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" + }, + "cookies": [ + { + "httpOnly": true, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + }, + { + "expires": "1970-01-01T00:00:01.000Z", + "httpOnly": true, + "maxAge": 0, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + } + ], + "headers": [ + { + "name": "server", + "value": "nginx" + }, + { + "name": "date", + "value": "Mon, 05 Aug 2024 22:59:40 GMT" + }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, + { + "name": "connection", + "value": "close" + }, + { + "name": "vary", + "value": "Accept-Encoding" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "name": "expires", + "value": "Thu, 19 Nov 1981 08:52:00 GMT" + }, + { + "name": "cache-control", + "value": "no-store, no-cache, must-revalidate" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-security-policy", + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-G0NYvJdYg8K4u3o/LmzdzQsA' blob: http://*.3gl.net; style-src 'self' 'nonce-G0NYvJdYg8K4u3o/LmzdzQsA'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" + }, + { + "name": "x-frame-options", + "value": "DENY, DENY" + }, + { + "name": "x-xss-protection", + "value": "1; mode=block" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains" + } + ], + "headersSize": 1483, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2024-08-05T22:59:38.283Z", + "time": 1612, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 1612 + } + }, + { + "_id": "5eb5f18beb5222f367e610d4a6e69dc3", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 44, + "cookies": [], + "headers": [ + { + "_fromType": "array", + "name": "content-type", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "accept", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "content-length", + "value": "44" + }, + { + "_fromType": "array", + "name": "user-agent", + "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" + }, + { + "_fromType": "array", + "name": "accept-encoding", + "value": "gzip,deflate" + }, + { + "name": "host", + "value": "alliances.eu.goskope.com" + } + ], + "headersSize": 321, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/json", + "params": [], + "text": "{\"token\":\"[REDACTED]\"}" + }, + "queryString": [ + { + "name": "email", + "value": "osala@riverbed.com" + }, + { + "name": "configtype", + "value": "agent" + } + ], + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=osala%40riverbed.com&configtype=agent" + }, + "response": { + "bodySize": 501, + "content": { + "mimeType": "application/json; charset=UTF-8", + "size": 501, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"osala@riverbed.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"osala@riverbed.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" + }, + "cookies": [ + { + "httpOnly": true, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + }, + { + "expires": "1970-01-01T00:00:01.000Z", + "httpOnly": true, + "maxAge": 0, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + } + ], + "headers": [ + { + "name": "server", + "value": "nginx" + }, + { + "name": "date", + "value": "Mon, 05 Aug 2024 22:59:40 GMT" + }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, + { + "name": "content-length", + "value": "501" + }, + { + "name": "connection", + "value": "close" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "name": "expires", + "value": "Thu, 19 Nov 1981 08:52:00 GMT" + }, + { + "name": "cache-control", + "value": "no-store, no-cache, must-revalidate" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-security-policy", + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-fEixSJ38G0EgO5ZSzL4uueLs' blob: http://*.3gl.net; style-src 'self' 'nonce-fEixSJ38G0EgO5ZSzL4uueLs'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" + }, + { + "name": "x-frame-options", + "value": "DENY, DENY" + }, + { + "name": "x-xss-protection", + "value": "1; mode=block" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains" + } + ], + "headersSize": 1429, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2024-08-05T22:59:39.899Z", + "time": 584, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 584 + } + }, + { + "_id": "82720c6deafef69f13847a34ee984a1c", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 44, + "cookies": [], + "headers": [ + { + "_fromType": "array", + "name": "content-type", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "accept", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "content-length", + "value": "44" + }, + { + "_fromType": "array", + "name": "user-agent", + "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" + }, + { + "_fromType": "array", + "name": "accept-encoding", + "value": "gzip,deflate" + }, + { + "name": "host", + "value": "alliances.eu.goskope.com" + } + ], + "headersSize": 330, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/json", + "params": [], + "text": "{\"token\":\"[REDACTED]\"}" + }, + "queryString": [ + { + "name": "email", + "value": "deep.raval@crestdatasys.com" + }, + { + "name": "configtype", + "value": "agent" + } + ], + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=deep.raval%40crestdatasys.com&configtype=agent" + }, + "response": { + "bodySize": 420, + "content": { + "mimeType": "application/json; charset=UTF-8", + "size": 420, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"deep.raval@crestdatasys.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"deep.raval@crestdatasys.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" + }, + "cookies": [ + { + "httpOnly": true, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + }, + { + "expires": "1970-01-01T00:00:01.000Z", + "httpOnly": true, + "maxAge": 0, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + } + ], + "headers": [ + { + "name": "server", + "value": "nginx" + }, + { + "name": "date", + "value": "Mon, 05 Aug 2024 22:59:41 GMT" + }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, + { + "name": "connection", + "value": "close" + }, + { + "name": "vary", + "value": "Accept-Encoding" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "name": "expires", + "value": "Thu, 19 Nov 1981 08:52:00 GMT" + }, + { + "name": "cache-control", + "value": "no-store, no-cache, must-revalidate" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-security-policy", + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-4sDn2mA2TiqLsu6RE3ojAetm' blob: http://*.3gl.net; style-src 'self' 'nonce-4sDn2mA2TiqLsu6RE3ojAetm'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" + }, + { + "name": "x-frame-options", + "value": "DENY, DENY" + }, + { + "name": "x-xss-protection", + "value": "1; mode=block" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains" + } + ], + "headersSize": 1481, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2024-08-05T22:59:40.487Z", + "time": 582, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 582 + } + }, + { + "_id": "a18b742911fee507259efe35cbe507cd", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 44, + "cookies": [], + "headers": [ + { + "_fromType": "array", + "name": "content-type", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "accept", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "content-length", + "value": "44" + }, + { + "_fromType": "array", + "name": "user-agent", + "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" + }, + { + "_fromType": "array", + "name": "accept-encoding", + "value": "gzip,deflate" + }, + { + "name": "host", + "value": "alliances.eu.goskope.com" + } + ], + "headersSize": 318, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/json", + "params": [], + "text": "{\"token\":\"[REDACTED]\"}" + }, + "queryString": [ + { + "name": "email", + "value": "alan.a@miro.com" + }, + { + "name": "configtype", + "value": "agent" + } + ], + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=alan.a%40miro.com&configtype=agent" + }, + "response": { + "bodySize": 495, + "content": { + "mimeType": "application/json; charset=UTF-8", + "size": 495, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"alan.a@miro.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"alan.a@miro.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" + }, + "cookies": [ + { + "httpOnly": true, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + }, + { + "expires": "1970-01-01T00:00:01.000Z", + "httpOnly": true, + "maxAge": 0, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + } + ], + "headers": [ + { + "name": "server", + "value": "nginx" + }, + { + "name": "date", + "value": "Mon, 05 Aug 2024 22:59:42 GMT" + }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, + { + "name": "content-length", + "value": "495" + }, + { + "name": "connection", + "value": "close" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "name": "expires", + "value": "Thu, 19 Nov 1981 08:52:00 GMT" + }, + { + "name": "cache-control", + "value": "no-store, no-cache, must-revalidate" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-security-policy", + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-OWv05QTHCgqtBWJE4cC+SADu' blob: http://*.3gl.net; style-src 'self' 'nonce-OWv05QTHCgqtBWJE4cC+SADu'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" + }, + { + "name": "x-frame-options", + "value": "DENY, DENY" + }, + { + "name": "x-xss-protection", + "value": "1; mode=block" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains" + } + ], + "headersSize": 1427, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2024-08-05T22:59:41.075Z", + "time": 1588, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 1588 + } + }, + { + "_id": "dcf7a73893be4e4ec111677ca0015a3a", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 44, + "cookies": [], + "headers": [ + { + "_fromType": "array", + "name": "content-type", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "accept", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "content-length", + "value": "44" + }, + { + "_fromType": "array", + "name": "user-agent", + "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" + }, + { + "_fromType": "array", + "name": "accept-encoding", + "value": "gzip,deflate" + }, + { + "name": "host", + "value": "alliances.eu.goskope.com" + } + ], + "headersSize": 328, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/json", + "params": [], + "text": "{\"token\":\"[REDACTED]\"}" + }, + "queryString": [ + { + "name": "email", + "value": "emiliano.nabarro@miro.com" + }, + { + "name": "configtype", + "value": "agent" + } + ], + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=emiliano.nabarro%40miro.com&configtype=agent" + }, + "response": { + "bodySize": 420, + "content": { + "mimeType": "application/json; charset=UTF-8", + "size": 420, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"emiliano.nabarro@miro.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"emiliano.nabarro@miro.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" + }, + "cookies": [ + { + "httpOnly": true, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + }, + { + "expires": "1970-01-01T00:00:01.000Z", + "httpOnly": true, + "maxAge": 0, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + } + ], + "headers": [ + { + "name": "server", + "value": "nginx" + }, + { + "name": "date", + "value": "Mon, 05 Aug 2024 22:59:43 GMT" + }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, + { + "name": "connection", + "value": "close" + }, + { + "name": "vary", + "value": "Accept-Encoding" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "name": "expires", + "value": "Thu, 19 Nov 1981 08:52:00 GMT" + }, + { + "name": "cache-control", + "value": "no-store, no-cache, must-revalidate" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-security-policy", + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-OXkcgiZaSTal0y+fJVELu0x6' blob: http://*.3gl.net; style-src 'self' 'nonce-OXkcgiZaSTal0y+fJVELu0x6'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" + }, + { + "name": "x-frame-options", + "value": "DENY, DENY" + }, + { + "name": "x-xss-protection", + "value": "1; mode=block" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains" + } + ], + "headersSize": 1483, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2024-08-05T22:59:42.668Z", + "time": 606, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 606 + } + }, + { + "_id": "39bfd8154c7cad1cc30f4001addb61f4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 44, + "cookies": [], + "headers": [ + { + "_fromType": "array", + "name": "content-type", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "accept", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "content-length", + "value": "44" + }, + { + "_fromType": "array", + "name": "user-agent", + "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" + }, + { + "_fromType": "array", + "name": "accept-encoding", + "value": "gzip,deflate" + }, + { + "name": "host", + "value": "alliances.eu.goskope.com" + } + ], + "headersSize": 328, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/json", + "params": [], + "text": "{\"token\":\"[REDACTED]\"}" + }, + "queryString": [ + { + "name": "email", + "value": "mikhail.kaduchka@miro.com" + }, + { + "name": "configtype", + "value": "agent" + } + ], + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=mikhail.kaduchka%40miro.com&configtype=agent" + }, + "response": { + "bodySize": 420, + "content": { + "mimeType": "application/json; charset=UTF-8", + "size": 420, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"mikhail.kaduchka@miro.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"mikhail.kaduchka@miro.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" + }, + "cookies": [ + { + "httpOnly": true, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + }, + { + "expires": "1970-01-01T00:00:01.000Z", + "httpOnly": true, + "maxAge": 0, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + } + ], + "headers": [ + { + "name": "server", + "value": "nginx" + }, + { + "name": "date", + "value": "Mon, 05 Aug 2024 22:59:44 GMT" + }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, + { + "name": "connection", + "value": "close" + }, + { + "name": "vary", + "value": "Accept-Encoding" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "name": "expires", + "value": "Thu, 19 Nov 1981 08:52:00 GMT" + }, + { + "name": "cache-control", + "value": "no-store, no-cache, must-revalidate" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-security-policy", + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-lbo+qeV4Mw7myqhvGokYGxNd' blob: http://*.3gl.net; style-src 'self' 'nonce-lbo+qeV4Mw7myqhvGokYGxNd'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" + }, + { + "name": "x-frame-options", + "value": "DENY, DENY" + }, + { + "name": "x-xss-protection", + "value": "1; mode=block" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains" + } + ], + "headersSize": 1483, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2024-08-05T22:59:43.278Z", + "time": 572, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 572 + } + }, + { + "_id": "6472cf97aab3f5ae8c5a2606bd6ace5c", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 44, + "cookies": [], + "headers": [ + { + "_fromType": "array", + "name": "content-type", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "accept", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "content-length", + "value": "44" + }, + { + "_fromType": "array", + "name": "user-agent", + "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" + }, + { + "_fromType": "array", + "name": "accept-encoding", + "value": "gzip,deflate" + }, + { + "name": "host", + "value": "alliances.eu.goskope.com" + } + ], + "headersSize": 330, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/json", + "params": [], + "text": "{\"token\":\"[REDACTED]\"}" + }, + "queryString": [ + { + "name": "email", + "value": "brian.brasseur@riverbed.com" + }, + { + "name": "configtype", + "value": "agent" + } + ], + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=brian.brasseur%40riverbed.com&configtype=agent" + }, + "response": { + "bodySize": 420, + "content": { + "mimeType": "application/json; charset=UTF-8", + "size": 420, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"brian.brasseur@riverbed.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"brian.brasseur@riverbed.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" + }, + "cookies": [ + { + "httpOnly": true, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + }, + { + "expires": "1970-01-01T00:00:01.000Z", + "httpOnly": true, + "maxAge": 0, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + } + ], + "headers": [ + { + "name": "server", + "value": "nginx" + }, + { + "name": "date", + "value": "Mon, 05 Aug 2024 22:59:45 GMT" + }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, + { + "name": "connection", + "value": "close" + }, + { + "name": "vary", + "value": "Accept-Encoding" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "name": "expires", + "value": "Thu, 19 Nov 1981 08:52:00 GMT" + }, + { + "name": "cache-control", + "value": "no-store, no-cache, must-revalidate" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-security-policy", + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-gcOaNybJ5Upgmgj0XW2lxGmt' blob: http://*.3gl.net; style-src 'self' 'nonce-gcOaNybJ5Upgmgj0XW2lxGmt'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" + }, + { + "name": "x-frame-options", + "value": "DENY, DENY" + }, + { + "name": "x-xss-protection", + "value": "1; mode=block" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains" + } + ], + "headersSize": 1483, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2024-08-05T22:59:43.854Z", + "time": 1609, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 1609 + } + }, + { + "_id": "5279a71c4fb4180fa6f38fc2b5b4282c", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 44, + "cookies": [], + "headers": [ + { + "_fromType": "array", + "name": "content-type", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "accept", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "content-length", + "value": "44" + }, + { + "_fromType": "array", + "name": "user-agent", + "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" + }, + { + "_fromType": "array", + "name": "accept-encoding", + "value": "gzip,deflate" + }, + { + "name": "host", + "value": "alliances.eu.goskope.com" + } + ], + "headersSize": 324, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/json", + "params": [], + "text": "{\"token\":\"[REDACTED]\"}" + }, + "queryString": [ + { + "name": "email", + "value": "alevin@infinipoint.io" + }, + { + "name": "configtype", + "value": "agent" + } + ], + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=alevin%40infinipoint.io&configtype=agent" + }, + "response": { + "bodySize": 507, + "content": { + "mimeType": "application/json; charset=UTF-8", + "size": 507, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"alevin@infinipoint.io\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"alevin@infinipoint.io\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" + }, + "cookies": [ + { + "httpOnly": true, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + }, + { + "expires": "1970-01-01T00:00:01.000Z", + "httpOnly": true, + "maxAge": 0, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + } + ], + "headers": [ + { + "name": "server", + "value": "nginx" + }, + { + "name": "date", + "value": "Mon, 05 Aug 2024 22:59:47 GMT" + }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, + { + "name": "content-length", + "value": "507" + }, + { + "name": "connection", + "value": "close" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "name": "expires", + "value": "Thu, 19 Nov 1981 08:52:00 GMT" + }, + { + "name": "cache-control", + "value": "no-store, no-cache, must-revalidate" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-security-policy", + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-vvxaX75oV4GEk9pyuCTnFBVD' blob: http://*.3gl.net; style-src 'self' 'nonce-vvxaX75oV4GEk9pyuCTnFBVD'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" + }, + { + "name": "x-frame-options", + "value": "DENY, DENY" + }, + { + "name": "x-xss-protection", + "value": "1; mode=block" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains" + } + ], + "headersSize": 1431, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2024-08-05T22:59:45.468Z", + "time": 1579, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 1579 + } + }, + { + "_id": "18a7d6aae428ac62a8f1216e7020d917", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 44, + "cookies": [], + "headers": [ + { + "_fromType": "array", + "name": "content-type", + "value": "application/json" + }, { "_fromType": "array", + "name": "accept", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "content-length", + "value": "44" + }, + { + "_fromType": "array", + "name": "user-agent", + "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" + }, + { + "_fromType": "array", + "name": "accept-encoding", + "value": "gzip,deflate" + }, + { + "name": "host", + "value": "alliances.eu.goskope.com" + } + ], + "headersSize": 327, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/json", + "params": [], + "text": "{\"token\":\"[REDACTED]\"}" + }, + "queryString": [ + { + "name": "email", + "value": "yogesh.lele@riverbed.com" + }, + { + "name": "configtype", + "value": "agent" + } + ], + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=yogesh.lele%40riverbed.com&configtype=agent" + }, + "response": { + "bodySize": 420, + "content": { + "mimeType": "application/json; charset=UTF-8", + "size": 420, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"yogesh.lele@riverbed.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"yogesh.lele@riverbed.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" + }, + "cookies": [ + { + "httpOnly": true, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + }, + { + "expires": "1970-01-01T00:00:01.000Z", + "httpOnly": true, + "maxAge": 0, + "name": "ci_session", + "path": "/", + "secure": true, + "value": "[REDACTED]" + } + ], + "headers": [ + { + "name": "server", + "value": "nginx" + }, + { + "name": "date", + "value": "Mon, 05 Aug 2024 22:59:48 GMT" + }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, + { "name": "connection", "value": "close" }, + { + "name": "vary", + "value": "Accept-Encoding" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "_fromType": "array", + "name": "set-cookie", + "value": "[REDACTED]" + }, + { + "name": "expires", + "value": "Thu, 19 Nov 1981 08:52:00 GMT" + }, + { + "name": "cache-control", + "value": "no-store, no-cache, must-revalidate" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-security-policy", + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-M3pjENjRNYUhqIWsaB3897ev' blob: http://*.3gl.net; style-src 'self' 'nonce-M3pjENjRNYUhqIWsaB3897ev'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" + }, + { + "name": "x-frame-options", + "value": "DENY, DENY" + }, + { + "name": "x-xss-protection", + "value": "1; mode=block" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains" + } + ], + "headersSize": 1485, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2024-08-05T22:59:47.050Z", + "time": 1597, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 1597 + } + }, + { + "_id": "4702686c707937a3b9dce76c0180415b", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 44, + "cookies": [], + "headers": [ + { + "_fromType": "array", + "name": "content-type", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "accept", + "value": "application/json" + }, + { + "_fromType": "array", + "name": "content-length", + "value": "44" + }, + { + "_fromType": "array", + "name": "user-agent", + "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" + }, + { + "_fromType": "array", + "name": "accept-encoding", + "value": "gzip,deflate" + }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 323, + "headersSize": 336, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -3541,21 +7316,21 @@ "queryString": [ { "name": "email", - "value": "jadrian@netskope.com" + "value": "alexd6921@alexd6921.asanatest1.us" }, { "name": "configtype", "value": "agent" } ], - "url": "https://alliances.goskope.com/api/v1/userconfig?email=jadrian%40netskope.com&configtype=agent" + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=alexd6921%40alexd6921.asanatest1.us&configtype=agent" }, "response": { - "bodySize": 443, + "bodySize": 428, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 443, - "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"jadrian@netskope.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"Netskope\",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"jadrian@netskope.com\",\"UserKey\":\"[REDACTED]\"}}}" + "size": 428, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"alexd6921@alexd6921.asanatest1.us\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"alexd6921@alexd6921.asanatest1.us\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" }, "cookies": [ { @@ -3582,16 +7357,12 @@ }, { "name": "date", - "value": "Fri, 06 May 2022 14:26:31 GMT" + "value": "Mon, 05 Aug 2024 22:59:49 GMT" }, { "name": "content-type", "value": "application/json; charset=UTF-8" }, - { - "name": "content-length", - "value": "443" - }, { "name": "connection", "value": "close" @@ -3624,7 +7395,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-boDgNKziskfLcnDSUQr4Mvlp' blob: http://*.3gl.net; style-src 'self' 'nonce-boDgNKziskfLcnDSUQr4Mvlp'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -3643,14 +7414,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 998, + "headersSize": 1483, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-06T14:26:31.002Z", - "time": 659, + "startedDateTime": "2024-08-05T22:59:48.651Z", + "time": 766, "timings": { "blocked": -1, "connect": -1, @@ -3658,11 +7429,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 659 + "wait": 766 } }, { - "_id": "da20535171a58e31cceeb189776cd3b6", + "_id": "12944e57db42b7b04127fd1a477cb7b8", "_order": 0, "cache": {}, "request": { @@ -3677,7 +7448,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -3694,17 +7465,12 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 331, + "headersSize": 321, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -3715,21 +7481,21 @@ "queryString": [ { "name": "email", - "value": "harsh.nasit@crestdatasys.com" + "value": "ylele@riverbed.com" }, { "name": "configtype", "value": "agent" } ], - "url": "https://alliances.goskope.com/api/v1/userconfig?email=harsh.nasit%40crestdatasys.com&configtype=agent" + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=ylele%40riverbed.com&configtype=agent" }, "response": { - "bodySize": 459, + "bodySize": 501, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 459, - "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"harsh.nasit@crestdatasys.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"Netskope\",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"harsh.nasit@crestdatasys.com\",\"UserKey\":\"[REDACTED]\"}}}" + "size": 501, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"ylele@riverbed.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"ylele@riverbed.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" }, "cookies": [ { @@ -3756,7 +7522,7 @@ }, { "name": "date", - "value": "Fri, 06 May 2022 14:26:31 GMT" + "value": "Mon, 05 Aug 2024 22:59:50 GMT" }, { "name": "content-type", @@ -3764,16 +7530,12 @@ }, { "name": "content-length", - "value": "459" + "value": "501" }, { "name": "connection", "value": "close" }, - { - "name": "vary", - "value": "Accept-Encoding" - }, { "_fromType": "array", "name": "set-cookie", @@ -3798,7 +7560,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-8o94xclsZGat4AnifQiWRLx1' blob: http://*.3gl.net; style-src 'self' 'nonce-8o94xclsZGat4AnifQiWRLx1'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -3817,14 +7579,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 998, + "headersSize": 1427, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-06T14:26:31.666Z", - "time": 679, + "startedDateTime": "2024-08-05T22:59:49.423Z", + "time": 603, "timings": { "blocked": -1, "connect": -1, @@ -3832,11 +7594,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 679 + "wait": 603 } }, { - "_id": "c9bcc62c67962bc4488fd42e5d0f5cb2", + "_id": "b5c4c45f2042d931d09d2bc4354cf9ad", "_order": 0, "cache": {}, "request": { @@ -3851,7 +7613,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -3868,17 +7630,12 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 328, + "headersSize": 326, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -3889,21 +7646,21 @@ "queryString": [ { "name": "email", - "value": "Karim.Saadah@riverbed.com" + "value": "aguedesrocha@vmware.com" }, { "name": "configtype", "value": "agent" } ], - "url": "https://alliances.goskope.com/api/v1/userconfig?email=Karim.Saadah%40riverbed.com&configtype=agent" + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=aguedesrocha%40vmware.com&configtype=agent" }, "response": { - "bodySize": 100, + "bodySize": 511, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 100, - "text": "{\"status\":\"error\",\"errorCode\":\"General Error\",\"errors\":[\"Error Processing Request\"],\"warnings\":[\"\"]}" + "size": 511, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"aguedesrocha@vmware.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"aguedesrocha@vmware.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" }, "cookies": [ { @@ -3930,7 +7687,7 @@ }, { "name": "date", - "value": "Fri, 06 May 2022 14:26:32 GMT" + "value": "Mon, 05 Aug 2024 22:59:50 GMT" }, { "name": "content-type", @@ -3938,7 +7695,7 @@ }, { "name": "content-length", - "value": "100" + "value": "511" }, { "name": "connection", @@ -3968,7 +7725,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-eQpbf/AViKJweqvK+SfE2h6a' blob: http://*.3gl.net; style-src 'self' 'nonce-eQpbf/AViKJweqvK+SfE2h6a'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -3987,14 +7744,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 975, + "headersSize": 1427, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-06T14:26:32.349Z", - "time": 668, + "startedDateTime": "2024-08-05T22:59:50.029Z", + "time": 587, "timings": { "blocked": -1, "connect": -1, @@ -4002,11 +7759,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 668 + "wait": 587 } }, { - "_id": "6b7adeb4d27484da3b29ac9aeb197411", + "_id": "0b4b3db60db7feed459de61e11d66285", "_order": 0, "cache": {}, "request": { @@ -4021,7 +7778,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -4038,17 +7795,12 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 325, + "headersSize": 322, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -4059,21 +7811,21 @@ "queryString": [ { "name": "email", - "value": "ababaoglu@riverbed.com" + "value": "alanusse@vmware.com" }, { "name": "configtype", "value": "agent" } ], - "url": "https://alliances.goskope.com/api/v1/userconfig?email=ababaoglu%40riverbed.com&configtype=agent" + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=alanusse%40vmware.com&configtype=agent" }, "response": { - "bodySize": 447, + "bodySize": 503, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 447, - "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"ababaoglu@riverbed.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"Netskope\",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"ababaoglu@riverbed.com\",\"UserKey\":\"[REDACTED]\"}}}" + "size": 503, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"alanusse@vmware.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"alanusse@vmware.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" }, "cookies": [ { @@ -4100,7 +7852,7 @@ }, { "name": "date", - "value": "Fri, 06 May 2022 14:26:33 GMT" + "value": "Mon, 05 Aug 2024 22:59:51 GMT" }, { "name": "content-type", @@ -4108,16 +7860,12 @@ }, { "name": "content-length", - "value": "447" + "value": "503" }, { "name": "connection", "value": "close" }, - { - "name": "vary", - "value": "Accept-Encoding" - }, { "_fromType": "array", "name": "set-cookie", @@ -4142,7 +7890,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-zc5UevBhAfNSPLUFhqbNPLeC' blob: http://*.3gl.net; style-src 'self' 'nonce-zc5UevBhAfNSPLUFhqbNPLeC'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -4161,14 +7909,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 1002, + "headersSize": 1429, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-06T14:26:33.020Z", - "time": 731, + "startedDateTime": "2024-08-05T22:59:50.622Z", + "time": 577, "timings": { "blocked": -1, "connect": -1, @@ -4176,11 +7924,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 731 + "wait": 577 } }, { - "_id": "02d5e37c7e5e5e394a67087abfdbd214", + "_id": "93f2c1ae251942aa82bc0b9a90ffc65b", "_order": 0, "cache": {}, "request": { @@ -4195,7 +7943,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -4212,17 +7960,12 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 333, + "headersSize": 322, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -4233,21 +7976,21 @@ "queryString": [ { "name": "email", - "value": "eduardo.xavier@crowdstrike.com" + "value": "kcakebread@vera.com" }, { "name": "configtype", "value": "agent" } ], - "url": "https://alliances.goskope.com/api/v1/userconfig?email=eduardo.xavier%40crowdstrike.com&configtype=agent" + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=kcakebread%40vera.com&configtype=agent" }, "response": { - "bodySize": 100, + "bodySize": 503, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 100, - "text": "{\"status\":\"error\",\"errorCode\":\"General Error\",\"errors\":[\"Error Processing Request\"],\"warnings\":[\"\"]}" + "size": 503, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"kcakebread@vera.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"kcakebread@vera.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" }, "cookies": [ { @@ -4274,7 +8017,7 @@ }, { "name": "date", - "value": "Fri, 06 May 2022 14:26:34 GMT" + "value": "Mon, 05 Aug 2024 22:59:52 GMT" }, { "name": "content-type", @@ -4282,7 +8025,7 @@ }, { "name": "content-length", - "value": "100" + "value": "503" }, { "name": "connection", @@ -4312,7 +8055,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-Wn+zlIYPpPcF3CrlxUUFjHSa' blob: http://*.3gl.net; style-src 'self' 'nonce-Wn+zlIYPpPcF3CrlxUUFjHSa'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -4331,14 +8074,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 975, + "headersSize": 1429, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-06T14:26:33.756Z", - "time": 1488, + "startedDateTime": "2024-08-05T22:59:51.202Z", + "time": 799, "timings": { "blocked": -1, "connect": -1, @@ -4346,11 +8089,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1488 + "wait": 799 } }, { - "_id": "d2fa517fda5d47f1e74f57a0f6b20a35", + "_id": "4efd6bcaaa8b7c84f5ebdfda17528de0", "_order": 0, "cache": {}, "request": { @@ -4365,7 +8108,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -4382,17 +8125,12 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 328, + "headersSize": 323, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -4403,21 +8141,21 @@ "queryString": [ { "name": "email", - "value": "crowdstrike@netskope.tech" + "value": "saurabh@netskope.com" }, { "name": "configtype", "value": "agent" } ], - "url": "https://alliances.goskope.com/api/v1/userconfig?email=crowdstrike%40netskope.tech&configtype=agent" + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=saurabh%40netskope.com&configtype=agent" }, "response": { - "bodySize": 100, + "bodySize": 505, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 100, - "text": "{\"status\":\"error\",\"errorCode\":\"General Error\",\"errors\":[\"Error Processing Request\"],\"warnings\":[\"\"]}" + "size": 505, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"saurabh@netskope.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"saurabh@netskope.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" }, "cookies": [ { @@ -4444,7 +8182,7 @@ }, { "name": "date", - "value": "Fri, 06 May 2022 14:26:36 GMT" + "value": "Mon, 05 Aug 2024 22:59:52 GMT" }, { "name": "content-type", @@ -4452,7 +8190,7 @@ }, { "name": "content-length", - "value": "100" + "value": "505" }, { "name": "connection", @@ -4482,7 +8220,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-gXMjOXpOjNejLA1yOJpzOeVG' blob: http://*.3gl.net; style-src 'self' 'nonce-gXMjOXpOjNejLA1yOJpzOeVG'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -4501,14 +8239,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 975, + "headersSize": 1427, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-06T14:26:35.247Z", - "time": 1482, + "startedDateTime": "2024-08-05T22:59:52.005Z", + "time": 589, "timings": { "blocked": -1, "connect": -1, @@ -4516,11 +8254,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1482 + "wait": 589 } }, { - "_id": "38e9371d59b66f965e61522351496322", + "_id": "39e9d0c144668216a32dd9c01246cbe5", "_order": 0, "cache": {}, "request": { @@ -4535,7 +8273,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -4552,17 +8290,12 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 325, + "headersSize": 319, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -4573,21 +8306,21 @@ "queryString": [ { "name": "email", - "value": "daniel@hippocrypto.net" + "value": "bob@netskope.com" }, { "name": "configtype", "value": "agent" } ], - "url": "https://alliances.goskope.com/api/v1/userconfig?email=daniel%40hippocrypto.net&configtype=agent" + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=bob%40netskope.com&configtype=agent" }, "response": { - "bodySize": 447, + "bodySize": 497, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 447, - "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"daniel@hippocrypto.net\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"Netskope\",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"daniel@hippocrypto.net\",\"UserKey\":\"[REDACTED]\"}}}" + "size": 497, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"bob@netskope.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"bob@netskope.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" }, "cookies": [ { @@ -4614,7 +8347,7 @@ }, { "name": "date", - "value": "Wed, 18 May 2022 07:16:52 GMT" + "value": "Mon, 05 Aug 2024 22:59:53 GMT" }, { "name": "content-type", @@ -4622,16 +8355,12 @@ }, { "name": "content-length", - "value": "447" + "value": "497" }, { "name": "connection", "value": "close" }, - { - "name": "vary", - "value": "Accept-Encoding" - }, { "_fromType": "array", "name": "set-cookie", @@ -4656,7 +8385,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-vaIU939nXLryhEkmL7pgf02S' blob: http://*.3gl.net; style-src 'self' 'nonce-vaIU939nXLryhEkmL7pgf02S'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -4675,14 +8404,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 1000, + "headersSize": 1427, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-18T07:16:48.869Z", - "time": 1567, + "startedDateTime": "2024-08-05T22:59:52.598Z", + "time": 600, "timings": { "blocked": -1, "connect": -1, @@ -4690,11 +8419,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1567 + "wait": 600 } }, { - "_id": "e831f389aefbf207e1753dc1cd7b425b", + "_id": "a365f16536e12405c9bb3e5bc68c2d7e", "_order": 0, "cache": {}, "request": { @@ -4709,7 +8438,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -4726,17 +8455,12 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 291, + "headersSize": 323, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -4746,22 +8470,22 @@ }, "queryString": [ { - "name": "limit", - "value": "500" + "name": "email", + "value": "jadrian@netskope.com" }, { - "name": "skip", - "value": "0" + "name": "configtype", + "value": "agent" } ], - "url": "https://alliances.goskope.com/api/v1/clients?limit=500&skip=0" + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=jadrian%40netskope.com&configtype=agent" }, "response": { - "bodySize": 11136, + "bodySize": 505, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 11136, - "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":[{\"attributes\":{\"_id\":\"CLW247-360\",\"client_install_time\":1628251103,\"client_version\":\"94.1.1.960\",\"device_id\":\"CLW247-360\",\"host_info\":{\"device_make\":\"Dell Inc.\",\"device_model\":\"Vostro 3580\",\"hostname\":\"CLW247-360\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0 (2009)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"System shutdown\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1653479089},\"users\":[{\"_id\":\"4ee2429de6f73015e8e70bda\",\"device_classification_status\":\"Managed\",\"last_event\":{\"actor\":\"System\",\"event\":\"System shutdown\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1653479089},\"user_added_time\":1628250874,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"priyank.shah2@crestdatasys.com\"}]}},{\"attributes\":{\"_id\":\"HASHLOCK-M-KJUS\",\"client_install_time\":1631805426,\"client_version\":\"94.1.1.960\",\"device_id\":\"HASHLOCK-M-KJUS\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"MacBookPro16,1\",\"hostname\":\"HASHLOCK-M-KJUS\",\"managementID\":\"687C768088CE53F9A79912627CE626AA\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Mac\",\"os_version\":\"10.15.7\"},\"last_event\":{\"actor\":\"System\",\"event\":\"System shutdown\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1653152286},\"users\":[{\"_id\":\"2e833cf26440ffb1923a7245\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"System shutdown\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1653152286},\"user_added_time\":1631805346,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"hashlock@thousandeyes.com\"}]}},{\"attributes\":{\"_id\":\"gjenkins-laptop\",\"client_install_time\":1651250930,\"client_version\":\"94.1.1.960\",\"device_id\":\"gjenkins-laptop\",\"host_info\":{\"device_make\":\"LENOVO\",\"device_model\":\"20TH003MUS\",\"hostname\":\"gjenkins-laptop\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0 (2009)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"System shutdown\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1653013620},\"users\":[{\"_id\":\"fcb4ee43a833db235a3ae896\",\"device_classification_status\":\"Managed\",\"last_event\":{\"actor\":\"System\",\"event\":\"System shutdown\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1653013620},\"user_added_time\":1650583473.1791317,\"user_groups\":[],\"user_source\":\"Directory\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"beyondcorp@demo1-netskope.com\"},{\"_id\":\"aeea3150aea017a7dbb32b8b\",\"device_classification_status\":\"Managed\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1651786943},\"user_added_time\":1642627169,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"gjenkins@bcepartnertest.com\"}]}},{\"attributes\":{\"_id\":\"WSAMZN-VTOUSL6N\",\"client_install_time\":1652131990,\"client_version\":\"94.1.1.960\",\"device_id\":\"WSAMZN-VTOUSL6N\",\"host_info\":{\"device_make\":\"Amazon EC2\",\"device_model\":\"t3.medium\",\"hostname\":\"WSAMZN-VTOUSL6N\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows Server\",\"os_version\":\"10.0 (1607)\"},\"last_event\":{\"actor\":\"Admin\",\"event\":\"Admin Enabled\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1652913964},\"users\":[{\"_id\":\"58d05c63d360ae4a68fcba87\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"Admin\",\"event\":\"Admin Enabled\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1652913964},\"user_added_time\":1652131734.8490517,\"user_groups\":[\"dtavernier\"],\"user_source\":\"Directory\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"daniel@hippocrypto.net\"}]}},{\"attributes\":{\"_id\":\"INPN01LAP066\",\"client_install_time\":1645113316,\"client_version\":\"94.1.1.960\",\"device_id\":\"INPN01LAP066\",\"host_info\":{\"device_make\":\"Dell Inc.\",\"device_model\":\"Inspiron 13-7359\",\"hostname\":\"INPN01LAP066\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0 (2009)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Installed\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1652871708},\"users\":[{\"_id\":\"077f10ea2234d6b6ffcab45f\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Installed\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1652871708},\"user_added_time\":1645113169,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"mrajurkar@securview.com\"}]}},{\"attributes\":{\"_id\":\"EC2AMAZ-1BA3IP1\",\"client_install_time\":1651274153,\"client_version\":\"94.1.1.960\",\"device_id\":\"EC2AMAZ-1BA3IP1\",\"host_info\":{\"device_make\":\"Amazon EC2\",\"device_model\":\"t3.medium\",\"hostname\":\"EC2AMAZ-1BA3IP1\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows Server\",\"os_version\":\"10.0 (1607)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1652860940},\"users\":[{\"_id\":\"9c6967cbd799e3fe6b9bf8c3\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1652860940},\"user_added_time\":1651272739.5261333,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"brandon.mccaffrey+1@cyberark.com\"}]}},{\"attributes\":{\"_id\":\"LAPTOP-MBQF1AVU\",\"client_install_time\":1595960165,\"client_version\":\"94.1.1.960\",\"device_id\":\"LAPTOP-MBQF1AVU\",\"host_info\":{\"device_make\":\"LENOVO\",\"device_model\":\"20KG0022US\",\"hostname\":\"LAPTOP-MBQF1AVU\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0 (2009)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Installed\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1652763135},\"users\":[{\"_id\":\"85c748310f6ed439e736a4ee\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Installed\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1652763135},\"user_added_time\":1595960069,\"user_source\":\"Manual\",\"userkey\":\"[REDACTED]\",\"username\":\"david.r.willis@gmail.com\"}]}},{\"attributes\":{\"_id\":\"XDR-STH-WIN10-3\",\"client_install_time\":1644950282,\"client_version\":\"94.0.0.946\",\"device_id\":\"XDR-STH-WIN10-3\",\"host_info\":{\"device_make\":\"Xen\",\"device_model\":\"HVM domU\",\"hostname\":\"XDR-STH-WIN10-3\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0 (1909)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1652430127},\"users\":[{\"_id\":\"b51bc0d9502ca3db18e6f28b\",\"device_classification_status\":\"Managed\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1652430127},\"user_added_time\":1644950144,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"labs_12345@protonmail.com\"}]}},{\"attributes\":{\"_id\":\"N21-PC\",\"client_install_time\":1652193655,\"client_version\":\"94.0.0.946\",\"device_id\":\"N21-PC\",\"host_info\":{\"device_make\":\"VMware, Inc.\",\"device_model\":\"VMware Virtual Platform\",\"hostname\":\"N21-PC\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows Server\",\"os_version\":\"6.3\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1652279643},\"users\":[{\"_id\":\"3c55f245003638ec15ce89a3\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1652279643},\"user_added_time\":1651777790.2729559,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"osala@riverbed.com\"}]}},{\"attributes\":{\"_id\":\"Jenga-Surface\",\"client_install_time\":1641244083,\"client_version\":\"93.0.1.944\",\"device_id\":\"Jenga-Surface\",\"host_info\":{\"device_make\":\"Microsoft Corporation\",\"device_model\":\"Surface Laptop Studio\",\"hostname\":\"Jenga-Surface\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0 (2009)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1652205276},\"users\":[{\"_id\":\"a8da0006d5d7e251f0e97eae\",\"device_classification_status\":\"Managed\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1652205276},\"user_added_time\":1649177541.7932482,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"gjenkins@netskope.com\"},{\"_id\":\"38d2b7c72023af9b0f9d0843\",\"device_classification_status\":\"Managed\",\"last_event\":{\"actor\":\"User\",\"event\":\"User Disabled\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1649815468},\"user_added_time\":1642627169,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"gjenkins@bcepartnertest.com\"},{\"_id\":\"4ad1997d51f81931ccc974bb\",\"device_classification_status\":\"Managed\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1649177096},\"user_added_time\":1637191497,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"gary.jenkins@gmail.com\"}]}},{\"attributes\":{\"_id\":\"n21-pc\",\"client_install_time\":1651794063,\"client_version\":\"94.0.0.946\",\"device_id\":\"n21-pc\",\"host_info\":{\"device_make\":\"VMware, Inc.\",\"device_model\":\"VMware7,1\",\"hostname\":\"n21-pc\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows Server\",\"os_version\":\"10.0 (1809)\"},\"last_event\":{\"actor\":\"User\",\"event\":\"User Disabled\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1652193476},\"users\":[{\"_id\":\"b92843dc9eeca64fdd51c0f7\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"User\",\"event\":\"User Disabled\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1652193476},\"user_added_time\":1651777790.2729559,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"osala@riverbed.com\"}]}},{\"attributes\":{\"_id\":\"server02\",\"client_install_time\":1649693827,\"client_version\":\"94.0.0.946\",\"device_id\":\"server02\",\"host_info\":{\"device_make\":\"QEMU\",\"device_model\":\"Standard PC (i440FX + PIIX, 1996)\",\"hostname\":\"server02\",\"managementID\":\"\",\"nsdeviceuid\":\"\",\"os\":\"Windows Server\",\"os_version\":\"10.0 (1809)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1651861127},\"users\":[{\"_id\":\"b3a63e001ed7529da2b6c0c5\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1651861127},\"user_added_time\":1635955851,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"jason.reimer@tanium.com\"}]}},{\"attributes\":{\"_id\":\"DESKTOP-CKT0OLH\",\"client_install_time\":1651156768,\"client_version\":\"93.0.1.944\",\"device_id\":\"DESKTOP-CKT0OLH\",\"host_info\":{\"device_make\":\"VMware, Inc.\",\"device_model\":\"VMware7,1\",\"hostname\":\"DESKTOP-CKT0OLH\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0 (1909)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1651258867},\"users\":[{\"_id\":\"fc1d048b54196d7bc8d6a6e8\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1651258867},\"user_added_time\":1651118899.9170649,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"harry@awesomeco.us\"}]}},{\"attributes\":{\"_id\":\"WSAMZN-OUPU5IPI\",\"client_install_time\":1648992248,\"client_version\":\"93.0.1.944\",\"device_id\":\"WSAMZN-OUPU5IPI\",\"host_info\":{\"device_make\":\"Amazon EC2\",\"device_model\":\"t3.medium\",\"hostname\":\"WSAMZN-OUPU5IPI\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows Server\",\"os_version\":\"10.0 (1607)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1649171613},\"users\":[{\"_id\":\"7b6a4e10c673ae3495b2e619\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1649171613},\"user_added_time\":1648991659.6849737,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"dmulugeta@netskope.com\"}]}},{\"attributes\":{\"_id\":\"win2016btms\",\"client_install_time\":1635961628,\"client_version\":\"93.0.1.944\",\"device_id\":\"win2016btms\",\"host_info\":{\"device_make\":\"OpenStack Foundation\",\"device_model\":\"OpenStack Nova\",\"hostname\":\"win2016btms\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows Server\",\"os_version\":\"10.0 (1607)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Installed\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1647432347},\"users\":[{\"_id\":\"b2c1c1c47024c894f1932686\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Installed\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1647432347},\"user_added_time\":1635955851,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"jason.reimer@tanium.com\"}]}},{\"attributes\":{\"_id\":\"XDR-STH-WIN10-1\",\"client_install_time\":1644951509,\"client_version\":\"91.0.6.812\",\"device_id\":\"XDR-STH-WIN10-1\",\"host_info\":{\"device_make\":\"Xen\",\"device_model\":\"HVM domU\",\"hostname\":\"XDR-STH-WIN10-1\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0 (1909)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1645039855},\"users\":[{\"_id\":\"ca2e013fc6f3cc9de9fb47a2\",\"device_classification_status\":\"Managed\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1645039855},\"user_added_time\":1644951274,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"labs_12346@protonmail.com\"},{\"_id\":\"1c675c900621c548e73bf579\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1644951427},\"user_added_time\":1644609777,\"user_groups\":[],\"user_source\":\"Directory\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"arnab.chakrabarty@crowdstrike.com\"}]}},{\"attributes\":{\"_id\":\"splunkhome\",\"client_install_time\":1638991531,\"client_version\":\"91.0.6.812\",\"device_id\":\"splunkhome\",\"host_info\":{\"device_make\":\"QEMU\",\"device_model\":\"Standard PC (i440FX + PIIX, 1996)\",\"hostname\":\"splunkhome\",\"managementID\":\"\",\"nsdeviceuid\":\"\",\"os\":\"Windows Server\",\"os_version\":\"10.0 (1809)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1641450677},\"users\":[{\"_id\":\"3f5004beba06b35616c6dfb3\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1641450677},\"user_added_time\":1635955851,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"jason.reimer@tanium.com\"}]}},{\"attributes\":{\"_id\":\"Win10-Hermes\",\"client_install_time\":1639498011,\"client_version\":\"91.0.6.812\",\"device_id\":\"Win10-Hermes\",\"host_info\":{\"device_make\":\"Microsoft Corporation\",\"device_model\":\"Virtual Machine\",\"hostname\":\"Win10-Hermes\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0 (2009)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1639644777},\"users\":[{\"_id\":\"de469b91412d25a9551564d0\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1639644777},\"user_added_time\":1635955851,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"jason.reimer@tanium.com\"}]}},{\"attributes\":{\"_id\":\"Dello-2\",\"client_install_time\":1637192290,\"client_version\":\"90.1.0.805\",\"device_id\":\"Dello-2\",\"host_info\":{\"device_make\":\"Dell Inc.\",\"device_model\":\"XPS 8700\",\"hostname\":\"Dello-2\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0 (2009)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1638990474},\"users\":[{\"_id\":\"adc157a43c4a6ba7aec920c9\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1638990474},\"user_added_time\":1637191497,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"gary.jenkins@gmail.com\"}]}},{\"attributes\":{\"_id\":\"CLW355-486\",\"client_install_time\":1629276532,\"client_version\":\"90.1.0.805\",\"device_id\":\"CLW355-486\",\"host_info\":{\"device_make\":\"LENOVO\",\"device_model\":\"81HN\",\"hostname\":\"CLW355-486\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0 (2009)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1637593923},\"users\":[{\"_id\":\"0fb584fa6f0242b2b0fd1677\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1637593923},\"user_added_time\":1628250874,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"raj.charkhawala@crestdatasys.com\"}]}},{\"attributes\":{\"_id\":\"CLM09\",\"client_install_time\":1637563353,\"client_version\":\"90.1.0.805\",\"device_id\":\"CLM09\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"MacBookAir7,2\",\"hostname\":\"CLM09\",\"managementID\":\"016B2D2214445A2D90E0126C38D97A9B\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Mac\",\"os_version\":\"10.13.6\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1637584763},\"users\":[{\"_id\":\"13d83b8998fb59d00dd69028\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1637584763},\"user_added_time\":1628250874,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"raj.charkhawala@crestdatasys.com\"}]}},{\"attributes\":{\"_id\":\"CLM02\",\"client_install_time\":1632808953,\"client_version\":\"90.1.0.805\",\"device_id\":\"CLM02\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"MacBookAir6,2\",\"hostname\":\"CLM02\",\"managementID\":\"CA100A5607D25F0D84F114E3C427273F\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Mac\",\"os_version\":\"10.15.6\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1637578316},\"users\":[{\"_id\":\"72358d976aa5c55036ffba16\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1637578316},\"user_added_time\":1628250874,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"raj.charkhawala@crestdatasys.com\"},{\"_id\":\"2ce41f5ad892598073b231f7\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1637316506},\"user_added_time\":1632808531,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"deep.raval@crestdatasys.com\"}]}},{\"attributes\":{\"_id\":\"CLW512-820\",\"client_install_time\":1637324331,\"client_version\":\"90.1.0.805\",\"device_id\":\"CLW512-820\",\"host_info\":{\"device_make\":\"LENOVO\",\"device_model\":\"20U1A006IG\",\"hostname\":\"CLW512-820\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0 (2009)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1637325071},\"users\":[{\"_id\":\"feb898521b4f78cce2a91553\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1637325071},\"user_added_time\":1637316696,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"dhyey.patel@crestdatasys.com\"}]}},{\"attributes\":{\"_id\":\"WSAMZN-SI3GGRQ7\",\"client_install_time\":1629979439,\"client_version\":\"88.0.0.794\",\"device_id\":\"WSAMZN-SI3GGRQ7\",\"host_info\":{\"device_make\":\"Amazon EC2\",\"device_model\":\"t3.medium\",\"hostname\":\"WSAMZN-SI3GGRQ7\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows Server\",\"os_version\":\"10.0 (1607)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1632283891},\"users\":[{\"_id\":\"baba348aea414896077e1621\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1632283891},\"user_added_time\":1629978957,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"jadrian+alliances@netskope.com\"}]}},{\"attributes\":{\"_id\":\"CLM20\",\"client_install_time\":1628661467,\"client_version\":\"89.0.0.853\",\"device_id\":\"CLM20\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"MacBookAir7,2\",\"hostname\":\"CLM20\",\"managementID\":\"007CBC8B58FB5BC78FE76A30149EDACD\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Mac\",\"os_version\":\"11.4.0\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1631889168},\"users\":[{\"_id\":\"084fa0a526e6c4a36c08d5dd\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1631889168},\"user_added_time\":1628250874,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"raj.charkhawala@crestdatasys.com\"}]}},{\"attributes\":{\"_id\":\"Justin\\u2019s Mac (4)\",\"client_install_time\":1593438128,\"client_version\":\"88.0.0.794\",\"device_id\":\"Justin\\u2019s Mac (4)\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"Parallels16,1\",\"hostname\":\"Justin\\u2019s Mac (4)\",\"managementID\":\"BCAE183BC690565CAC7805C38D982359\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Mac\",\"os_version\":\"10.15.5\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1629564072},\"users\":[{\"_id\":\"c10342bf3e4f2c087821844a\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1629564072},\"user_added_time\":1593437829,\"user_source\":\"Directory\",\"userkey\":\"[REDACTED]\",\"username\":\"jadrian@netskope.com\"}]}},{\"attributes\":{\"_id\":\"CLW258-486\",\"client_install_time\":1628251009,\"client_version\":\"88.0.0.794\",\"device_id\":\"CLW258-486\",\"host_info\":{\"device_make\":\"Dell Inc.\",\"device_model\":\"Vostro 3580\",\"hostname\":\"CLW258-486\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0 (2009)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"System shutdown\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1628862827},\"users\":[{\"_id\":\"089a9c71a3c0d403999a97fd\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"System shutdown\",\"npa_status\":\"Steering Disabled\",\"status\":\"Disabled\",\"timestamp\":1628862827},\"user_added_time\":1628250874,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"raj.charkhawala@crestdatasys.com\"}]}},{\"attributes\":{\"_id\":\"M23-DhvaniR\",\"client_install_time\":1628676221,\"client_version\":\"88.0.0.794\",\"device_id\":\"M23-DhvaniR\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"MacBookAir7,2\",\"hostname\":\"M23-DhvaniR\",\"managementID\":\"AC1B59B0D55D5755BBFC18ACDC17B2AE\",\"nsdeviceuid\":\"\",\"os\":\"Mac\",\"os_version\":\"11.4.0\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1628676860},\"users\":[{\"_id\":\"71281098998b5b86f5936b45\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1628676860},\"user_added_time\":1628250874,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"raj.charkhawala@crestdatasys.com\"}]}},{\"attributes\":{\"_id\":\"CLM51-676\",\"client_install_time\":1628672511,\"client_version\":\"88.0.0.794\",\"device_id\":\"CLM51-676\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"MacBookAir8,1\",\"hostname\":\"CLM51-676\",\"managementID\":\"E05238C1AC595E1989D8786F1188628D\",\"nsdeviceuid\":\"\",\"os\":\"Mac\",\"os_version\":\"11.5.0\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1628673773},\"users\":[{\"_id\":\"029fed1de85d55ebad42197d\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1628673773},\"user_added_time\":1628665684,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"harsh.nasit@crestdatasys.com\"}]}},{\"attributes\":{\"_id\":\"oak-cs725\",\"client_install_time\":1617400001,\"client_version\":\"87.0.0.704\",\"device_id\":\"oak-cs725\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"Macmini7,1\",\"hostname\":\"oak-cs725\",\"managementID\":\"495D2F0D4DD0518683306489046F0727\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Mac\",\"os_version\":\"10.14.6\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1625855090},\"users\":[{\"_id\":\"f28886fdbc50d5b550a62322\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1625855090},\"user_source\":\"Directory\",\"user_state\":2,\"userkey\":\"[REDACTED]\",\"username\":\"Karim.Saadah@riverbed.com\"}]}},{\"attributes\":{\"_id\":\"C02WT1ZXHTD6-MAC\",\"client_install_time\":1615936210,\"client_version\":\"84.2.0.553\",\"device_id\":\"C02WT1ZXHTD6-MAC\",\"host_info\":{\"device_make\":\"Apple\",\"device_model\":\"MacBookPro14,3\",\"hostname\":\"C02WT1ZXHTD6-MAC\",\"managementID\":\"9EA9360EBEA05A50B5475AFF8780DA0C\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Mac\",\"os_version\":\"10.14.6\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1620265227},\"users\":[{\"_id\":\"da00505b83884d0cf0001250\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1620265227},\"user_added_time\":1615935220,\"user_source\":\"Manual\",\"user_state\":0,\"userkey\":\"[REDACTED]\",\"username\":\"ababaoglu@riverbed.com\"}]}},{\"attributes\":{\"_id\":\"oak-cs594\",\"client_install_time\":1617398761,\"client_version\":\"84.1.1.550\",\"device_id\":\"oak-cs594\",\"host_info\":{\"device_make\":\"Dell Inc.\",\"device_model\":\"PowerEdge R210 II\",\"hostname\":\"oak-cs594\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0 (2009)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1618419567},\"users\":[{\"_id\":\"c1858cdf9fe7ea7c641dc4d2\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1618419567},\"user_source\":\"Directory\",\"user_state\":2,\"userkey\":\"[REDACTED]\",\"username\":\"Karim.Saadah@riverbed.com\"}]}},{\"attributes\":{\"_id\":\"WIN10VM3\",\"client_install_time\":1599251604,\"client_version\":\"82.0.0.533\",\"device_id\":\"WIN10VM3\",\"host_info\":{\"device_make\":\"VMware, Inc.\",\"device_model\":\"VMware7,1\",\"hostname\":\"WIN10VM3\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0 (2009)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1615402254},\"users\":[{\"_id\":\"d8611ab8aa8a40e58aa4c3a2\",\"device_classification_status\":\"Managed\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1615402254},\"user_added_time\":1599251267,\"user_source\":\"Directory\",\"userkey\":\"[REDACTED]\",\"username\":\"eduardo.xavier@crowdstrike.com\"}]}},{\"attributes\":{\"_id\":\"Client-02\",\"client_install_time\":1600886060,\"client_version\":\"81.1.1.552\",\"device_id\":\"Client-02\",\"host_info\":{\"device_make\":\"Amazon EC2\",\"device_model\":\"t3.medium\",\"hostname\":\"Client-02\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows\",\"os_version\":\"10.0 (1703)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1614626865},\"users\":[{\"_id\":\"3a1ba952af5056aa0f613568\",\"device_classification_status\":\"Unmanaged\",\"last_event\":{\"actor\":\"System\",\"event\":\"Tunnel Up\",\"npa_status\":\"Steering Disabled\",\"status\":\"Enabled\",\"timestamp\":1614626865},\"user_added_time\":1593437829,\"user_source\":\"Directory\",\"userkey\":\"[REDACTED]\",\"username\":\"jadrian@netskope.com\"}]}},{\"attributes\":{\"_id\":\"WSAMZN-1COB6TM8\",\"client_install_time\":1600806610,\"client_version\":\"78.0.0.504\",\"device_id\":\"WSAMZN-1COB6TM8\",\"host_info\":{\"device_make\":\"Amazon EC2\",\"device_model\":\"t3.medium\",\"hostname\":\"WSAMZN-1COB6TM8\",\"managementID\":\"\",\"nsdeviceuid\":\"[REDACTED]\",\"os\":\"Windows Server\",\"os_version\":\"10.0 (1607)\"},\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1600969199},\"users\":[{\"_id\":\"84836c4bc326a13fc009cd74\",\"device_classification_status\":\"Unknown\",\"last_event\":{\"actor\":\"System\",\"event\":\"Uninstalled\",\"npa_status\":\"Disconnected\",\"status\":\"Uninstalled\",\"timestamp\":1600969199},\"user_added_time\":1600889517,\"user_source\":\"Directory\",\"userkey\":\"[REDACTED]\",\"username\":\"crowdstrike@netskope.tech\"}]}}]}" + "size": 505, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"jadrian@netskope.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"jadrian@netskope.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" }, "cookies": [ { @@ -4788,19 +8512,19 @@ }, { "name": "date", - "value": "Wed, 25 May 2022 13:27:16 GMT" + "value": "Mon, 05 Aug 2024 22:59:53 GMT" }, { "name": "content-type", "value": "application/json; charset=UTF-8" }, { - "name": "connection", - "value": "close" + "name": "content-length", + "value": "505" }, { - "name": "vary", - "value": "Accept-Encoding, Accept-Encoding" + "name": "connection", + "value": "close" }, { "_fromType": "array", @@ -4826,7 +8550,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-btZAQVjWwSn90EZuWBGYK2zj' blob: http://*.3gl.net; style-src 'self' 'nonce-btZAQVjWwSn90EZuWBGYK2zj'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -4845,14 +8569,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 1046, + "headersSize": 1429, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-25T13:27:13.420Z", - "time": 3210, + "startedDateTime": "2024-08-05T22:59:53.203Z", + "time": 596, "timings": { "blocked": -1, "connect": -1, @@ -4860,11 +8584,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 3210 + "wait": 596 } }, { - "_id": "0d9335ca0143cd257eda99b0e839044a", + "_id": "507c8157f83b6a1a1b6f19cefd667e5f", "_order": 0, "cache": {}, "request": { @@ -4879,7 +8603,7 @@ { "_fromType": "array", "name": "accept", - "value": "*/*" + "value": "application/json" }, { "_fromType": "array", @@ -4896,17 +8620,12 @@ "name": "accept-encoding", "value": "gzip,deflate" }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, { "name": "host", - "value": "alliances.goskope.com" + "value": "alliances.eu.goskope.com" } ], - "headersSize": 293, + "headersSize": 320, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { @@ -4916,22 +8635,22 @@ }, "queryString": [ { - "name": "limit", - "value": "500" + "name": "email", + "value": "ahardy@vmware.com" }, { - "name": "skip", - "value": "500" + "name": "configtype", + "value": "agent" } ], - "url": "https://alliances.goskope.com/api/v1/clients?limit=500&skip=500" + "url": "https://alliances.eu.goskope.com/api/v1/userconfig?email=ahardy%40vmware.com&configtype=agent" }, "response": { - "bodySize": 39, + "bodySize": 499, "content": { "mimeType": "application/json; charset=UTF-8", - "size": 39, - "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":[]}" + "size": 499, + "text": "{\"status\":\"success\",\"msg\":\"\",\"data\":{\"email\":\"ahardy@vmware.com\",\"brandingdata\":{\"AddonCheckerHost\":\"achecker-alliances.eu.goskope.com\",\"AddonCheckerResponseCode\":\"netSkope@netSkope\",\"AddonManagerHost\":\"addon-alliances.eu.goskope.com\",\"EncryptBranding\":false,\"OrgKey\":\"[REDACTED]\",\"OrgName\":\"VMware Partner Account \",\"SFCheckerHost\":\"sfchecker.goskope.com\",\"SFCheckerIP\":\"[REDACTED]\",\"UserEmail\":\"ahardy@vmware.com\",\"UserKey\":\"[REDACTED]\",\"ValidateConfig\":false,\"tenantID\":\"7379\"}}}" }, "cookies": [ { @@ -4958,7 +8677,7 @@ }, { "name": "date", - "value": "Wed, 25 May 2022 13:27:17 GMT" + "value": "Mon, 05 Aug 2024 22:59:54 GMT" }, { "name": "content-type", @@ -4966,7 +8685,7 @@ }, { "name": "content-length", - "value": "39" + "value": "499" }, { "name": "connection", @@ -4996,7 +8715,7 @@ }, { "name": "content-security-policy", - "value": "connect-src 'self' http://*.3gl.net *.mapbox.com ; default-src 'self' blob: ; img-src 'self' data: *.mapbox.com ;object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: http://*.3gl.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com data:;" + "value": "connect-src 'self' http://*.3gl.net *.mapbox.com https://nsiq.netskope.com:8083 https://api.test.nsiq.netskope.io https://netskope.wistia.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com https://distillery.wistia.com http://pipedream.wistia.com ; default-src 'self' blob: https://analytics-alliances.eu.goskope.com https://reports-app-nl-am2.eu.goskope.com; img-src 'self' data: *.mapbox.com https://embed-cloudfront.wistia.com https://embed-ssl.wistia.com https://fast.wistia.com;object-src 'none'; script-src 'strict-dynamic' 'nonce-fvFVQmjqvZM5WYHU8Tl1QiHw' blob: http://*.3gl.net; style-src 'self' 'nonce-fvFVQmjqvZM5WYHU8Tl1QiHw'; font-src 'self' https://fonts.gstatic.com https://netdna.bootstrapcdn.com https://fast.wistia.com data:;base-uri 'self'" }, { "name": "x-frame-options", @@ -5015,14 +8734,14 @@ "value": "max-age=31536000; includeSubDomains" } ], - "headersSize": 974, + "headersSize": 1427, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2022-05-25T13:27:16.653Z", - "time": 1210, + "startedDateTime": "2024-08-05T22:59:53.805Z", + "time": 606, "timings": { "blocked": -1, "connect": -1, @@ -5030,7 +8749,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1210 + "wait": 606 } } ], diff --git a/src/steps/user-configuration/index.test.ts b/src/steps/user-configuration/index.test.ts index cdb7567..060eee3 100644 --- a/src/steps/user-configuration/index.test.ts +++ b/src/steps/user-configuration/index.test.ts @@ -1,3 +1,4 @@ +jest.setTimeout(60_000); import { executeStepWithDependencies } from '@jupiterone/integration-sdk-testing'; import { buildStepTestConfigForStep } from '../../../test/config'; import { Recording, setupProjectRecording } from '../../../test/recording'; diff --git a/src/steps/user-configuration/index.ts b/src/steps/user-configuration/index.ts index be995a2..756d17a 100644 --- a/src/steps/user-configuration/index.ts +++ b/src/steps/user-configuration/index.ts @@ -17,7 +17,7 @@ export async function fetchUserConfiguration({ jobState, logger, }: IntegrationStepExecutionContext) { - const apiClient = createAPIClient(instance.config); + const apiClient = createAPIClient(instance.config, logger); await jobState.iterateEntities( { _type: Entities.USER._type }, diff --git a/yarn.lock b/yarn.lock index cf0fc1c..fc01505 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1390,6 +1390,11 @@ ajv "^8.0.0" ajv-formats "^2.0.0" +"@jupiterone/hierarchical-token-bucket@^0.3.1": + version "0.3.1" + resolved "https://registry.yarnpkg.com/@jupiterone/hierarchical-token-bucket/-/hierarchical-token-bucket-0.3.1.tgz#b4bda4b5b1eed2fde3db776ce7241162c83b9b01" + integrity sha512-iD8Dqaggb3yuhx457OUNyDUspnLBhkT6dgFzwHzqFLGwa4a5CCev44+sYVOQ9SbAwOR+Yv5URJH3IXHKh1yxPg== + "@jupiterone/integration-sdk-cli@^13.2.0": version "13.2.0" resolved "https://registry.yarnpkg.com/@jupiterone/integration-sdk-cli/-/integration-sdk-cli-13.2.0.tgz#8ab1c12dcc5ad9766c67581e6a7d08607d7148a3" @@ -1456,6 +1461,18 @@ ajv-formats "^3.0.1" prettier "^3.2.5" +"@jupiterone/integration-sdk-http-client@^13.2.0": + version "13.2.0" + resolved "https://registry.yarnpkg.com/@jupiterone/integration-sdk-http-client/-/integration-sdk-http-client-13.2.0.tgz#1873ba2e73a069f92f4ff161798dcadaa7dbbbd7" + integrity sha512-9wd+yLww3H2FsswcuphDFuGIaPe5UB5joaincRz6r41k6HcId3tjavRJEleKJGZWfXxpHl4aFbxZU5+30SwV8Q== + dependencies: + "@jupiterone/hierarchical-token-bucket" "^0.3.1" + "@jupiterone/integration-sdk-core" "^13.2.0" + "@lifeomic/attempt" "^3.0.3" + form-data "^4.0.0" + lodash "^4.17.21" + node-fetch "^2.7.0" + "@jupiterone/integration-sdk-runtime@^13.2.0": version "13.2.0" resolved "https://registry.yarnpkg.com/@jupiterone/integration-sdk-runtime/-/integration-sdk-runtime-13.2.0.tgz#ec96a48968a666b53fdc5db54b71b842f4c8d7f3" @@ -5651,10 +5668,10 @@ nock@^13.2.1: lodash "^4.17.21" propagate "^2.0.0" -node-fetch@2: - version "2.6.7" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" - integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== +node-fetch@^2.7.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d" + integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A== dependencies: whatwg-url "^5.0.0"