def rule(event):
    if all(
        [
            event.deep_get("ParentImage", default="").endswith("\\ArcSOC.exe"),
            any(
                [
                    event.deep_get("Image", default="").endswith("\\cmd.exe"),
                    event.deep_get("Image", default="").endswith("\\cscript.exe"),
                    event.deep_get("Image", default="").endswith("\\mshta.exe"),
                    event.deep_get("Image", default="").endswith("\\powershell.exe"),
                    event.deep_get("Image", default="").endswith("\\pwsh.exe"),
                    event.deep_get("Image", default="").endswith("\\regsvr32.exe"),
                    event.deep_get("Image", default="").endswith("\\rundll32.exe"),
                    event.deep_get("Image", default="").endswith("\\wmic.exe"),
                    event.deep_get("Image", default="").endswith("\\wscript.exe"),
                ]
            ),
            not all(
                [
                    event.deep_get("Image", default="").endswith("\\cmd.exe"),
                    event.deep_get("CommandLine", default="") == 'cmd.exe /c "ver"',
                ]
            ),
        ]
    ):
        return True
    return False
