def rule(event):
    if all(
        [
            any(
                [
                    " /account=system " in event.deep_get("CommandLine", default=""),
                    " /account=ti " in event.deep_get("CommandLine", default=""),
                ]
            ),
            "/exec=" in event.deep_get("CommandLine", default=""),
        ]
    ):
        return True
    return False
