Skip to content

Instantly share code, notes, and snippets.

@timb-machine
Last active March 1, 2021 11:14
Show Gist options
  • Save timb-machine/ee7e0573a999c91d1afe3f9fde45d3fe to your computer and use it in GitHub Desktop.
Save timb-machine/ee7e0573a999c91d1afe3f9fde45d3fe to your computer and use it in GitHub Desktop.
adonunix2.yara
rule adonunix2 {
meta:
author = "Tim Brown @timb_machine"
description = "AD on UNIX"
strings:
$quest = "/quest"
$sss = "/sss"
$pbis = "/pbis"
$ipa = "/ipa"
$samba = "/samba"
$krb5 = "/krb5"
condition:
$quest or $sss or $pbis or $ipa or $samba or $krb5
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment