* Adding deprecation notes to host and user risk score documentation * Adding deprecation notes to experimental ML packages
10 KiB
The setup instructions in this document have been deprecated. Please follow the steps outlined here, to enable User Risk Score in your environment.
User Risk Score
The User Risk Score feature highlights risky usernames from within your environment. It utilizes a transform with a scripted metric aggregation to calculate user risk scores based on alerts that were generated within the past three months. The transform runs hourly to update the score as new alerts are generated. Each alert's contribution to the user risk score is based on the alert's risk score (signal.rule.risk_score). The risk score is calculated using a weighted sum where rules with higher time-corrected risk scores also have higher weights. Each risk score is normalized to a scale of 0 to 100.
User Risk Score is an experimental feature that assigns risk scores to usernames in a given Kibana space. Risk scores are calculated for each username by utilizing transforms on the alerting indices. The transform updates the score as new alerts are generated. The User Risk Score package contains all of the required artifacts for setup. The User Risk Score feature provides Lens dashboards for viewing summary and detailed username risk score information. The detail view dashboard - Drilldown of User Risk Score - presents detail on why a username has been given a high risk score. In addition, user risk scores are presented in the detailed view for a username in the Elastic Security App.
On Usernames and Risk Scores
Many alerts contain usernames which were present in the original log or event documents that alert rules, or anomaly rules, matched. These are discrete usernames, not (yet) pointers to a user entity. In most environments, each human user has multiple usernames across the various applications and systems they use. In order to investigate a user, it may be necessary to add each of their usernames to the list of usernames being used to filter the output of the detail dashboard.
In some cases, there are certain usernames that are not readily individuated. The Local System, or SYSTEM account, under Windows, for example, has the same name and the same SID (security identifier) on every Windows host. In order to individuate a particular Local System user account, it is necessary to add its hostname as a filter. The user risk score detail dashboard contains tables of alerts by hostname, in addition to username, in order to help identify the hostname(s) associated with a local user that has been given a risk score.
Setup Instructions
- Obtain artifacts
- Upload scripts
- Upload ingest pipeline
- Upload and start the
pivottransform - Create the User Risk Score index
- Upload and start the
latesttransform - Import dashboards
- (Optional) Enable Kibana features
1. Obtain artifacts
The User Risk Score functionality is space aware for privacy. Downloaded artifacts must be modified with the desired space before they can be used.
- Download the release bundle from here. The User Risk Score releases can be identified by the tag
ML-UserRiskScore-YYYYMMDD-N. Check the release description to make sure it is compatible with the Elastic Stack version you are running. - Unzip the contents of
ML-UserRiskScore-YYYYMMDD-N.zip. - Run
ml_userriskscore_generate_scripts.pyscript in the unzipped directory with your Kibana space as the argument.
python ml_userriskscore_generate_scripts.py --space default
- Find a new folder named after your space in the unzipped directory. You will be using the scripts within this directory for the next steps.
2. Upload scripts
- Navigate to
Management / Dev Toolsin Kibana. - Upload the contents of
ml_userriskscore_levels_script.json,ml_userriskscore_map_script.json,ml_userriskscore_reduce_script.jsonusing the Script API with the following syntax. - Ensure that your space name (such as
default) replaces<your-space-name>in the script names below.
PUT _scripts/ml_userriskscore_levels_script_<your-space-name>
{contents of ml_userriskscore_levels_script.json file}
PUT _scripts/ml_userriskscore_map_script_<your-space-name>
{contents of ml_userriskscore_map_script.json file}
PUT _scripts/ml_userriskscore_reduce_script_<your-space-name>
{contents of ml_userriskscore_reduce_script.json file}
3. Upload ingest pipeline
- Upload the contents of
ml_userriskscore_ingest_pipeline.jsonusing the Ingest API with the following syntax. - Ensure that your space name (such as
default) replaces<your-space-name>below.
PUT _ingest/pipeline/ml_userriskscore_ingest_pipeline_<your-space-name>
{contents of ml_userriskscore_ingest_pipeline.json file}
4. Upload and start the pivot transform
This transform calculates the risk level every hour for each username in the Kibana space specified.
- Upload the contents of
ml_userriskscore_pivot_transform.jsonusing the Transform API with the following syntax. - Ensure that your space name (such as
default) replaces<your-space-name>below.
PUT _transform/ml_userriskscore_pivot_transform_<your-space-name>
{contents of ml_userriskscore_pivot_transform.json file}
- Navigate to
TransformsunderManagement / Stack Managementin Kibana. Find the transform with the IDml_userriskscore_pivot_transform_<your-space-name>. Open theActionsmenu on the right side of the row, then clickStart. - Confirm the transform is working as expected by navigating to
Management / Dev Toolsand ensuring the target index exists.
GET ml_user_risk_score_<your-space-name>/_search
5. Create the User Risk Score index
- Navigate to
Management / Dev Toolsin Kibana. - Create the User Risk Score index (
ml_user_risk_score_latest_<your-space-name>) with the following mappings. - Ensure that your space name (such as
default) replaces<your-space-name>below.
PUT ml_user_risk_score_latest_<your-space-name>
{
"mappings":{
"properties":{
"user.name":{
"type":"keyword"
}
}
}
}
6. Upload and start the latest transform
This transform recurrently calculates risk levels for all usernames in the Kibana space specified.
- Upload the contents of
ml_userriskscore_latest_transform.jsonusing the Transform API with the following syntax. - Ensure that your space name (such as
default) replaces<your-space-name>below.
PUT _transform/ml_userriskscore_latest_transform_<your-space-name>
{contents of ml_userriskscore_latest_transform.json file}
- Navigate to
TransformsunderManagement / Stack Managementin Kibana. Find the transform with the IDml_userriskscore_latest_transform_<your-space-name>. Open theActionsmenu on the right side of the row, and clickStart. - Confirm the transform is working as expected by navigating to
Management / Dev Toolsand ensuring the target index exists. You should see documents starting to appear in the index if there is ongoing alerting activity associated with usernames.
GET ml_user_risk_score_latest_<your-space-name>/_search
7. Import dashboards
- Navigate to
Management / Stack Management / Kibana / Saved Objectsin Kibana. - Click on
Importand import theml_userriskscore_dashboards.ndjsonfile. - Navigate to
Analytics / Dashboard. - Confirm you can see a dashboard named
Current Risk Scores for Users, which displays the current list (Top 20) of usernames for which a risk score has been computed. - Confirm you can see a dashboard named
Drilldown of User Risk Score, which allows you to further drill down into details of the risk associated with a particular username of interest.
8. Enable Kibana features
To enable the Kibana features for User Risk Score, you will first need to add the following configuration to kibana.yml.
xpack.securitySolution.enableExperimental: ['riskyUsersEnabled']
This can be added by editing the kibana.yml file, on a Kibana server instance, or by modifying a Kibana server configuration, in an Elastic Cloud deployment, using the steps documented here:
https://www.elastic.co/guide/en/cloud-enterprise/current/ece-manage-kibana-settings.html
Once you have modified the kibana.yml file, you will find User Risk Scoring features in the "User Risk" tab in the detail view for a username. The detail view is reached by clicking a username in the Users page in the Security Solution: