-
-
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.
Merge PR #4949 from @omaramin17 - Add new rules related to Hdiutil usage
new: Disk Image Mounting Via Hdiutil - MacOS new: Disk Image Creation Via Hdiutil - MacOS --------- Co-authored-by: nasbench <8741929+nasbench@users.noreply.github.com>
- Loading branch information
1 parent
ace902b
commit bfc5586
Showing
2 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
rules/macos/process_creation/proc_creation_macos_hdiutil_create.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,23 @@ | ||
title: Disk Image Creation Via Hdiutil - MacOS | ||
id: 1cf98dc2-fcb0-47c9-8aea-654c9284d1ae | ||
status: experimental | ||
description: Detects the execution of the hdiutil utility in order to create a disk image. | ||
references: | ||
- https://www.loobins.io/binaries/hdiutil/ | ||
- https://www.sentinelone.com/blog/from-the-front-linesunsigned-macos-orat-malware-gambles-for-the-win/ | ||
- https://ss64.com/mac/hdiutil.html | ||
author: Omar Khaled (@beacon_exe) | ||
date: 2024/08/10 | ||
tags: | ||
- attack.exfiltration | ||
logsource: | ||
product: macos | ||
category: process_creation | ||
detection: | ||
selection: | ||
Image|endswith: /hdiutil | ||
CommandLine|contains: 'create' | ||
condition: selection | ||
falsepositives: | ||
- Legitimate usage of hdiutil by administrators and users. | ||
level: medium |
27 changes: 27 additions & 0 deletions
27
rules/macos/process_creation/proc_creation_macos_hdiutil_mount.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,27 @@ | ||
title: Disk Image Mounting Via Hdiutil - MacOS | ||
id: bf241472-f014-4f01-a869-96f99330ca8c | ||
status: experimental | ||
description: Detects the execution of the hdiutil utility in order to mount disk images. | ||
references: | ||
- https://www.loobins.io/binaries/hdiutil/ | ||
- https://www.sentinelone.com/blog/from-the-front-linesunsigned-macos-orat-malware-gambles-for-the-win/ | ||
- https://ss64.com/mac/hdiutil.html | ||
author: Omar Khaled (@beacon_exe) | ||
date: 2024/08/10 | ||
tags: | ||
- attack.initial_access | ||
- attack.t1566.001 | ||
- attack.t1560.001 | ||
logsource: | ||
product: macos | ||
category: process_creation | ||
detection: | ||
selection: | ||
Image|endswith: /hdiutil | ||
CommandLine|contains: | ||
- 'attach ' | ||
- 'mount ' | ||
condition: selection | ||
falsepositives: | ||
- Legitimate usage of hdiutil by administrators and users. | ||
level: medium |