def rule(event):
    if any(
        [
            "-noni -ep bypass $" in event.deep_get("CommandLine", default=""),
            all(
                [
                    "cyzfc.dat," in event.deep_get("CommandLine", default=""),
                    "PointFunctionCall" in event.deep_get("CommandLine", default=""),
                ]
            ),
        ]
    ):
        return True
    return False
