IMPORTANT ANNOUNCEMENT: On May 6, 2024, Carbon Black User eXchange (UeX) and Case Management will move to a new platform!
The Community will be in read-only mode starting April 19th, 7:00 AM PDT. Check out the blog post!
You will still be able to use the case portal to create and interact with your support cases until the transition, view more information here!

App Control: How to Retrieve Local CLI Password from the DAS Database

App Control: How to Retrieve Local CLI Password from the DAS Database

Environment

App Control Server: All Versions

Objective

To locate the local CLI password of any agent using a SQL query.

Resolution

  1. Login to App Control SQL Server
  2. Open SQL Management Studio
  3. Run Query:
    USE das; 
    SELECT 
    C.Computer_Id AS "ID", 
    C.Computer AS "Hostname", 
    H.cli_code AS "CLI Code" 
    FROM bit9_public.ExComputers C 
    JOIN dbo.hostmain H with (NOLOCK) ON H.host_id = C.Computer_Id 
    ORDER BY C.Computer ASC

Additional Notes

Add the below addition (before ORDER BY) to only show deleted computers cli passwords
Where
C.Computer_Deleted = 'Yes'

 

Related Content


Labels (1)
Tags (2)
Was this article helpful? Yes No
No ratings
Article Information
Author:
Creation Date:
‎04-05-2018
Views:
4437
Contributors