Writing and Editing Detections
Last updated
Was this helpful?
Last updated
Was this helpful?
You can write your own Python detections in the Panther Console or locally, following the . This page contains detection writing examples and best practices, available auxiliary functions, and guidance on how to configure a detection dynamically.
For instructions on how to write detections, see the following pages:
Python Enhancement Proposals on how to cleanly and effectively write and style your Python code. For example, you can use to automatically ensure that your written detections all follow a consistent style.
The following Python libraries are available to be used in Panther in addition to boto3
, provided by :
Package
Version
Description
License
jsonpath-ng
1.5.2
JSONPath Implementation
Apache v2
policyuniverse
1.3.3.20210223
Parse AWS ARNs and Policies
Apache v2
requests
2.23.0
Easy HTTP Requests
Apache v2
return True
triggers an alert, while return False
does not trigger an alert.
Lookups for event fields are not case sensitive. event.get("Event_Type")
or event.get("event_type")
will return the same result.
Top-level fields represent the parent fields in a nested data structure. For example, a record may contain a field called user
under which there are other fields such as ip_address
. In this case, user
is the top-level field, and ip_address
is a nested field underneath it.
Nesting can occur many layers deep, and so it is valuable to understand the schema structure and know how to access a given field for a detection.
Basic Rules match a field’s value in the event, and a best practice to avoid errors is to leverage Python’s built-in get()
function.
The example below is a best practice because it leverages a get()
function. get()
will look for a field, and if the field doesn't exist, it will return None
instead of an error, which will result in the detection returning False
.
In the example below, if the field exists, the value of the field will be returned. Otherwise, False
will be returned:
Bad practice example
The example below is bad practice because the code is explicit about the field name. If the field doesn't exist, Python will throw a KeyError:
def rule(event):
return event['field'] == 'value'
If the field is nested deep within the event, use a Panther-supplied function called deep_get()
to safely access the fields value. deep_get()
must be imported by the panther_base_helpers
library.
deep_get()
takes two or more arguments:
The event object itself (required)
The top-level field name (required)
Any nested fields, in order (as many nested fields as needed)
Example:
AWS CloudTrail logs nest the type of user accessing the console underneath userIdentity
.
JSON CloudTrail root activity:
Here is how you could check that value safely with deep_get
:
You may want to know when a specific event has occurred. If it did occur, then the detection should trigger an alert. Since Panther stores everything as normalized JSON, you can check the value of a field against the criteria you specify.
For example, to detect the action of granting Box technical support access to your Box account, the Python below would be used to match events where the event_type
equals ACCESS_GRANTED
:
If the field is event_type
and the value is equal to ACCESS_GRANTED
then the rule function will return true
and an Alert will be created.
You may need to compare the value of a field against integers. This allows you to use any of Python’s built-in comparisons against your events.
For example, you can create an alert based on HTTP response status codes:
Reference:
event.udm()
can only be used with log types that have an existing Data Model in your Panther environment.
Example:
References:
The and
keyword is a logical operator and is used to combine conditional statements. It is often required to match multiple fields in an event using the and
keyword. When using and
, all statements must be true:
"string_a" == "this"
and
"string_b" == "that"
Example:
To track down successful root user access to the AWS console you need to look at several fields:
The or
keyword is a logical operator and is used to combine conditional statements. When using or
, either of the statements may be true:
"string_a" == "this"
or
"string_b" == "that"
Example:
This example detects if the field contains either Port 80 or Port 22:
Comparing and matching events against a list of IP addresses, domains, users etc. is very quick and easy in Python. This is often used in conjunction with choosing not to alert on an event if the field being checked also exists in the list. This helps with reducing false positives for known behavior in your environment.
Example: If you have a list of IP addresses that you would like to add to your allow list, but you want to know if an IP address comes through outside of that list, we recommend using a Python set. Sets are similar to Python lists and tuples, but are more memory efficient.
In the example below, we use the Panther helper pattern_match_list
:
If you want to match against events using regular expressions - to match subdomains, file paths, or a prefix/suffix of a general string - you can use regex. In Python, regex can be used by importing the re
library and looking for a matching value.
In the example below, the regex pattern will match Administrator or administrator against the nested value of the privilegeGranted field.
In the example below, we use the Panther helper pattern_match
:
References:
Applicable to both Rules and Policies, each function listed takes a single argument of event
(Rules) or resource
(Policies). Advanced users may define functions, variables, or classes outside of the functions defined below.
The only required function is def rule(event)
, but other functions make your Alerts more dynamic.
title
The generated alert title
String
If not defined, the Display Name, RuleID
, or PolicyID
is used
dedup
The string to group related events with, limited to 1000 characters
String
If not defined, the title
function output is used.
alert_context
Additional context to pass to the alert destination(s)
Dict[String: Any]
An empty Dict
severity
The level of urgency of the alert
INFO, LOW, MEDIUM, HIGH, CRITICAL, or DEFAULT
The severity as defined in the detection metadata
description
An explanation about why the rule exists
String
The description as defined in the detection metadata
reference
A reference URL to an internal document or online resource about the rule
String
The reference as defined in the detection metadata
runbook
A list of instructions to follow once the alert is generated
String
The runbook as defined in the detection metadata
destinations
The label or ID of the destinations to specifically send alerts to. An empty list will suppress all alerts.
List[Destination Name/ID]
The destinations as defined in the detection metadata
title
The title function is optional, but it is recommended to include it to provide additional context. In the example below, the log type, relevant username, and a static string are returned to the destination. The function checks to see if the event is related the AWS.CloudTrail log type and return the AWS Account Name if that is true.
If the dedup function is not present, the title is used to group related events for deduplication purposes.
Example:
dedup
Example:
severity
In some scenarios, you may need to upgrade or downgrade the severity level of an alert. The severity levels of an alert can be mapped to INFO, LOW, MEDIUM, HIGH, CRITICAL, or DEFAULT. Return DEFAULT to fall back to the statically defined rule severity.
In all cases, the severity string returned is case insensitive, meaning you can return, for example, Critical
or default
, depending on your style preferences.
Example where a HIGH severity alert is returned if an API token is created - otherwise we create an INFO level alert:
Example using DEFAULT:
destinations
By default, Alerts are sent to specific destinations based on severity level or log type event. Each Detection has the ability to override their default destination and send the Alert to one or more specific destination(s). In some scenarios, a destination override is required, providing more advance criteria based on the logic of the Rule.
Example:
A rule used for multiple log types utilizes the destinations function to reroute the Alert to another destination if the log type is "AWS.CloudTrail". The Alert is suppressed to this destination using return ["SKIP"]
if the log type is not CloudTrail.
alert_context
This function allows the detection to pass any event details as additional context, such as usernames, IP addresses, or success/failure, to the Alert destination(s).
Example:
The code below returns all event data in the alert context.
alert runbook
, reference
, and description
These functions can provide additional context around why an alert was triggered and how to resolve the related issue. Depending on what conditions are met, a string can be overridden and returned to the specified field in the alert.
The example below dynamically provides a link within the runbook
field in an alert.
A detection's only required function is def rule(event)
, shown below. Additional functions can make your alerts more dynamic—see for more information.
For more templates, see the .
Before enabling new detections, it is that define scenarios where alerts should or should not be generated. Best practice dictates at least one positive and one negative to ensure the most reliability.
Reference:
Once many detections are written, a set of patterns and repeated code will begin to emerge. This is a great use case for , which provide a centralized location for this logic to exist across all detections. For example, see the deep_get()
function referenced in the next section.
Reference:
provide a way to configure a set of unified fields across all log types. By default, Panther comes with built-in Data Models for several log types. Custom Data Models can be added in the Panther Console or via the .
Reference:
Panther's detection auxiliary functions are Python functions that control analysis logic, generated alert title, event grouping, routing of alerts, and metadata overrides. Rules are customizable and can import from standard Python libraries or .
Reference:
Deduplication is the process of grouping related events into a single alert, to prevent receiving duplicate alerts. Events triggering the same detection that also share a deduplication string, within the deduplication period, are grouped together in a single alert. The dedup
function is one way to define a deduplication string. It is limited to 1000 characters. Learn more about deduplication on .
Reference:
Reference:
Reference:
Visit the Panther Knowledge Base to that answer frequently asked questions and help you resolve common errors and issues.