Panther medium experimental python

macOS Malware Detected with osquery

Malware has potentially been detected on a macOS system

View Source

Detection Logic

def rule(event):
    if "osx-attacks" not in event.get("name", ""):
        return False

    # There is another rule specifically for this query
    if "Keyboard_Event_Taps" in event.get("name", ""):
        return False

    if event.get("action") != "added":
        return False

    return True


def title(event):
    return f"MacOS malware detected on [{event.get('hostIdentifier')}]"

Field Validations

Loading…

Comments (0)

Loading comments...