def rule(event):
    if all(
        [
            event.deep_get("Image", default="").endswith("\\dllhost.exe"),
            event.deep_get("CommandLine", default="") in ["dllhost.exe", "dllhost"],
            not event.deep_get("CommandLine", default="") == "",
        ]
    ):
        return True
    return False
