Skip to content

Instantly share code, notes, and snippets.

@timb-machine
Created February 28, 2021 19:18
Show Gist options
  • Save timb-machine/aaf2c7585ebb5be5a04e44a01ad17041 to your computer and use it in GitHub Desktop.
Save timb-machine/aaf2c7585ebb5be5a04e44a01ad17041 to your computer and use it in GitHub Desktop.
aix.yara
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