forked from SigmaHQ/sigma
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request SigmaHQ#4207 from securepeacock/patch-42
Create net_connection_win_winlogon_net_connections.yml
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
45 changes: 45 additions & 0 deletions
45
rules/windows/network_connection/net_connection_win_winlogon_net_connections.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
title: Outbound Network Connection To Public IP Via Winlogon | ||
id: 7610a4ea-c06d-495f-a2ac-0a696abcfd3b | ||
status: experimental | ||
description: Detects a "winlogon.exe" process that initiate network communications with public IP addresses | ||
references: | ||
- https://www.microsoft.com/en-us/security/blog/2023/04/11/guidance-for-investigating-attacks-using-cve-2022-21894-the-blacklotus-campaign/ | ||
author: Christopher Peacock @securepeacock, SCYTHE @scythe_io | ||
date: 2023/04/28 | ||
tags: | ||
- attack.defense_evasion | ||
- attack.execution | ||
- attack.command_and_control | ||
- attack.t1218.011 | ||
logsource: | ||
category: network_connection | ||
product: windows | ||
detection: | ||
selection: | ||
Image|endswith: '\winlogon.exe' | ||
Initiated: 'true' | ||
filter_optional_local_ip: | ||
DestinationIp|startswith: | ||
- '10.' | ||
- '127.' | ||
- '172.16.' | ||
- '172.17.' | ||
- '172.18.' | ||
- '172.19.' | ||
- '172.20.' | ||
- '172.21.' | ||
- '172.22.' | ||
- '172.23.' | ||
- '172.24.' | ||
- '172.25.' | ||
- '172.26.' | ||
- '172.27.' | ||
- '172.28.' | ||
- '172.29.' | ||
- '172.30.' | ||
- '172.31.' | ||
- '192.168.' | ||
condition: selection and not 1 of filter_optional_* | ||
falsepositives: | ||
- Communication to other corporate systems that use IP addresses from public address spaces | ||
level: medium |