def rule(event):
    if any(
        [
            "Get-Process lsas" in event.deep_get("CommandLine", default=""),
            "ps lsas" in event.deep_get("CommandLine", default=""),
            "gps lsas" in event.deep_get("CommandLine", default=""),
        ]
    ):
        return True
    return False
