def rule(event):
    if all(
        [
            any(
                [
                    event.deep_get("Image", default="").endswith("\\excel.exe"),
                    event.deep_get("Image", default="").endswith("\\mspub.exe"),
                    event.deep_get("Image", default="").endswith("\\onenote.exe"),
                    event.deep_get("Image", default="").endswith("\\onenoteim.exe"),
                    event.deep_get("Image", default="").endswith("\\outlook.exe"),
                    event.deep_get("Image", default="").endswith("\\powerpnt.exe"),
                    event.deep_get("Image", default="").endswith("\\winword.exe"),
                ]
            ),
            event.deep_get("ImageLoaded", default="").startswith(
                "C:\\Windows\\Microsoft.NET\\assembly\\GAC_MSIL"
            ),
        ]
    ):
        return True
    return False
