def rule(event):
    if all(
        [
            event.deep_get("ParentImage", default="").endswith("\\explorer.exe"),
            "#" in event.deep_get("CommandLine", default=""),
            any(
                [
                    "account" in event.deep_get("CommandLine", default=""),
                    "anti-bot" in event.deep_get("CommandLine", default=""),
                    "botcheck" in event.deep_get("CommandLine", default=""),
                    "captcha" in event.deep_get("CommandLine", default=""),
                    "challenge" in event.deep_get("CommandLine", default=""),
                    "confirmation" in event.deep_get("CommandLine", default=""),
                    "fraud" in event.deep_get("CommandLine", default=""),
                    "human" in event.deep_get("CommandLine", default=""),
                    "identification" in event.deep_get("CommandLine", default=""),
                    "identificator" in event.deep_get("CommandLine", default=""),
                    "identity" in event.deep_get("CommandLine", default=""),
                    "robot" in event.deep_get("CommandLine", default=""),
                    "validation" in event.deep_get("CommandLine", default=""),
                    "verification" in event.deep_get("CommandLine", default=""),
                    "verify" in event.deep_get("CommandLine", default=""),
                ]
            ),
        ]
    ):
        return True
    return False
