-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adjusted rules for the ELF BEACON sample shared by Intezer (#654)
* Created rules for the ELF BEACON sample shared by Intezer * removing rule that sometimes hits and sometimes doesn't Co-authored-by: Alyssa Rahman <alyssa.rahman@mandiant.com>
- Loading branch information
Showing
4 changed files
with
64 additions
and
14 deletions.
There are no files selected for viewing
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,13 @@ | ||
rule: | ||
meta: | ||
name: create semaphore on Linux | ||
namespace: host-interaction/mutex | ||
authors: | ||
- "@ramen0x3f" | ||
scope: function | ||
examples: | ||
- 294b8db1f2702b60fb2e42fdc50c2cee6a5046112da9a5703a548a4fa50477bc:0x408de0 | ||
features: | ||
- and: | ||
- os: linux | ||
- api: sem_init |
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,15 @@ | ||
rule: | ||
meta: | ||
name: lock semaphore on Linux | ||
namespace: host-interaction/mutex | ||
authors: | ||
- "@ramen0x3f" | ||
scope: function | ||
examples: | ||
- 294b8db1f2702b60fb2e42fdc50c2cee6a5046112da9a5703a548a4fa50477bc:0x408e40 | ||
features: | ||
- and: | ||
- os: linux | ||
- or: | ||
- api: sem_wait | ||
- api: sem_timedwait |
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,13 @@ | ||
rule: | ||
meta: | ||
name: unlock semaphore on Linux | ||
namespace: host-interaction/mutex | ||
authors: | ||
- "@ramen0x3f" | ||
scope: function | ||
examples: | ||
- 294b8db1f2702b60fb2e42fdc50c2cee6a5046112da9a5703a548a4fa50477bc:0x408e40 | ||
features: | ||
- and: | ||
- os: linux | ||
- api: sem_post |
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