Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create proc_creation_win_reg_add_AutoAdminLogon_key.yml #5053

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
title: Detect Modification of AutoAdminLogon
id: ecd4968d-3cea-4626-a6ef-84e4e50fd415
status: experimental
description: Detects the modification of registry values DefaultUserName,DefaultPassword and AutoAdminLogon to enable automatic logon.Attacker use this technique to achieve persistence.
references:
- https://thedfirreport.com/2024/09/30/nitrogen-campaign-drops-sliver-and-ends-with-blackcat-ransomware
author: MahirAli Khan (in/mahiralikhan)
date: 2024-10-16
tags:
- attack.persistence
- detection.threat-hunting
logsource:
category: process_creation
product: windows
detection:
selection:
CommandLine|contains|all:
- 'reg'
- 'add'
- 'SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon'
options:
CommandLine|contains:
- 'DefaultUserName'
- 'DefaultPassword'
- 'AutoAdminLogon'
condition: selection and options
Mahir-Ali-khan marked this conversation as resolved.
Show resolved Hide resolved
falsepositives:
- Legitimate system administrators modifying registry settings for automatic logon.
level: medium
Loading