,

Sigma

Task 1 Introduction-

Introduction

Detection engineering is an important role and task for a security analyst. It involves developing processes that will guide you as an analyst to identify threats before they cause any harm to an environment through the use of rules. This room will introduce you to Sigma, an open-source generic signature language used to write detection rules applicable across different SIEM backends.

Learning Objectives

Introduction to the Sigma rule language.

Learn about Sigma Rule writing syntax and conversion to various SIEM query languages.

Navigate through writing rules for various detections on Windows Event Logs.

Practice writing Sigma rules for an interactive case.

Prerequisites

It is advisable to check out the following rooms to understand the defensive security operations that would be useful for a security analyst during threat detection.

ยท Security Operations

ยท Windows Event Logs

ยท Sysmon

ยท Splunk 101

ยท Investigating with ELK 101

Answer to the questions of this section-

No Answer Needed

Task 2 What is Sigma? โ€“

Through log monitoring and analysis, SOC analysts are tasked with collecting, analysing and extracting as much usable information from logs and using it to build detection queries and searches for their environments. However, on most occasions, it becomes challenging to standardise investigations and have the ability to share them with other analysts for detection enrichment. Sharing Indicators of compromise (IOC) and signatures may not be enough, as log events are often left unattended. Here is where Sigma seeks to bridge the gap.

Sigma is an open-source generic signature language developed by Florian Roth & Thomas Patzke to describe log events in a structured format. This allows for quick sharing of detection methods by security analysts. It is mentioned that โ€œSigma is for log files as Snort is for network traffic, and Yara is for files.โ€

Sigma makes it easy to perform content matching based on collected logs to raise threat alerts for analysts to investigate. Log files are usually collected and stored in a database or SIEM solution for further analysis.

Sigma Use Cases

Sigma was developed to satisfy the following uses:

ยท To make detection methods and signatures shareable alongside IOCs and Yara rules.

ยท To write SIEM searches that avoid vendor lock-in.

ยท To share signatures with threat intelligence communities.

ยท To write custom detection rules for malicious behaviour based on specific conditions.

Sigma Development Process

As a SOC analyst, the process of using Sigma to write up your detection rules will involve understanding the elements mentioned below:

Sigma Rule Format: Generic structured log descriptions written in YAML.

Sigma Converter: A set of python scripts that will process the rules on the backend and perform custom field matching based on specified SIEM query language.

Machine Query: Resulting search query to filter out alerts during investigations. The query will be based on the specified SIEM.

The Sigma GitHub repo provides information about the project, public rules, tests and conversion tools. Please have a look at the project as we progress through the room.

Answer to the questions of this section-

No Answer Needed

Task 3 Sigma Rule Syntax โ€“

As indicated in the previous task, Sigma rules are written in YAML Ainโ€™t Markup Language (YAML), a data serialisation language that is human-readable and useful for managing data. Itโ€™s often used as a format for configuration files, but its object serialisation abilities make it a substitute for languages like JSON.

Common factors to note about YAML files are:

ยท YAML is case-sensitive.

ยท Files should have the .yml extension.

ยท Spaces are used for indentation and not tabs.

ยท Comments are attributed using the # character.

ยท Key-value pairs are denoted using the colon : character.

ยท Array elements are denoted using the dash โ€” character.

QuickYAML Guide

Sigma Syntax

Sigma Syntax templateFollowing the understanding of using YAML for Sigma rules, the syntax defines various mandatory and optional fields that go into every rule. This can be highlighted using the image:

Let us use an example of a WMI Event Subscription rule to define the different syntax elements. Download the attached task file, and open it in a text editor to go through this roomโ€™s rule syntax and rule writing sections.

Title: Names the rule based on what it is supposed to detect. This should be short and clear.

ID: A globally unique identifier mainly used by the developers of Sigma to maintain the order of identification for the rules submitted to the public repository, found in UUID format.

You may also add references to related rule IDs using the related attribute, making it easier to form relationships between detections. These relations would fall under the following types:

Derived: This will describe that the rule has sprung from another rule, which may still be active.

Obsolete: This will indicate that the listed rule is no longer being used.

Merged: This will indicate that the rule combines linked rules.

Renamed: This indicates the rule was previously identified under a different ID but has now been changed due to changes in naming schemes or avoiding collisions.

Similar: This attribute points to corresponding rules, such as indicating the same detection content applied to different log sources.

Status: Describes the stage in which the rule maturity is at while in use. There are five declared statuses that you can use:

Stable: The rule may be used in production environments and dashboards.

Test: Trials are being done to the rule and could require fine-tuning.

Experimental: The rule is very generic and is being tested. It could lead to false results, be noisy, and identify interesting events.

Deprecated: The rule has been replaced and would no longer yield accurate results. Therelated field is used to create associations between the current rule and one that has been deprecated.

Unsupported: The rule is not usable in its current state (unique correlation log, homemade fields).

Description: Provides more context about the rule and its intended purpose. With the rule, you can be as verbose as possible on the malicious activity you intend to detect.

Logsource: Describes the log data to be used for the detection. It consists of other optional attributes:

ยท Product: Selects all log outputs of a particular product. Examples are Windows, Apache.

ยท Category: Selects the log files written by the selected product. Examples are firewall, web, and antivirus.

ยท Service: Selects only a subset of the logs from the selected product. Examples are sshd on Linux or Security on Windows.

ยท Definition: Describes the log source and any applied configurations.

Detection: A required field in the detection rule describes the parameters of the malicious activity we need an alert for. The parameters are divided into two main parts: the search identifiers โ€” the fields and values that the detection should be searching for โ€” and condition expression โ€” which sets the action to be taken on the detection, such as selection or filtering. More on this is below.

This rule has a detection modifier that looks for logs with one of Windows Event IDs 19, 20 or 21. The condition informs the detection engine to match and select the identified logs.

FalsePositives: A list of known false positive outputs based on log data that may occur

Level: Describes the severity with which the activity should be taken under the written rule. The attribute comprises five levels: Informational -> Low -> Medium -> High -> Critical

Tags: Adds information that may be used to categorise the rule. Tags may include values for CVE numbers and tactics and techniques from the MITRE ATT&CK framework. Sigma developers have defined a list of predefined tags.

Search Identifiers and Condition Expressions

As mentioned earlier, the detection section of the rule describes what you intend to search for within the log data and how the selection and filters are to be evaluated. The definition of the search identifiers can comprise two data structures โ€” lists and maps โ€” which dictate the order in which the detection would be processed.

When the identifiers are provided using lists, they will be presented using strings linked with a logical โ€˜ORโ€™ operation. Mainly, they will be listed using hyphens (-). For example, below, we can look at an extract of the Netcat Powershell Version rule where the detection is written to match on the HostApplication field containing โ€˜powercatโ€™ or โ€˜powercat.ps1โ€™ as its value.

On the other hand, maps comprise key/value pairs where the key matches up to a field in the log data while the value presented is a string or numeral value to be searched for within the log. Maps follow a logical โ€˜ANDโ€™ operation.

As an example, we can look at the Clear Linux log rule where the selection term forms the map, and the rule intends to match on Image|endswith either of the values listed, AND CommandLine contains either value listed. This example shows how maps and lists can be used together when developing detections. It should be noted that endswith and contains are value modifiers, and two lists are used for the search values, where one of each group has to match for the rule to initiate an alert.

As we have mentioned the value modifier, it is worth noting that they are appended after the field name with a pipe character (|), and there are two types of value modifiers:

Transformation modifiers: These change the values provided into different values and can modify the logical operations between values. They include:

contains: The value would be matched anywhere in the field.

all: This changes the OR operation of lists into an AND operation. This means that the search conditions has to match all listed values.

base64: This looks at values encoded with Base64.

endswith: With this modifier, the value is expected to be at the end of the field. For example, this is representative of *\cmd.exe.

startswith: This modifier will match the value at the beginning of the field. For example, power*.

Type modifiers: These change the type of the value or sometimes even the value itself. Currently, the only usable type modifier is re, which is supported by Elasticsearch queries to handle the value as a regular expression.

For conditions, this is based on the names set for your detections, such as selection and filter, and will determine the specification of the rule based on a selected expression. Some of the terms supported include:

Logical AND/OR

1/all of search-identifier

1/all of them

not

An example of these conditional values can be seen in the extract below from the Remote File Copy rule, where the detection seeks to look for either of the tools: scp, rsync or sftp and with either filter values @ or :.

Another example to showcase a combination of the conditional expressions can be seen in the extract below from the Run Once Persistence Registry Event rule, where the detection seeks to look for values on the map that start and end with various registry values while filtering out Google Chrome and Microsoft Edge entries that would raise false positive alerts.

Click the link to find more information about the Sigma syntax specification.

Answer to the questions of this section-

Task 4 Rule Writing & Conversion โ€“

After going through the basic syntax of Sigma rules, it is crucial to understand how to write them based on a threat investigation. As a SOC analyst, you must go through the thought process of developing your detection and writing the rules appropriate for your environment. We shall use the scenario below to go through this process.

Start up the attached machine and give it 5 minutes to load. Login to the Kibana dashboard on http://MACHINE_IP/, which has been populated with logs for testing the detection rules written in this task and the practical scenario in task 6. Use the credentials THM_Analyst: THM_Analyst1234. Deploy the AttackBox and log in to the Kibana dashboard using Firefox.

Scenario

Image showing intel on the malicious use of AnyDesk.Administrators rely on remote tools to ensure devices are configured, patched and maintained. However, your SOC Manager just received and shared intel on how AnyDesk, a legitimate remote tool, can be downloaded and installed silently on a userโ€™s machine using the file description on the right-hand side. (Source: TheDFIRReport). As a SOC analyst, you have been tasked to analyse the intel and write a Sigma rule to detect the installation of AnyDesk on Windows devices.

You should use the SIGMA specification file downloaded from Task 3 as a basis for writing the rule. If you are using the AttackBox, the file is available in the directory /root/Rooms/sigma/Sigma_Rule_File.yml.

Step 1: Intel Analysis

The shared intel shows us a lot of information and commands to download and install AnyDesk. An adversary could wrap this up in a malicious executable sent to an unsuspecting user through a phishing email. We can start picking out values that would be important for detecting any occurrence of an installation.

Source URL: This marks the download source for the software, highlighted by the $url variable.

Destination File: The adversary would seek to identify a destination directory for the download. This is marked by the $file variable.

Installation Command: From the intel, we can see that various instances of CMD.exe are being used to install and set a user password by the script. From this, we can pick out the installation attributes such as โ€” install, โ€” start-with-win and โ€” silent.

Other essential pieces of information from the intel would include:

Adversary Persistence: The adversary would seek to maintain access to the victimโ€™s machine. In this instance, they would create a user account oldadministrator and give the user elevated privileges to run other tasks.

Registry Edit: We can also pick out the registry edit, where the added user is added to a SpecialAccounts user list.

With this information, we can evaluate the creation of a rule to aid in detecting when an installation has taken place.

Step 2: Rule Identification

We can start building our rule by filling in the Title and Description sections, given the information that we are looking for an AnyDesk remote tool installation. Let us also set the status as experimental , as this rule will be tested internally.

Step 3: Log Source

As indicated from our intel, Windows devices would be our targetted device. Windows Eventlog and Sysmon provide events such as process creation and file creation. Our case focuses on the creation of an installation process, thus listing our logsource category as process_creation.

Step 4: Detection Description

The detection section of our rule is the essential part. The information derived from the intel will define what we need to detect within our environment. For the AnyDesk installation, we noted the installation commands that would be used by the adversary that contains the strings: install, and start-with-win. We can therefore write our search identifiers as below with the modifiers contains and all to indicate that the rule will match all those values.

Additionally, we can include searching for the current directory where the commands will be executed from, C:\ProgramData\AnyDesk.exe

For our condition expression, this evaluates the selection of our detection.

Step 5: Rule Metadata

After adding the required and vital bits to our rule, we can add other helpful information under level, tags, references and false positives. We can reference the MITRE ATT&CK Command and Control tactic and its corresponding T1219 technique for tags.

With this, we have our rule, which we can now convert to the SIEM query of our choice and test the detection.

Rule Conversion

Sigma rules need to be converted to the appropriate SIEM target that is being utilised to store all the logs. Using the rule we have written above, we shall now learn how to use the sigmac and uncoder.io tools to convert them into ElasticSearch and Splunk queries.

Sigmac

Sigmac is a Python-written tool that converts Sigma rules by matching the detection log source field values to the appropriate SIEM backend fields. As part of the Sigma repo (Advisable to clone the repo to get the tool and all the available rules published by the Sigma team), this tool allows for quick and easy conversion of Sigma rules from the command line. Below is a snippet of how to use the tool through its help command, and we shall display the basic syntax of using the tool by converting the AnyDesk rule we have written to the Splunk query.

Note: Sigmac will be deprecated by end of 2022, and attention from the owners will shift to sigma-cli. However, a copy of Sigmac is available on the AttackBox, and you can initiate the use of the tool for the rest of the room using python3.9 root/Rooms/sigma/sigma/tools/sigmac.

The main options to be used are:

-t: This sets the targeted SIEM backend you wish to get queries for (Elasticsearch, Splunk, QRadar, ElastAlert).

-c: This sets the configuration file used for the conversion. The file handles the field mappings between the rule and the target SIEM environment, ensuring that the necessary fields are correct for performing investigations on your environment.

โ€” backend-option: This allows you to pass a backend configuration file or individual modifications that dictate alert options for the target SIEM environment. For example, in ElasticSearch, we can specify specific field properties to be our primary keyword_field to be searched against, such as fields that end in the .keyword or .security fields below:

Sigma developers are working on a python library that will be Sigmacโ€™s replacement, known as pySigma.

Uncoder.io

Uncoder.IO is an open-source web Sigma converter for numerous SIEM and EDR platforms. It is easy to use as it allows you to copy your Sigma rule on the platform and select your preferred backend application for translation.

We can copy our rule and convert it into different queries of our choice. Below, the rule has been converted into Elastic Query, QRadar and Splunk. You can copy the translation into the SIEM platform to test for any matches.

Convert the AnyDesk Installation Sigma rule we have written throughout this task to an Elastic Query and use it to analyse log data from the launched machine on the Kibana dashboard. Use the information found to answer the following questions.

TIP: Be aware that the converted queries may not all work verbatim as converted from the tools. This is due to the processing of regex characters (\,*), and you may be required to adjust the queries, especially around escaped blank space. For example, for this exercise, you have to remove the * characters from the result and only escape the colon (:) in the folder path and the directory slashes.

Answer to the questions of this section-

Answers-

Rule file is available in the directory- root/Rooms/sigma/Sigma_Rule_File.yml.

Conversion-

(process.command_line.text:*\-\-install* AND

process.command_line.text:*\-\-start\-with\-win* AND

process.working_directory.text:*C\:\\ProgramData\\AnyDesk.exe*)

Reason for error โ€“

So remove all * and \ from the conversion result

(process.command_line.text: โ€” install AND

process.command_line.text: โ€” start-with-win AND

process.working_directory.text:C\:\\ProgramData\\AnyDesk.exe)

Also select timeline- Last 4 years

AnyDesk Installation Event
AnyDesk Version

Task 5 SecOps Decisions โ€“

Threat and log investigations may flow in different directions depending on factors such as SIEM backends, log sources and process flows established within organisations. Sigma rules are not different; as an analyst, you must make various investigation decisions.

For example, the Sigmac CLI tool or Uncoder.io would be essential to the detection investigations. You may encounter instances where the tools produce slightly different conversion outputs from the same rule and may not entirely match up with your backend configuration.

Let us consider converting the Chmod Suspicious Directory Linux rule into Elastic Query. Starting with Sigmac, we set our target backend as Elastic Query using the -t es-qs option and follow that with selecting our preferred configuration option. After that, set the rule from your directory and obtain our output which is a query that matches the process using the field names image and commandline, with options that point to various directory files where it would be suspicious to find the โ€œchange modeโ€ chmod command being run.

Answer to the questions of this section-

No Answer needed.

Task 6 Practical Scenario โ€“

Itโ€™s time to test the knowledge gained about Sigma and its use. In this task, you are expected to write rules based on provided scenarios, convert them to the appropriate SIEM used in the deployed machine and identify any useful information using the queries to help you answer the questions.

Scenario

Your organisation, Aurora, has recently been experiencing unusual activities on some of the machines on the network. Amongst these activities, the IT Manager noted that an unknown entity created some scheduled tasks on one of the machines and that a ransomware activity was also recorded.

The SOC Manager has approached you to find ways of identifying these activities from the logs collected on the environment. It would be best if you used Sigma rules to set your detection parameters and perform search queries through the Kibana dashboard.

To complete the task, you will require two Sigma rules processed into ElasticSearch to query for the scheduled task and the ransomware events. Below are tips to construct a good rule for the task:

ยท For the Scheduled Task, understand that it is a process creation event.

ยท The ruleโ€™s detection variables should contain image and commandline arguments.

ยท You may choose to exclude SYSTEM accounts from the query.

ยท For the ransomware activity, youโ€™ll look for a created file ending with .txt.

ยท The file creation process would be run via cmd.exe.

Change the default time window on Kibana from the default last 30 days to last 1 year (or ensure it encompasses 2022).

Answer to the questions of this section-

Have Fun and Enjoy Hacking! Do visit other rooms and modules on TryHackMe for more learning.

Leave a Reply

Your email address will not be published. Required fields are marked *