Skip to content

Commit

Permalink
Merge pull request #11 from tstromberg/main
Browse files Browse the repository at this point in the history
Add hostinfo_collector rule
  • Loading branch information
tstromberg authored Feb 29, 2024
2 parents 8bd1c72 + 1f866c5 commit 25062bd
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions rules/combo/backdoor/macos/hostinfo_collector.yara
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
rule hostinfo_collector : suspicious {
meta:
ref = "https://www.bitdefender.com/blog/labs/new-macos-backdoor-written-in-rust-shows-possible-link-with-windows-ransomware-group/"
description = "Collects extremely detailed information about a host"
strings:
$sp = "system_profiler"
$ns = "networksetup"
$sysctl = "sysctl"
$launchctl = "launchctl"
condition:
all of them
}

0 comments on commit 25062bd

Please sign in to comment.