Skip to content

Instantly share code, notes, and snippets.

View kyleavery's full-sized avatar

Kyle Avery kyleavery

View GitHub Profile
@nikolay-n
nikolay-n / entitlements.yara
Last active September 5, 2024 14:02
Yara entitlements hunting
private rule MachO
{
meta:
description = "Mach-O executable"
category = "macho"
condition:
(uint32(0) == 0xfeedface or uint32(0) == 0xcafebabe
or uint32(0) == 0xbebafeca or uint32(0) == 0xcefaedfe
or uint32(0) == 0xfeedfacf or uint32(0) == 0xcffaedfe)