def rule(event):
    if any(
        [
            "Get-Inbox.ps1" in event.deep_get("ScriptBlockText", default=""),
            "Microsoft.Office.Interop.Outlook" in event.deep_get("ScriptBlockText", default=""),
            "Microsoft.Office.Interop.Outlook.olDefaultFolders"
            in event.deep_get("ScriptBlockText", default=""),
            "-comobject outlook.application" in event.deep_get("ScriptBlockText", default=""),
        ]
    ):
        return True
    return False
