App Control: How to Query Rules That Make A Rapid Config
book
Article ID: 286428
calendar_today
Updated On:
Products
Carbon Black App Control (formerly Cb Protection)
Issue/Introduction
View the specific details associated with a Rapid Config.
Environment
App Control Console: All Supported Versions
Microsoft SQL Server: All Supported Versions
Resolution
Log in to the Console and navigate to Rules > Software Rules > Rapid Configs.
Verify the Rapid Config in question has been enabled and note the name (Example: Delivery Optimization).
Log in to the application server as the Carbon Black Service Account.
Use SQL Server Management Studio to execute the following query:
use das; SELECT rule_id, name, date_created, date_modified, pattern as Path, procname as Process, description from dbo.rules with (NOLOCK) WHERE name LIKE '%Delivery Optimization%';
Additional Information
Rapid Configs are not populated in the table until they are Enabled.
Do not make changes to any Custom Rules using this table.