def rule(event):
    if all(
        [
            any(
                [
                    event.deep_get("Image", default="").endswith("\\brave.exe"),
                    event.deep_get("Image", default="").endswith("\\chrome.exe"),
                    event.deep_get("Image", default="").endswith("\\msedge.exe"),
                    event.deep_get("Image", default="").endswith("\\opera.exe"),
                    event.deep_get("Image", default="").endswith("\\vivaldi.exe"),
                ]
            ),
            "http" in event.deep_get("CommandLine", default=""),
            any(
                [
                    any(
                        [
                            event.deep_get("CommandLine", default="").endswith(".7z"),
                            event.deep_get("CommandLine", default="").endswith(".dat"),
                            event.deep_get("CommandLine", default="").endswith(".dll"),
                            event.deep_get("CommandLine", default="").endswith(".exe"),
                            event.deep_get("CommandLine", default="").endswith(".hta"),
                            event.deep_get("CommandLine", default="").endswith(".ps1"),
                            event.deep_get("CommandLine", default="").endswith(".psm1"),
                            event.deep_get("CommandLine", default="").endswith(".txt"),
                            event.deep_get("CommandLine", default="").endswith(".vbe"),
                            event.deep_get("CommandLine", default="").endswith(".vbs"),
                            event.deep_get("CommandLine", default="").endswith(".zip"),
                        ]
                    ),
                    any(
                        [
                            '.7z"' in event.deep_get("CommandLine", default=""),
                            '.dat"' in event.deep_get("CommandLine", default=""),
                            '.dll"' in event.deep_get("CommandLine", default=""),
                            '.hta"' in event.deep_get("CommandLine", default=""),
                            '.ps1"' in event.deep_get("CommandLine", default=""),
                            '.psm1"' in event.deep_get("CommandLine", default=""),
                            '.txt"' in event.deep_get("CommandLine", default=""),
                            '.vbe"' in event.deep_get("CommandLine", default=""),
                            '.vbs"' in event.deep_get("CommandLine", default=""),
                            '.zip"' in event.deep_get("CommandLine", default=""),
                        ]
                    ),
                ]
            ),
        ]
    ):
        return True
    return False
