-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update file_event_macos_startup_items.yml
- Loading branch information
Showing
2 changed files
with
30 additions
and
24 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
30 changes: 30 additions & 0 deletions
30
rules/macos/file_event/file_event_macos_susp_startup_item_created.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,30 @@ | ||
title: Startup Item File Created - MacOS | ||
id: dfe8b941-4e54-4242-b674-6b613d521962 | ||
status: test | ||
description: | | ||
Detects the creation of a startup item plist file, that automatically get executed at boot initialization to establish persistence. | ||
Adversaries may use startup items automatically executed at boot initialization to establish persistence. | ||
Startup items execute during the final phase of the boot process and contain shell scripts or other executable files along with configuration information used by the system to determine the execution order for all startup items. | ||
references: | ||
- https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1037.005/T1037.005.md | ||
- https://developer.apple.com/library/archive/documentation/MacOSX/Conceptual/BPSystemStartup/Chapters/StartupItems.html | ||
author: Alejandro Ortuno, oscd.community | ||
date: 2020/10/14 | ||
modified: 2024/08/11 | ||
tags: | ||
- attack.persistence | ||
- attack.privilege_escalation | ||
- attack.t1037.005 | ||
logsource: | ||
category: file_event | ||
product: macos | ||
detection: | ||
selection: | ||
TargetFilename|startswith: | ||
- '/Library/StartupItems/' | ||
- '/System/Library/StartupItems' | ||
TargetFilename|endswith: '.plist' | ||
condition: selection | ||
falsepositives: | ||
- Legitimate administration activities | ||
level: low |