def rule(event):
    if all(
        [
            "-exec bypass -w 1 -enc" in event.deep_get("CommandLine", default=""),
            "UwB0AGEAcgB0AC0ASgBvAGIAIAAtAFMAYwByAGkAcAB0AEIAbABvAGMAawAgAHsAKABzAGEAcABzACAAKAAiAHAA"
            in event.deep_get("CommandLine", default=""),
        ]
    ):
        return True
    return False
