Created
February 28, 2021 19:18
-
-
Save timb-machine/aaf2c7585ebb5be5a04e44a01ad17041 to your computer and use it in GitHub Desktop.
aix.yara
This file contains hidden or 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
rule aix { | |
meta: | |
author = "Tim Brown @timb_machine" | |
description = "AIX binary" | |
strings: | |
$libca = "libc.a" | |
$text = ".text" | |
$data = ".data" | |
condition: | |
$libca and $text and $data | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment