def rule(event):
    if any(
        [
            "printnightmare.gentilkiwi.com" in event.deep_get("CommandLine", default=""),
            " /user:gentilguest " in event.deep_get("CommandLine", default=""),
            "Kiwi Legit Printer" in event.deep_get("CommandLine", default=""),
        ]
    ):
        return True
    return False
