TS Sysmon Community Guide
TS Sysmon Community Guide
Carlos Perez
28.01.2020
Contents
What is Sysmon 2
The Sysmon Driver . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
Configuration 12
Command Line Parameters . . . . . . . . . . . . . . . . . . . . . . . . 13
Filter Operators . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
Event Schema . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
Configuration File . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
RuleGroups . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18
Configuration File Best Practices . . . . . . . . . . . . . . . . . . . . . 19
Configuration Tampering . . . . . . . . . . . . . . . . . . . . . . 21
Configuration Deployment . . . . . . . . . . . . . . . . . . . . . . . . . 23
Deployment Script . . . . . . . . . . . . . . . . . . . . . . . . . . 24
GPO Configuration Deployment . . . . . . . . . . . . . . . . . . 24
1
Driver Loading . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
Registry Actions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 44
Image Loading . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48
Network Connections . . . . . . . . . . . . . . . . . . . . . . . . . . . . 50
Create Remote Thread . . . . . . . . . . . . . . . . . . . . . . . . . . . 55
Raw Access Read . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 58
DNS Query . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 59
WMI Events . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 62
What is Sysmon
Sysmon is a free tool initially developed by Mark Russinovich and has contri-
butions by Tomas Garnier, David Magnotti, Mark Cook, Rob Mead, Giulia
Biagini, and others at Microsoft. The tool is designed to extend the current
logging capabilities in Windows to aid in understanding and detecting attackers
by behavior. It was developed originally for internal use at Microsoft. (Note:
There are still two versions of the tool—internal and external.) Currently, the
tool supports 64-bit and 32-bit systems and uses a single command line tool for
installation and configuration management.
For ease of collecting the logs, all of the events generated are saved in Microsoft-
Windows-Sysmon/Operational EventLog, which allows current security products
that already leverage collection from the EventLog in Windows.
Sysmon is able to monitor for a series of actions on a Windows host that relate
to existing behavior that is abused by threat actors. With this view on the
actions, defenders are able to better detect abnormal behavior and abuses on a
system.
The table below shows the evet types and event ID for each.
EventType EventId
Sysmon Service Status Changed 0
ProcessCreate 1
FileCreateTime 2
NetworkConnect 3
Service State Change 4
ProcessTerminate 5
DriverLoad 6
ImageLoad 7
CreateRemoteThread 8
RawAccessRead 9
ProcessAccess 10
FileCreate 11
Registry object added or deleted 12
Registry Create 13
2
EventType EventId
Registry Rename 14
FileCreateStreamHash 15
Sysmon Config Change 16
Named Pipe Create 17
Named Pipe Connected 18
WMI Event Filter 19
WMI Event Consumer 20
WMI Consumer to Filter 21
DNS Query 22
Error 255
3
Figure 1: Sysmon Driver Behaviour
4
Figure 2: Minifilter
5
Figure 4: kernel hook2
6
• Install - Install the driver, manifest and service on the host.
• Configure - Parses a given configuration file or command line parameters
to generate a configuration that is stored in the registry.
• Uninstall - Removes the driver and service from the host.
The semi-hidden and undocumented method is Debug, in which a specified
configuration is parsed, and live events are shown in the console.
Install
The key parameter that initiates the installation mode of Sysmon is the -i switch.
The installation process will be as follows:
• Decompresses and saves driver and copy of itself in to %systemroot%
• Registers event log manifest
• Creates a service
• Enables a default configuration (ProcessCreation, ProcessTermination,
DriverLoad , FileCreationTimeChanged, SHA1 for Images) if no configura-
tion file is passed using the -c <configuration file> parameter
The Installation process allows for some obfuscation:
• Driver name can be changed
• Service name can be changed
• Sysmon binary name can be renamed.
These obfuscation changes will also affect registry paths for the driver and
processes service keys. All of the obfuscation methods are part of the installation
option set.
The installation options are:
• Default – Driver is installed and named SysmonDrv and service Sysmon
1 sysmon.exe --i --accepteula
• Renamed Driver – The driver file and registry entry are renamed. Name
has an 8-character limit.
1 sysmon.exe -i -d <drivername>
The installation process on a x64 system with the binary named sysmon.exe
that is intended to work across x64 and x86 architectures is shown below. This
7
is important since some of the actions may cause confusion or trigger alerts on
monitoring systems.
One important thing to keep in mind when obfuscating the driver name and
service name is that certain characteristics remain the same.
• Service description remains the same. (This can be modified post-install.)
• Driver Altitude number remains the same.
• The eventlog remains the same so as to not break collection from SIEM
products.
x64 Process Sysmon will create 2 registry keys to define the services for its
operation under HKLM\SYSTEM\CurrentControlSet\Services
• Sysmon - Service that talks to the driver and performs the filtering action.
It is named with the same name as the sysm onexecutable.
• SysmonDrv - Kernel Driver Service, this service loads the Sysmon driver
with an altitude number of 385201
The settings for each service are:
Main Service:
8
Figure 7: x64 install process
9
1 sysmon.exe -i --accepteula -c <config file>
We can control the hashing algorithm used for events that hash images and we
can control checking of revocation of signatures.
The hashing algorithm or combination of them can be specified with the -h
<sha1|sha2|md5|imphash|*> The specified algorithms will be used to hash
all images.
1 sysmon.exe -i -c -h <sha1|sha2|md5|imphash\|*>
We can specify checking to see if certificates are revoked using the -r parameter.
1 sysmon.exe -i -c -r**
SSome basic filtering can be done also from the command line. Only filtering by
process name can be done for NetworkConnect, ImageLoad, and ProcessAccess
via the command line.
• NetworkConnect - Track network connections.
1 sysmon.exe -i -c -n [<process,...>]
Uninstall
To uninstall Sysmon, a binary with the same name as the main service, if
renamed, has to be run with the -u switch parameter.
1 sysmon.exe -u
When executed the command will run a series of steps to uninstall the service,
driver and remove files for the tool.
There is an undocumented value that can be passed to the -u parameter of
“force” to force the removal of the services even if a stop was not possible.
1 sysmon.exe -u force
10
Figure 8: Uninstall Process
11
Installation Best Practice
Installation best practices that can be followed to aid and minimize risk when
deploying the Sysmon tool include:
• Keep a repository of Sysmon versions archived; Microsoft does not provide
older versions for download.
• Sysmon is very dependent on the version of the binary for its configuration.
The install/upgrade script should check the binary version for:
– Upgrade
– Version for applying initia config
• If a GPO is used to push scheduled tasks for upgrades or to push config-
uration, use a WMI filter to target the specific version that was tested.
Example:
1 SELECT * FROM CIM_Datafile WHERE
(Name="c:\\Windows\\Sysmon64.exe" OR
Name="c:\\Windows\\Sysmon.exe") AND version="10.0.4.1"
Configuration
The configuration options of Sysmon and the structure of the configuration file
are defined in its schema. Each version of Sysmon that adds capabilities raises
the schema version, and this version number is not tied to the binary version
number.
To take a look at this schema, we would run the binary with the -s [schema
version] parameter; if no schema version is specified, we would get the latest
one for the binary.
When we look at the XML representation of the schema, we see the manifest
element has two attributes for versioning:
12
• schemaversion - The version number of the schema
• binaryversion - The binary version number of the compiled schema
Under this manifest element are two main elements:
• configuration - Command line switches for the executable and the filtering
operators
• events - This section defines each event type and field we can filter on
13
• -c : apply config
1 sysmon.exe -c [configfile path]
• -u : un-install Sysmon
1 sysmon.exe -u [force]
• -t : Debug mode
1 sysmon.exe -t [configfile path]
• -s : Print schema
1 sysmon.exe -s [schema version]
The option elements under the comment “Configuration file” allow for the
configuration of filters and parameters that relate to filters.
• -h : Hashing algorithm to has images.
1 sysmon.exe -c -h <sha1|sha2|md5|imphash|*>
14
1 sysmon.exe -c -k [<process,...>]
-g and –dns switches are listed but as of the current version, they
do not update the configuration.
Filter Operators
In the filters element under configuration is the list of operators that can be
used to filter against the fields of each event type.
Operator Meaning
Is Exact match.
IsNot Negates and exact match
Contains The string is contained in any part of the value of the
field.
Excludes Excludes the event from the logic if the event is the
value matches
Excludes All Exclude if all values match. (values are separate by “;” )
Excludes Any Excludes if any of the values match. (values are separate
by “;” )
Image Name of the image without the full path.
BeginsWith String value starts with.
EndsWith String value ends with
LessThan Numeric value is less than
MoreThan Numeric value is more than
Contain Any Contains any of the values. (values are separate by “;” )
Contains All Contains all of the values. (values are separate by “;” )
Each of these operators execute against the value in a given field for each of the
event types.
Event Schema
Under the events element each event that Sysmon generates is defined as an
event element. Each event is defined as shown below:
• name : Name of event
• value : The EventID for the event
• level : Event severity level
• template : Event manifest template used for the event
15
• ruleName : Name of rule we filter on
• ruledefault : The default action of a rule if not specified
• version : The version of the event
We can filter on the Field Names defined in the data elements. They are defined
as:
• Name : Name of filed
• inType : Type of data received in to the driver
• outType : Data type the data is presented as
16
• RawAccessRead - Raw access to a file by a process bypassing the file
system controls
• FileCreateStreamHash - An alternate stream was created and the con-
tent of the stream is hashed; information on the process that created the
stream is logged
• RegistryEvent - Logs the creation, deletion, and modification of specific
registry keys and values; information on the process that took the action
is logged
• FileCreate - Information of a file that is created including the process
that created the file
• PipeEvent - Named Pipe communication between two processes and its
relevant information
• WmiEvent - Information on the creation, deletion, and modification of
WMI permanent event components in the CIM database
Configuration File
The main method of configuration of Sysmon is through the use of XML con-
figuration files. XML configuration files allow for higher flexibility since more
filtering options are possible by applying logical operations to the fields that are
defined by the schema version for the event types.
Previous schemas can be used in newer releases of the binary allowing for
upgrading of the binary without the need to update the configuration. The
schema is defined on the root element (Sysmon) of the configuration file with
the attribute schemaversion.
17
• EvenType Filters organized using RuleGroups
• EventType Filters organized in to Rule sets inside RuleGroups.
We can have up to two instances of each EventType (one include and one
exclude) for the entire configuration, whether or not RuleGroups are used. On
SchemaVersion 4.22 and above, the default relation between filters is AND.
Below is an example where if the filters match, they are included and placed in
the EventLog using an intrinsic AND logic.
This type of configuration is only good with Schema 4.22 and above. It is
recommended that this is used only for quick tests due the limitation of the
AND logic for filters.
RuleGroups
The RuleGroup element allows for the modification of the logic of the filters and
also allows for more complex logic since multiple Rule elements with multiple
filters can be created and the logic for the filters can be modified in order to
capture actions in a more granular way.
Remember: You can only have one single EventType per RuleGroup. Sysmon
will not error if you have more than one, but only the first EventType filters
will be loaded.
In a RuleGroup element, the name attribute is not used to populate the RuleName
field of an event when one is created. While it may be used for a description,
XML comments are a better option. When choosing the name to go in the
18
Figure 16: RuleGroup
RuleName field, the order of precedence for RuleName is Filter -> RuleGroup
name attributes. It is recommended that names be placed on the individual
filters to be able to leverage the field more efficiently when filtering logs on a
SIEM platform. One thing to keep in mind is that when multiple filters are in a
Rule element, only the first filter name attribute is used.
When using AND in a Rule element, the name used to populate the RuleName
will be based on the order of the filters as they appear on the schema where the
last matching one is the one used. When using OR in a Rule element, the name
used to populate the RuleName will be the filter that matches.
Rules are processed in the order they are placed in the configuration file. This is
important because once a Rule matches and the information for that EventType
is included in the Windows EventLog, no other rule will be processed against
that action. Filters that are not in a Rule element will be processed in the order
that they appear in the schema. This also applies to multiple filters inside a
Rule where the schema order is used.
19
Figure 17: RuleGroup Order
20
On a system where the Sysmon service process consumes a lot of CPU resources,
the number of filters and operators should be reviewed. The operators that use
slightly more CPU are:
• contains
• contains all
• contains any
A method for checking applied configuration is hashing the configuration in the
registry. https://github.com/PSGumshoe/PSGumshoe/blob/master/EventLog/
Get-SysmonRuleHash.ps1
Since getting stated can be complex, some great resources that serve as starting
points for Rule development and reference include:
• Swift On Security configuration example https://github.com/
SwiftOnSecurity/sysmon-config
• Olaf Hartong Sysmon Configuration Modules https://github.com/
olafhartong/sysmon-modular
Configuration Tampering
One of the actions an attacker takes is the identification of controls and logging
on a system.
Due to initial footprint and safety, most advanced attackers limit their actions to
enumerate controls to the most common actions that elements that will trigger
a monitoring solution. The most common methods used are:
• Service list.
• Process list.
• Listing of installed applications from the registry.
This does not mean that an attacker will not use more advanced methods to
enumerate controls and find Sysmon on the system.
Detection of Sysmon is achieved by looking at the areas that cannot be changed.
21
Indicator Can it be Changed
Driver Name YES
Service Name YES
Registry Config Path YES
Driver altitude Number NO
EventLog Path and Name NO
Sysmon Service Description NO (Manually)
When Sysmon configuration is modified using the Sysmon command line tool,
an EventId 16 is generated. If the registry binary value is modified directly, no
event is generated, and configuration is applied as soon as the value is modified.
When a GPO is used to update configuration by default every 90 minutes,
the configuration will be updated. A better solution is to use a configuration
management solution like DSC that can monitor for changes and update as soon
as a change is detected.
Sysmon can be configured to monitor its own conjuration to detect whether an
attacker deletes or alters it. In the event that it is cleared, this will be the last
event logged by Sysmon itself from its configured filters.
22
In case the configurations are cleared, the default one will take over:
• ProcessCreation
• ProcessTermination
• DriverLoad
• FileCreationTimeChanged
• SHA1 for Images
Since any user in the system can read the rule binary data, an attacker can
operate around rule configurations once they have read them by:
• Execute tasks not logged.
• Execute tasks that would blend in with normal logged actions
Existing tools for parsing rules out of the registry break often as Sysmon is
updated, since the way the information is structured in the binary blob is not
documented. However, an attacker can export and import into the test system
and use Sysmon to read the configuration.
Configuration Deployment
Most environments that have the capabilities to leverage Sysmon enhanced log
collection also have software deployment systems like Altiris, System Center
Configuration Manager, Desired State Configuration, etc. This is why these are
just general recommendations.
23
Deployment Script
On most of these environments, the deployment of Sysmon is managed by using
scripts, with PowerShell being the most flexible one.
An install script should
• Check if Sysmon is installed; if not, Install.
• If Sysmon is installed, check the version and upgrade if needed.
• After an uninstall, ensure the registry key and files are removed before
upgrading. (There have been issues in the past.)
1 $DriverName = SysmonDrv.sys
2 $CurrentVersion = 10.41
3 # Check if the driver if present
4 $Present = Test-Path -Path "C:\Windows\$($DriverName)" -PathType
Leaf
5 if ($Present) {
6 Write-Host -Object "[+] Sysmon was found." -ForegroundColor
Green
7 # Check if the version on host is the approved one.
8 $HostVersion = (Get-Item
"C:\Windows\$($DriverName)").VersionInfo.FileVersion
9 if ($CurrentVersion -eq $HostVersion) {
10 Write-Host -Object "[+] Sysmon is current approved
version." -ForegroundColor Green
11 } else {
12 # Execute upgrade process.
13 Write-Host -Object "[-] Sysmon needs upgrade."
-ForegroundColor Red
14 <path to Sysmon.exe> -U
15 <path to Sysmon.exe> -I
16 }
17 } else {
18 # Execute install process.
19 }
24
2. Create a new (or edit an existing) GPO and assign it to the appropri-
ate Active Directory Organizational Unit.
3. Right click on the GPO and select Edit
4. Expand Configuration -> Preferences ->Windows Settings ->
Registry
5. Right Click on Registry New -> Registry Wizard
25
Figure 22: GPO Select Settings
EventType EventId
Sysmon Service Status Changed 0
ProcessCreate 1
FileCreateTime 2
NetworkConnect 3
Service State Change 4
ProcessTerminate 5
DriverLoad 6
ImageLoad 7
CreateRemoteThread 8
RawAccessRead 9
ProcessAccess 10
FileCreate 11
Registry object added or deleted 12
Registry Create 13
Registry Rename 14
FileCreateStreamHash 15
Sysmon Config Change 16
Named Pipe Create 17
Named Pipe Connected 18
WMI Event Filter 19
WMI Event Consumer 20
WMI Consumer to Filter 21
DNS Query 22
26
EventType EventId
Error 255
27
Figure 24: CommanLine config reset
28
Service State Change
EventID 4 is generated for Service State Changes. This event logs Start and Stop
events when the Sysmon service is controlled via the Service Control Manager
API (Services.mmc, sc.exe, net.exe, etc.). To better detect any manipulation
of the service, Windows Auditing should be enabled for the service registry key
and a Sysmon Registry filter for the service.
Fields for the event are:
• UtcTime: Time the service state changed.
• State: Started or Stopped
• Version: Version of the Sysmon binary
• SchemaVersion: Schema Version of the Sysmon binary.
Example:
File Events
File Create
Via its filter driver, Sysmon can log the creation of files and information on what
process is creating the file using EventID 11. This allows defender to filter for:
• Dropping of files for later execution (PowerShell, Office Apps, certutil.exe)
29
• Modification of system configurations (Scheduled Tasks, WMI)
• Detection of malicious behaviors that create temporary or log files (.Net
compile and run, DotNet2JS)
Since AV minifilter loads before Sysmon (due to the lower altitude number
range), if an AV or EDR minifilter driver detects a malicious file and blocks it
writing to disk, Sysmon will not see the event.
30
• CreationUtcTime: File creation time
Example monitoring for script file creation by extension:
1 <Sysmon schemaversion="4.22">
2 <EventFiltering>
3 <RuleGroup name="" groupRelation="or">
4 <FileCreate onmatch="include">
5 <!-- Detect Dangerous File Type Creation -->
6 <Rule groupRelation="or">
7 <TargetFilename
name="technique_id=T1170,technique_name=Mshta"
condition="end
with">.hta</TargetFilename>
8 </Rule>
9
10 <Rule groupRelation="or">
11 <TargetFilename
name="technique_id=T1064,technique_name=Scripting"
condition="end
with">.bat</TargetFilename> <!--Batch
scripting-->
12 <TargetFilename condition="end
with">.cmd</TargetFilename> <!--Batch
scripting | Credit @ion-storm -->
13 <TargetFilename condition="end
with">.ps1</TargetFilename>
<!--PowerShell-->
14 <TargetFilename condition="end
with">.ps2</TargetFilename>
<!--PowerShell-->
15 <TargetFilename condition="end
with">.jse</TargetFilename> <!--Registry
File-->
16 <TargetFilename condition="end
with">.vb</TargetFilename>
<!--VisualBasicScripting files-->
17 <TargetFilename condition="end
with">.vbe</TargetFilename>
<!--VisualBasicScripting files-->
18 <TargetFilename condition="end
with">.vbs</TargetFilename>
<!--VisualBasicScripting files-->
19 </Rule>
20
21 <!-- Detect ClickOnce -->
22 <Rule groupRelation="or">
31
23 <TargetFilename name="ClickOnce File
Execution" condition="end
with">.application</TargetFilename>
<TargetFilename condition="end
with">.appref-ms</TargetFilename>
24 </Rule>
25
26 <!-- MSBuild -->
27 <Rule groupRelation="or">
28 <TargetFilename
name="technique_id=T1127,technique_name=Trusted
Developer Utilities" condition="end
with">.*proj</TargetFilename><!--Microsoft:MSBuild:Script
More information:
https://twitter.com/subTee/status/885919612969394177-->
29 <TargetFilename condition="end
with">.sln</TargetFilename>
30 </Rule>
31
32 <!-- Macro File Creation -->
33 <Rule groupRelation="or">
34 <TargetFilename name="Microsoft:Office:
Macro" condition="end
with">.docm</TargetFilename>
35 <TargetFilename condition="end
with">.pptm</TargetFilename>
36 <TargetFilename condition="end
with">.xlsm</TargetFilename>
37 <TargetFilename condition="end
with">.xlm</TargetFilename>
38 <TargetFilename condition="end
with">.dotm</TargetFilename>
39 <TargetFilename condition="end
with">.xltm</TargetFilename>
40 <TargetFilename condition="end
with">.potm</TargetFilename>
41 <TargetFilename condition="end
with">.ppsm</TargetFilename>
42 <TargetFilename condition="end
with">.sldm</TargetFilename>
43 <TargetFilename condition="end
with">.xlam</TargetFilename>
44 <TargetFilename condition="end
with">.xla</TargetFilename>
45 </Rule>
46
32
47 <!-- DotNettoJS UsageLog -->
48 <Rule groupRelation="or">
49 <TargetFilename
name="technique_id=1218,technique_name=DotnettoJs"
condition="contains">AppData\Local\Microsoft\CLR_v2.0\UsageLogs\</Ta
v2 binary started-->
50 <TargetFilename condition="end
with">\UsageLogs\cscript.exe.log</TargetFilename>
51 <TargetFilename condition="end
with">\UsageLogs\wscript.exe.log</TargetFilename>
52 <TargetFilename condition="end
with">\UsageLogs\wmic.exe.log</TargetFilename>
53 <TargetFilename condition="end
with">\UsageLogs\mshta.exe.log</TargetFilename>
54 <TargetFilename condition="end
with">\UsageLogs\svchost.exe.log</TargetFilename>
55 <TargetFilename condition="end
with">\UsageLogs\regsvr32.exe.log</TargetFilename>
56 <TargetFilename condition="end
with">\UsageLogs\rundll32.exe.log</TargetFilename>
57 </Rule>
58 </FileCreate>
59 </RuleGroup>
60 </EventFiltering>
61 </Sysmon>
33
• TargetFilename: Full path name of the file
• CreationUtcTime: New creation time of the file
• PreviousCreationUtcTime: Previous creation time of the file
Example:
1 <Sysmon schemaversion="4.22">
2 <EventFiltering>
3 <RuleGroup name="Include Filter for FileCreateTime"
groupRelation="or">
4 <FileCreateTime onmatch="include">
5 <!-- Detect File Time changes on user files -->
6 <Rule groupRelation="or">
7 <Image name="technique_id=T1099"
condition="begin with">C:\Users</Image>
8 </Rule>
9 </FileCreateTime>
10 </RuleGroup>
11
12 <RuleGroup name="Exclude Filters for FileCreateTime"
groupRelation="or">
13 <FileCreateTime onmatch="exclude">
14 <!-- Detect Dangerous File Type Creation -->
15 <Rule groupRelation="or">
16 <Image
condition="image">OneDrive.exe</Image>
<!--OneDrive constantly changes file
times-->
17 <Image
condition="image">C:\Windows\system32\backgroundTaskHost.exe</Image>
18 <Image condition="contains">setup</Image>
<!--Ignore setups-->
19 <Image condition="contains">install</Image>
<!--Ignore setups-->
20 <Image condition="contains">Update\</Image>
<!--Ignore setups-->
21 <Image condition="end
with">redist.exe</Image> <!--Ignore
setups-->
22 <Image condition="is">msiexec.exe</Image>
<!--Ignore setups-->
23 <Image
condition="is">TrustedInstaller.exe</Image>
<!--Ignore setups-->
24 </Rule>
25 </FileCreateTime>
34
26 </RuleGroup>
27 </EventFiltering>
28 </Sysmon>
35
Figure 31: stream2
36
Figure 32: process
Named Pipes
A named pipe is a named, one-way or duplex pipe for communication between
the pipe server and one or more pipe clients. Each named pipe has a unique name
37
that distinguishes it from other named pipes in the system’s list of named objects.
Pipe names are specified as \\ServerName\pipe\PipeName when connection is
local a “.” would be used as ServerName.
Named pipes are used for pivoting in several RATs/Implants to have SMB
connections between machines. Some tools will use named pipes to talk to
injected code in other processes.
Sysmon will generate a events
• EventID 17 when a named pipe server is created.
• EventID 18 when a client connects to a named piper server.
For named pipes there are 2 approaches that can be taken:
• Include all events and exclude known good.
• Include only known malicious actors.
The first approach requires more maintenance but in case of a breach offers more
value. The second one would be more targeted but this kind of detection is
better served with automation in the SIEM. Experienced attackers normally avoid
known Pipes to prevent breaking normal operation of the system applications.
The process for PipeName values should be constant process.
Initial rule for collecting PipeEvent events
1 <Sysmon schemaversion="4.22">
2 <EventFiltering>
3 <RuleGroup name="" groupRelation="or">
4 <!--Filter none driver default rule events-->
5 <ProcessCreate onmatch = "include">
6 </ProcessCreate>
7 <ProcessTerminate onmatch = "include">
8 </ProcessTerminate>
9 <FileCreate onmatch = "include">
10 </FileCreate>
11 <FileCreateTime onmatch = "include">
12 </FileCreateTime>
13
14 <!--Include all PipeEvent events-->
15 <PipeEvent onmatch="exclude">
16 </PipeEvent>
17 </RuleGroup>
18 </EventFiltering>
19 </Sysmon>
38
Figure 33: process
39
• RuleName: Name of rule that triggered the event.
• EventType: CreatePipe
• UtcTime: Time in UTC when event was created
• ProcessGuid: Process Guid of the process that created the pipe
• ProcessId: Process ID used by the OS to identify the process that created
the pipe
• PipeName: Name of the pipe created
• Image: File path of the process that created the pipe
The fields for the Pipe Connect Event are:
• RuleName: Name of rule that triggered the event.
• EventType: ConnectPipe
• UtcTime: Time in UTC when event was created
• ProcessGuid: Process Guid of the process that connected the pipe
• ProcessId: Process ID used by the OS to identify the process that
connected the pipe
• PipeName: Name of the pipe connected
• Image: File path of the process that connected the pipe
Example excluding known good Pipe Names
1 <Sysmon schemaversion="4.22">
2 <EventFiltering>
3 <RuleGroup name="Exclude Filters for Named Pipes"
groupRelation="or">
4 <PipeEvent onmatch="exclude">
5 <!-- Filter out known good named pipes -->
6 <Rule groupRelation="or">
7 <!-- OS Pipes-->
8 <PipeName condition="is">\ntapvsrq</PipeName>
9 <PipeName condition="is">\srvsvc</PipeName>
10 <PipeName condition="is">\wkssvc</PipeName>
11 <PipeName condition="is">\lsass</PipeName>
12 <PipeName condition="is">\winreg</PipeName>
13 <PipeName condition="is">\spoolss</PipeName>
14 <PipeName condition="contains">Anonymous
Pipe</PipeName>
15 <Image
condition="is">c:\windows\system32\inetsrv\w3wp.exe</Image>
16
17 <!-- MSSQL Named Pipes-->
40
18 <PipeName
condition="is">\SQLLocal\MSSQLSERVER</PipeName>
19 <PipeName
condition="is">\SQLLocal\INSTANCE01</PipeName>
20 <PipeName
condition="is">\SQLLocal\SQLEXPRESS</PipeName>
21 <PipeName
condition="is">\SQLLocal\COMMVAULT</PipeName>
22 <PipeName
condition="is">\SQLLocal\RTCLOCAL</PipeName>
23 <PipeName
condition="is">\SQLLocal\RTC</PipeName>
24 <PipeName
condition="is">\SQLLocal\TMSM</PipeName>
25 <Image condition="is">Program Files
(x86)\Microsoft SQL
Server\110\DTS\binn\dtexec.exe</Image>
26 </Rule>
27 </PipeEvent>
28 </RuleGroup>
29 </EventFiltering>
30 </Sysmon>
One thing to consider is that Sysmon uses a minifilter just like the file events,
any AV or EDR with a higher altitude number if it triggers on the named pipe
and block Sysmon will not log the event.
Driver Loading
Sysmon will log EventID 6 for the loading of drivers. Drivers have been used by
attackers for the installation of rootkits or to run tooling that needs to run at
the kernel level. Mimikatz is known to use a driver to perform tasks to query
and modify the UFI to bypass process protections.
Sysmon will provide code signing information allowing filtering on those fields.
Sysmon can also check if a certificate the driver signed has been revoked.
A recommended action for this event is to filter on the Signature and Signa-
tureStatus fields and exclude known drivers. The main reason to filter on both
fields is that many of the attacks steal certificates that are later revoked. By
confirming that the SignatureStatus is valid, we can find easier drivers signed
by a vendor who has been forced to revoke that specific signing certificate.
The process for Signature values should be a constant one.
Initial rule for collecting DriverLoad events
1 <Sysmon schemaversion="4.22">
41
Figure 34: process
2 <EventFiltering>
3 <RuleGroup name="" groupRelation="or">
4 <!--Filter none driver default rule events-->
5 <ProcessCreate onmatch = "include">
6 </ProcessCreate>
7 <ProcessTerminate onmatch = "include">
8 </ProcessTerminate>
9 <FileCreate onmatch = "include">
10 </FileCreate>
11 <FileCreateTime onmatch = "include">
12 </FileCreateTime>
13
14 <!--Include all driver events-->
15 <DriverLoad onmatch="exclude">
16 </DriverLoad>
17 </RuleGroup>
18 </EventFiltering>
19 </Sysmon>
42
• RuleName: Name of rule that triggered the event.
• UtcTime: Time in UTC when event was created
• ImageLoaded: File path of the driver loaded
• Hashes: Hashes captured by Sysmon driver
• Signed: Is the driver loaded signed
• Signature: Signer name of the driver
• SignatureStatus: Status of the signature
Example filtering out drivers signed by Microsoft, Intel and VMware for a VDI
environment
1 <Sysmon schemaversion="4.22">
2 <CheckRevocation/>
3 <EventFiltering>
4 <RuleGroup name="" groupRelation="or">
5 <DriverLoad onmatch="exclude">
6 <!--Exclude signed Microsoft drivers-->
7 <Rule groupRelation="and">
8 <Signature
condition="contains">Microsoft</Signature>
9 <SignatureStatus
condition="is">Valid</SignatureStatus>
10 </Rule>
11 <!--Exclude signed Inter drivers-->
12 <Rule groupRelation="and">
13 <Signature condition="begin with">Intel
</Signature>
14 <SignatureStatus
condition="is">Valid</SignatureStatus>
15 </Rule>
16 <!--Exclude signed VMware drivers-->
17 <Rule groupRelation="and">
18 <Signature condition="begin
with">VMware</Signature>
19 <SignatureStatus
condition="is">Valid</SignatureStatus>
20 </Rule>
21 </DriverLoad>
22 </RuleGroup>
23 </EventFiltering>
24 </Sysmon>
43
Registry Actions
Sysmon has the capability to monitor for three major actions against Registry
• EventID 12 - Registry object added or deleted
• EventID 13 - Registry value set
• EventID 14 - Registry object renamed The Windows Registry has been
a source of information gathering, persistence, storage, and configuration
control for attackers since its wider use introduction in Windows NT
4.0/Windows 95.
Sysmon uses abbreviated versions of Registry root key names, with the following
mappings:
44
• TargetObject: Complete path of the modified registry key
• Details: Details added to the registry key
Registry Rename Fields:
• RuleName: Name of rule that triggered the event
• UtcTime: Time in UTC when event was created
• EventType: RenameKey
• ProcessGuid: Process GUID of the process that renamed a registry value
and key
• ProcessId: Process ID used by the OS to identify the process that renamed
a registry value and key
• Image: File path of the process that renamed a registry value and key
• TargetObject: Complete path of the renamed registry key
• NewName: New name of the registry key
This event type is better used in a targeted manner given the size of the registry
and how it is used by a multitude of processes on a daily basis in Windows.
In registry events, the value name is appended to the full key path with a "\"
delimiter.
Default key values are named "\(Default)"
When filtering for keys or values in HKCU, use contains or end with when
filtering against TargetObject since the SID of the user is appended after the
Hive name.
Since the value name is appended when specifying a registry path in Targe-
tObject, where we also want to catch modification of values under the key,
the contains operator is better suited than ends with. For value events, the
Detail element of the event will contain the type of value.
Sysmon does not log the actual value being set nor a previous or new one being
modified.
45
Figure 36: HKCU Test Event
46
https://blog.cylance.com/windows-registry-persistence-part-1-introduction-attack
] -->
10 <TargetObject condition="end
with">\ImagePath</TargetObject>
<!--Microsoft:Windows: Points to a service s EXE [
https://github.com/crypsisgroup/Splunkmon/blob/master/sysmon.cfg
] -->
11 <TargetObject condition="end with">\Start</TargetObject>
<!--Microsoft:Windows: Services start mode changes
(Disabled, Automatically, Manual)-->
12 <TargetObject
name="technique_id=T1004,technique_name=Winlogon
Helper DLL" condition="begin
with">HKLM\SOFTWARE\Microsoft\Windows
NT\CurrentVersion\Winlogon\Notify</TargetObject><!--Microsoft:Windows:
Autorun location [
https://www.cylance.com/windows-registry-persistence-part-2-the-run-keys-and-sea
] -->
13 <TargetObject
name="technique_id=T1004,technique_name=Winlogon
Helper DLL" condition="begin
with">HKLM\SOFTWARE\Microsoft\Windows
NT\CurrentVersion\Winlogon\Userinit</TargetObject>
<!--Microsoft:Windows: Autorun location [
https://www.cylance.com/windows-registry-persistence-part-2-the-run-keys-and-sea
] -->
14 <TargetObject
name="technique_id=T1004,technique_name=Winlogon
Helper DLL" condition="begin
with">HKLM\SOFTWARE\Microsoft\Windows
NT\CurrentVersion\Winlogon\Shell</TargetObject>
15 <TargetObject condition="begin
with">HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows
NT\CurrentVersion\Drivers32</TargetObject>
<!--Microsoft:Windows: Legacy driver loading |
Credit @ion-storm -->
16 <TargetObject
name="technique_id=T1060,technique_name=Registry Run
Keys / Start Folder" condition="begin
with">HKLM\SYSTEM\CurrentControlSet\Control\Session
Manager\BootExecute</TargetObject>
<!--Microsoft:Windows: Autorun | Credit @ion-storm |
[
https://www.cylance.com/windows-registry-persistence-part-2-the-run-keys-and-sea
] -->
17 <TargetObject
47
name="technique_id=T1042,technique_name=Change
Default File Association"
condition="contains">\Explorer\FileExts</TargetObject><!--Microsoft:Windows:
Changes to file extension mapping-->
18 <TargetObject
condition="contains">\shell\install\command</TargetObject>
<!--Microsoft:Windows: Sensitive subkey under file
associations and CLSID that map to launch command-->
19 <TargetObject
condition="contains">\shell\open\command</TargetObject>
<!--Microsoft:Windows: Sensitive subkey under file
associations and CLSID that map to launch command-->
20 <TargetObject
condition="contains">\shell\open\ddeexec</TargetObject>
<!--Microsoft:Windows: Sensitive subkey under file
associations and CLSID that map to launch command-->
21 <TargetObject
name="technique_id=T1060,technique_name=Registry Run
Keys / Start Folder"
condition="contains">Software\Microsoft\Windows\CurrentVersion\Explorer\User
Shell Folders\Startup</TargetObject>
22 </RegistryEvent>
23 </RuleGroup>
24 </EventFiltering>
25 </Sysmon>
Image Loading
Sysmon will log EventID 7 for the loading of images (Components like DLL,
OCX..) by a given process. This filter can cause high CPU usage if filtering is to
open on desktop or terminal systems with lots of process starting and stopping,
because of this event is best targeted by monitoring for specific libraries or
combinations used by attackers.
The event fields are:
• RuleName: Name of rule that triggered the event.
• UtcTime: Time in UTC when event was created
• ProcessGuid: Process Guid of the process that loaded the image
• ProcessId: Process ID used by the OS to identify the process that loaded
the image
• Image: File path of the process that loaded the image
• ImageLoaded: Path of the image loaded
48
• FileVersion: Version of the image loaded
• Description: Description of the image loaded
• Product: Product name the image loaded belongs to
• Company: Company name the image loaded belongs to
• OriginalFileName: OriginalFileName from the PE header, added on
compilation
• Hashes: Full hash of the file with the algorithms in the HashType field
• Signed: State whether the image loaded is signed
• Signature: The signer name
• SignatureStatus: status of the signature
Example of libraries leveraged by attackers
1 <Sysmon schemaversion="4.22">
2 <EventFiltering>
3 <RuleGroup name="" groupRelation="or">
4 <ImageLoad onmatch="include">
5 <!--Detect execution of HTA using the IE
Javascript engine to bypass AMSI-->
6 <!--Note: Rule placed before Windows Scriptingh
to ensure it triggers on this on case any
other component is used.-->
7 <Rule groupRelation="and">
8 <ImageLoaded
name="technique_id=T1170,technique_name=MSHTA
with AMSI Bypass" condition="end
with">jscript9.dll</ImageLoaded>
9 <Image condition="end with">mshta.exe</Image>
10 </Rule>
11 <!--Capture components used by malicious macros
and scripts.-->
12 <Rule groupRelation="or">
13 <ImageLoaded
name="technique_id=T1064,technique_name=Windows
Scripting Host Component" condition="end
with">wshom.ocx</ImageLoaded>
14 <ImageLoaded condition="end
with">scrrun.dll</ImageLoaded>
15 <ImageLoaded condition="end
with">vbscript.dll</ImageLoaded>
16 </Rule>
17 <!--Check for loading of the PowerShell engine-->
18 <Rule groupRelation="or">
49
19 <ImageLoaded
name="technique_id=T1086,technique_name=PowerShell
Engine" condition="end
with">System.Management.Automation.ni.dll</ImageLoaded>
20 <ImageLoaded condition="end
with">System.Management.Automation.dll</ImageLoaded>
21 </Rule>
22 <!--Detect the Squiblydoo technique-->
23 <Rule groupRelation="or">
24 <ImageLoaded
name="technique_id=T1117,technique_name=Regsvr32"
condition="end
with">scrobj.dll</ImageLoaded>
25 </Rule>
26 </ImageLoad>
27 </RuleGroup>
28 </EventFiltering>
29 </Sysmon>
Network Connections
Sysmon will log EventID 3 for all TCP and UDP network connections. This
event will generate a large number of entries and filtering should be tuned for
specific processes and ports. For the DestinationHostname, the GetNameInfo
API is used and it will often not have any information and may just be a
CDN, making it NOT reliable for filtering. For the DestinationPortName, the
GetNameInfo API is used for the friendly name of ports. In the case of services
doing connections on some systems due to memory use, they are hosted under
svchost.exe and most connections will originate from this process.
The fields for the event are:
• RuleName: Name of rule that triggered the event
• UtcTime: Time in UTC when event was created
• ProcessGuid: Process GUID of the process that made the network
connection
• ProcessId: Process ID used by the OS to identify the process that made
the network connection
• Image: File path of the process that made the network connection
• User: Name of the account who made the network connection
• Protocol: Protocol being used for the network connection
• Initiated: Indicated process-initiated TCP connection
50
• SourceIsIpv6: Is the source IP an Ipv6
• SourceIp: Source IP address that made the network connection
• SourceHostname: DNS name of the host that made the network con-
nection
• SourcePort: Source port number
• SourcePortName: Name of the source port being used
• DestinationIsIpv6: Is the destination IP an Ipv6
• DestinationIp: IP address destination
• DestinationHostname: DNS name of the host that is contacted
• DestinationPort: Destination port number
• DestinationPortName: Name of the destination port
Example tracking connections for attacker “Living off the land”
1 <Sysmon schemaversion="4.22">
2 <EventFiltering>
3 <RuleGroup name="" groupRelation="or">
4 <NetworkConnect onmatch="include">
5 <!--Native Windows tools - Living off the land-->
6 <Image
name="technique_id=T1053,technique_name=Scheduled
Task" condition="image">at.exe</Image>
<!--Microsoft:Windows: Remote task scheduling |
Credit @ion-storm -->
7 <Image
name="technique_id=T1218,technique_name=Signed
Binary Proxy Execution"
condition="image">certutil.exe</Image>
<!--Microsoft:Windows: Certificate tool can
contact outbound | Credit @ion-storm and @FVT [
https://twitter.com/FVT/status/834433734602530817
] -->
8 <Image condition="image">cmd.exe</Image>
<!--Microsoft:Windows: Command prompt-->
9 <Image
name="technique_id=T1218,technique_name=Signed
Script Proxy Execution"
condition="image">cscript.exe</Image><!--Microsoft:WindowsScriptingHost:
| Credit @Cyb3rOps [
https://gist.github.com/Neo23x0/a4b4af9481e01e749409
] -->
51
10 <Image condition="image">java.exe</Image> <!--Java:
Monitor usage of vulnerable application | Credit
@ion-storm -->
11 <Image
name="technique_id=T1170,technique_name=Mshta"
condition="image">mshta.exe</Image><!--Microsoft:Windows:
HTML application executes scripts without IE
protections | Credit @ion-storm [
https://en.wikipedia.org/wiki/HTML_Application ]
-->
12 <Image
name="technique_id=T1218,technique_name=Signed
Binary Proxy Execution"
condition="image">msiexec.exe</Image>
<!--Microsoft:Windows: Can install from http://
paths | Credit @vector-sec -->
13 <Image
name="technique_id=T1069,technique_name=Permission
Groups Discovery"
condition="image">net.exe</Image> <!--Mitre
T1018--><!--Mitre T1077--><!--Mitre
T1087--><!--Mitre T1135--><!--Mitre
T1069--><!--Mitre T1016--><!--Microsoft:Windows:
"net use"/"net view" used by attackers to
surveil and connect with file shares from
command line | Credit @ion-storm -->
14 <Image
name="technique_id=T1218,technique_name=Signed
Binary Proxy Execution"
condition="image">notepad.exe</Image>
<!--Microsoft:Windows: [
https://blog.cobaltstrike.com/2013/08/08/why-is-notepad-exe-connecting-to-th
] -->
15 <Image
name="technique_id=T1218,technique_name=Signed
Binary Proxy Execution"
condition="image">powershell.exe</Image><!--Microsoft:Windows:
PowerShell interface-->
16 <Image name="technique_id=T1012,technique_name=Query
Registry" condition="image">reg.exe</Image>
<!--Mitre T1012--><!--Mitre
T1112--><!--Microsoft:Windows: Remote Registry |
Credit @ion-storm -->
17 <Image
name="technique_id=T1218,technique_name=Regsvr32"
condition="image">regsvr32.exe</Image><!--Microsoft:Windows:
52
[
https://subt0x10.blogspot.com/2016/04/bypass-application-whitelisting-script
] -->
18 <Image
name="technique_id=T1085,technique_name=Rundll32"
condition="image">rundll32.exe</Image><!--Microsoft:Windows:
[
https://blog.cobaltstrike.com/2016/07/22/why-is-rundll32-exe-connecting-to-t
] -->
19 <Image
name="technique_id=T1031,technique_name=Modify
Existing Service"
condition="image">sc.exe</Image>
<!--Microsoft:Windows: Remotely change Windows
service settings from command line | Credit
@ion-storm -->
20 <Image
name="technique_id=T1047,technique_name=Windows
Management Instrumentation"
condition="image">wmic.exe</Image>
<!--T1047--><!--Mitre
T1135--><!--Microsoft:WindowsManagementInstrumentation:
Credit @Cyb3rOps [
https://gist.github.com/Neo23x0/a4b4af9481e01e749409
] -->
21 <Image
name="technique_id=T1218,technique_name=Signed
Script Proxy Execution"
condition="image">wscript.exe</Image>
<!--Microsoft:WindowsScriptingHost: | Credit
@arekfurt -->
22 <Image condition="image">driverquery.exe</Image>
<!--Microsoft:Windows: Remote recognisance of
system configuration, oudated/vulnerable drivers
-->
23 <Image condition="image">dsquery.exe</Image>
<!--Microsoft: Query Active Directory -->
24 <Image condition="image">hh.exe</Image>
<!--Microsoft:Windows: HTML Help Executable,
opens CHM files -->
25 <Image
condition="image">infDefaultInstall.exe</Image>
<!--Microsoft: [
https://github.com/huntresslabs/evading-autoruns
] | Credit @KyleHanslovan -->
26 <Image condition="image">javaw.exe</Image> <!--Java:
53
Monitor usage of vulnerable application and init
from JAR files -->
27 <Image condition="image">javaws.exe</Image>
<!--Java: Monitor usage of vulnerable
application and init from JAR files -->
28 <Image
name="technique_id=T1031,technique_name=Modify
Existing Service"
condition="image">mmc.exe</Image>
<!--Microsoft:Windows: -->
29 <Image
name="technique_id=T1218,technique_name=Signed
Binary Proxy Execution"
condition="image">msbuild.exe</Image><!--Microsoft:Windows:
[
https://www.hybrid-analysis.com/sample/a314f6106633fba4b70f9d6ddbee452e8f8f4
] -->
30 <Image
name="technique_id=T1016,technique_name=System
Network Configuration Discovery"
condition="image">nbtstat.exe</Image>
<!--Microsoft:Windows: NetBIOS statistics,
attackers use to enumerate local network -->
31 <Image
name="technique_id=T1069,technique_name=Permission
Groups Discovery"
condition="image">net1.exe</Image> <!--Mitre
T1018--><!--Mitre T1077--><!--Mitre
T1087--><!--Mitre T1135--><!--Mitre
T1069--><!--Mitre T1016--><!--Microsoft:Windows:
Launched by "net.exe", but it may not detect
connections either -->
32 <Image
name="technique_id=T1018,technique_name=Remote
System Discovery"
condition="image">nslookup.exe</Image>
<!--Microsoft:Windows: Retrieve data over DNS -->
33 <Image
name="technique_id=T1057,technique_name=Process
Discovery"
condition="image">qprocess.exe</Image>
<!--Microsoft:Windows: [
https://www.first.org/resources/papers/conf2017/APT-Log-Analysis-Tracking-At
] -->
34 <Image
name="technique_id=T1057,technique_name=Process
54
Discovery" condition="image">qwinsta.exe</Image>
<!--Microsoft:Windows: Remotely query login
sessions on a server or workstation | Credit
@ion-storm -->
35 <Image
name="technique_id=T1121,technique_name=Regsvcs/Regasm"
condition="image">regsvcs.exe</Image>
<!--Microsoft:Windows: [
https://www.hybrid-analysis.com/sample/3f94d7080e6c5b8f59eeecc3d44f7e817b315
] -->
36 <Image
name="technique_id=T1057,technique_name=Process
Discovery" condition="image">rwinsta.exe</Image>
<!--Microsoft:Windows: Disconnect remote
sessions | Credit @ion-storm -->
37 <Image
name="technique_id=T1053,technique_name=Scheduled
Task" condition="image">schtasks.exe</Image>
<!--Microsoft:Windows: Command-line interface to
local and remote tasks -->
38 <Image
name="technique_id=T1089,technique_name=Disabling
Security Tools"
condition="image">taskkill.exe</Image>
<!--Microsoft:Windows: Kill processes, has
remote ability -->
39 <Image
name="technique_id=T1057,technique_name=Process
Discovery"
condition="image">tasklist.exe</Image>
<!--Microsoft:Windows: List processes, has
remote ability -->
40 <Image name="technique_id=T1218,technique_name=Signed
Binary Proxy Execution"
condition="image">replace.exe</Image>
41 </NetworkConnect>
42 </RuleGroup>
43 </EventFiltering>
44 </Sysmon>
55
number of events easy to filter out the normal usages to detect the outliers.
Process of use/abuse of CreateRemoteThread
• Use OpenProcess( ) to open a target process.
• Use VirtualAllocEx( ) allocate a chunk of memory in the process.
• Use WriteProcessMemory( ) write the payload to the newly allocated
section.
• User CreateRemoteThread( ) to create a new thread in the remote
process to execute the shellcode.
There are multiple Process Injection techniques, Sysmon monitors for the most
common one used. The infographic from http://struppigel.blogspot.com/2017/
07/process-injection-info-graphic.html
Illustrates the different techniques.
56
• SourceProcessGuid: Process Guid of the source process that created a
thread in another process
• SourceProcessId: Process ID used by the OS to identify the source
process that created a thread in another process
• SourceImage: File path of the source process that created a thread in
another process
• TargetProcessGuid: Process Guid of the target process
• TargetProcessId: Process ID used by the OS to identify the target
process
• TargetImage: File path of the target process
• NewThreadId: Id of the new thread created in the target process
• StartAddress: New thread start address
• StartModule: Start module determined from thread start address map-
ping to PEB loaded module list
• StartFunction: Start function is reported if exact match to function in
image export tables
Since the number of processes that use the CreateRemoteThread() API in
a production environment is low, the best approach is to exclude known good
processes by their full path. CreateRemoteThread() is not the only API call
that can be used to create a thread, so it should not be relied on as a definitive
guarantee of lack of process injection.
Example where known processes that use the API call are excluded
1 <Sysmon schemaversion="4.22">
2 <CheckRevocation/>
3 <EventFiltering>
4 <RuleGroup name="" groupRelation="or">
5 <CreateRemoteThread onmatch="exclude">
6 <!--The process activity of those in the list should
be monitored since an-->
7 <!--attacker may host his actions in one of these to
bypass detection.-->
8 <TargetImage condition="end
with">Google\Chrome\Application\chrome.exe</TargetImage>
9 <SourceImage
condition="is">C:\Windows\System32\wbem\WmiPrvSE.exe</SourceImage>
10 <SourceImage
condition="is">C:\Windows\System32\svchost.exe</SourceImage>
11 <SourceImage
condition="is">C:\Windows\System32\wininit.exe</SourceImage>
57
Figure 39: process
12 <SourceImage
condition="is">C:\Windows\System32\csrss.exe</SourceImage>
13 <SourceImage
condition="is">C:\Windows\System32\services.exe</SourceImage>
14 <SourceImage
condition="is">C:\Windows\System32\winlogon.exe</SourceImage>
15 <SourceImage
condition="is">C:\Windows\System32\audiodg.exe</SourceImage>
16 <StartModule
condition="is">C:\windows\system32\kernel32.dll</StartModule>
17 </CreateRemoteThread>
18 </RuleGroup>
19 </EventFiltering>
20 </Sysmon>
58
Attackers have been known to use this technique to copy NTDS.dit and SAM
Registry Hives off host for the purpose of credential harvesting.
The fields for the event are:
• RuleName: Name of rule that triggered the event
• UtcTime: Time in UTC when event was created
• ProcessGuid: Process GUID of the process that conducted reading
operations from the drive
• ProcessId: Process ID used by the OS to identify the process that
conducted reading operations from the drive
• Image: File path of the process that conducted reading operations from
the drive
• Device: Target device
Given that no process should be performing this action normally, it is best to log
all instances of it or, even better, to target the NTDS.dit file on domain controllers
and SAM hive file on all systems. On systems with many file modifications,
slightly higher resource usage may result if monitoring is enabled for all files.
Example that captures all instances of this event
DNS Query
Sysmon will log EventID 22 to log all DNS Queries using the Windows Dns-
Query_* API calls in dnsapi.dll. Logging is supported on Windows 8.1 or
above since it leverages new ETW functionality in newer versions of Windows.
Programs that do their own DNS resolution and do not use the Windows API
calls will not be logged
The fields for the event are:
• RuleName: Name of rule that triggered the event.
• UtcTime: Time in UTC when event was created
59
• ProcessGuid: Process Guid of the process that made the DNS query
• ProcessId: Process ID of the process that made the DNS query
• QueryName: DNS name that was queries
• QueryStatus: Query result status code
• QueryResults: Query results
• Image: File path of the process that made the DNS query Exclude known
destinations in order to focus on new unknown destinations. This is a
high-volume event generation filter, so it is recommended to experiment
and build rules with filters for your specific environment if implemented.
Some examples can be found in https://github.com/olafhartong/sysmon-
modular/tree/master/22_dns_query
Example that excludes known update and telemetry domains.
1 <Sysmon schemaversion="4.22">
2 <!-- special thanks to @SwiftOnSecurity for this -->
3 <HashAlgorithms>*</HashAlgorithms>
4 <CheckRevocation/>
5 <EventFiltering>
6 <RuleGroup name="" groupRelation="or">
7 <DnsQuery onmatch="exclude">
8 <!-- Browser Update Domains-->
9 <QueryName condition="end
with">.mozaws.net</QueryName> <!--Mozilla-->
10 <QueryName condition="end
with">.mozilla.com</QueryName> <!--Mozilla-->
11 <QueryName condition="end
with">.mozilla.net</QueryName> <!--Mozilla-->
12 <QueryName condition="end
with">.mozilla.org</QueryName> <!--Mozilla-->
13 <QueryName
condition="is">clients1.google.com</QueryName>
<!--Google-->
14 <QueryName
condition="is">clients2.google.com</QueryName>
<!--Google-->
15 <QueryName
condition="is">clients3.google.com</QueryName>
<!--Google-->
16 <QueryName
condition="is">clients4.google.com</QueryName>
<!--Google-->
17 <QueryName
condition="is">clients5.google.com</QueryName>
60
<!--Google-->
18 <QueryName
condition="is">clients6.google.com</QueryName>
<!--Google-->
19 <!-- Microsoft Domains -->
20 <QueryName
condition="is">safebrowsing.googleapis.com</QueryName>
<!--Google-->
21 <QueryName condition="end
with">-pushp.svc.ms</QueryName> <!--Microsoft:
Doesn t appear to host customer content or
subdomains-->
22 <QueryName condition="end
with">.b-msedge.net</QueryName> <!--Microsoft:
Doesn t appear to host customer content or
subdomains-->
23 <QueryName condition="end
with">.bing.com</QueryName> <!-- Microsoft |
Microsoft default exclusion -->
24 <QueryName condition="end
with">.hotmail.com</QueryName> <!--Microsoft |
Microsoft default exclusion-->
25 <QueryName condition="end
with">.live.com</QueryName> <!--Microsoft |
Microsoft default exclusion-->
26 <QueryName condition="end
with">.live.net</QueryName> <!--Microsoft |
Microsoft default exclusion-->
27 <QueryName condition="end
with">.s-microsoft.com</QueryName>
<!--Microsoft-->
28 <QueryName condition="end
with">.microsoft.com</QueryName> <!--Microsoft |
Microsoft default exclusion-->
29 <QueryName condition="end
with">.microsoftonline.com</QueryName>
<!--Microsoft | Microsoft default exclusion-->
30 <QueryName condition="end
with">.microsoftstore.com</QueryName>
<!--Microsoft | Microsoft default exclusion-->
31 <QueryName condition="end
with">.ms-acdc.office.com</QueryName>
<!--Microsoft: Doesn t appear to host customer
content or subdomains-->
32 <QueryName condition="end
with">.msedge.net</QueryName> <!--Microsoft:
61
Doesn t appear to host customer content or
subdomains-->
33 <QueryName condition="end with">.msn.com</QueryName>
<!--Microsoft | Microsoft default exclusion-->
34 <QueryName condition="end
with">.msocdn.com</QueryName> <!--Microsoft-->
35 <QueryName condition="end
with">.skype.com</QueryName> <!--Microsoft |
Microsoft default exclusion-->
36 <QueryName condition="end
with">.skype.net</QueryName> <!--Microsoft |
Microsoft default exclusion-->
37 <QueryName condition="end
with">.windows.com</QueryName> <!--Microsoft-->
38 <QueryName condition="end
with">.windows.net.nsatc.net</QueryName>
<!--Microsoft-->
39 <QueryName condition="end
with">.windowsupdate.com</QueryName>
<!--Microsoft-->
40 <QueryName condition="end
with">.xboxlive.com</QueryName> <!--Microsoft-->
41 <QueryName
condition="is">login.windows.net</QueryName>
<!--Microsoft-->
42 </DnsQuery>
43 </RuleGroup>
44 </EventFiltering>
45 </Sysmon>
WMI Events
WMI events, both temporary and permanent (survive a reboot), have been used
for over a decade by vendors and enterprise users to automate actions on systems.
Attackers leverage events in the same manner for automating actions and for
persistence. Attackers will create or modify existing event components (APT
28, 29) on systems for which they gain administrator privilege. WMI events are
those events that happen when a specific Event Class instance is created or they
are modified in the WMI Model.
An attacker can monitor (and take certain actions) when these events occur by
using subscriptions that monitor for them.
There are two types of WMI Event Subscriptions:
• Temporary - Subscription is active as long as the process that created
the subscription is active (They run under the privilege of the process)
62
• Permanent - Subscription is stored in the CIM Database and is active
until removed from it (They always run as SYSTEM)
All event subscriptions have three components:
• Filter - WQL Query for the events we want
• Consumer - An action to take upon triggering the filter
• Binding - Registers a filter to a consumer
The filter and consumer are created individually and then registered together.
The actions that Sysmon filters on are those for permanent events. Sysmon will
only log ActiveScript and CommandLine consumers since these are the ones
abused by attackers.
Fields for the Filter creation, modification, or deletion are:
• RuleName: Rule name for filter
• EventType: Will always be WmiFilterEvent
• UtcTime: Time event happened
• Operation: Created, modified or deleted
• User: User that performed the action
• EventNamespace: WMI Namespace where object was created
• Name: Name of the filter
• Query: Query defined for the filter
The fields for Consumer creation, modification, or deletion are:
• RuleName: Rule name for filter
• EventType: Will always be WmiConsumerEvent
• UtcTime: Time event happened
• Operation: Created, modified, or deleted
• User: User that performed the action
• Name: Name of the consumer
• Type: Type of consumer
• Destination: Command or Script being executed
The fields for filter to consumer binding are:
• RuleName: Rule name for filter
• EventType: Will always be WmiBindingEvent
• UtcTime: Time event happened
63
• Operation: Created, modified, or deleted
• User: User that performed the action
• Consumer: Consumer path in the CIM Database
• Filter: Filter path in the CIM Database
When a Permanent Event Subscription is created, an EventID 5861 in
Microsoft-Windows-WMI-Activity/Operational is created in Windows
2012 R2, Windows 2016, and Windows 10 Pro/Enterprise.
The event includes the Query and Consumer object information for the subscrip-
tion in its data.
64
7 <WmiEvent onmatch="exclude">
8 </WmiEvent>
9 </RuleGroup>
10 </EventFiltering>
11 </Sysmon>
65