SQL queries to retrieve the redirection status for Skyhigh Client Proxy
Last Modified: 6/8/2023
Affected Products
Languages:
This article is available in the following languages:
Trellix CEO, Bryan Palma, explains the critical need for security that’s always learning.
As per Gartner, "XDR is an emerging technology that can offer improved threat prevention, detection and response."
Trellix announced the establishment of the Trellix Advanced Research Center to advance global threat intelligence.
Trellix Advanced Research Center analyzes threat data on ransomware, nation-states, sectors, vectors, LotL, MITRE ATT&CK techniques, and emails.
As of May 14, 2024, Knowledge Base (KB) articles will only be published and updated in our new Trellix Thrive Knowledge space.
Log in to the Thrive Portal using your OKTA credentials and start searching the new space. Legacy KB IDs are indexed and you will be able to find them easily just by typing the legacy KB ID.
SQL queries to retrieve the redirection status for Skyhigh Client Proxy
Technical Articles ID:
KB94501
Last Modified: 6/8/2023 Environment
ePolicy Orchestrator (ePO) 5.x Skyhigh Client Proxy (SCP) 4.x, 3.x Summary
The SQL queries below help you retrieve the SCP redirection status of endpoints. For help with execute queries, see KB67591 - How to run a SQL script provided by Technical Support against the ePolicy Orchestrator database. SQL query to retrieve details of systems where SCP is installed successfully and working: FROM EPOComputerProperties ecp (nolock) INNER JOIN EPOProductProperties epp (nolock) ON ecp.ParentID = epp.ParentID AND epp.ProductCode LIKE 'MCPAGENT%' INNER JOIN EPOProductSettingValuesMT epsv (nolock) ON epsv.ParentID = epp.AutoID INNER JOIN EPOProductSettingLabels epsl (nolock) ON epsl.AutoID = epsv.LabelID WHERE epsl.Setting IN ('szPropsCollectTime', 'szRedirectionStatus'); SQL query to retrieve the details of the systems where SCP isn't installed correctly: FROM EPOComputerProperties (nolock) ecp INNER JOIN EPOProductProperties epp (nolock) ON ecp.ParentID = epp.ParentID AND epp.ProductCode LIKE 'MCPAGENT%' WHERE ecp.ParentID NOT IN (SELECT DISTINCT epp.parentID FROM EPOProductProperties epp INNER JOIN EPOProductSettingValuesMT epsv ON epsv.ParentID = epp.AutoID AND epp.ProductCode LIKE 'MCPAGENT%' INNER JOIN EPOProductSettingLabels epsl ON epsl.AutoID = epsv.LabelID WHERE epsl.Setting IN ('szPropsCollectTime', 'szRedirectionStatus')); SQL query that shows the latest redirection status for all SCP endpoints:
from EPOComputerProperties a (nolock), EPOProductProperties b (nolock), EPOProductSettingLabels c (nolock), EPOProductSettingValuesMT d (nolock) where c.Setting like 'szRedirection%' and c.AutoId = d.labelId and d.parentID=b.AutoID and b.parentID=a.parentID;
from EPOComputerProperties a (nolock), EPOProductProperties b (nolock), EPOProductSettingLabels c (nolock), EPOProductSettingValuesMT d (nolock) where c.Setting like 'szR%' and c.AutoId = d.labelId and d.parentID=b.AutoID and b.parentID=a.parentID; Affected ProductsLanguages:This article is available in the following languages: |
|