Skip to main content
Scans/pypi/superoptix

superoptix

pypi

Share

Summary

superoptix v0.2.23 was classified as CRITICAL RISK with a risk score of 1384. Sigil detected 80 findings across 707 files, covering phases including provenance, install hooks, network exfiltration, code patterns, obfuscation. Review the findings below before installing this package.

Package description: Full Stack Agentic AI Optimization Framework - Universal GEPA optimizer for major frameworks

CRITICAL RISK(1384)

v0.2.23

28 March 2026, 15:39 UTC

by Sigil Bot

Risk Score

1384

Findings

80

Files Scanned

707

Provenance

Findings by Phase

Phase Ordering

Phases are ordered by criticality, with the most dangerous at the top. Click any phase header to expand or collapse its findings. Critical phases are expanded by default.

install-makefile-curl

HIGH

Makefile/script pipes remote content to shell

superoptix-0.2.23/docs/environment-setup.md:84

    # Install uv
    curl -LsSf https://astral.sh/uv/install.sh | sh
    
Why was this flagged?

A script or Makefile pipes content from a remote URL directly into a shell (curl | sh or wget | bash). This is inherently dangerous because the remote content can change at any time, and the command runs with the current user's permissions. Rated HIGH because it requires manual execution (unlike install hooks) but still executes arbitrary remote code.

install-makefile-curl

HIGH

Makefile/script pipes remote content to shell

superoptix-0.2.23/docs/environment-setup.md:252

    # Install uv
    curl -LsSf https://astral.sh/uv/install.sh | sh
    
Why was this flagged?

A script or Makefile pipes content from a remote URL directly into a shell (curl | sh or wget | bash). This is inherently dangerous because the remote content can change at any time, and the command runs with the current user's permissions. Rated HIGH because it requires manual execution (unlike install hooks) but still executes arbitrary remote code.

install-makefile-curl

HIGH

Makefile/script pipes remote content to shell

superoptix-0.2.23/docs/examples/agents/ollama-demo.md:20

# Install Ollama (macOS/Linux)
curl -fsSL https://ollama.ai/install.sh | sh
Why was this flagged?

A script or Makefile pipes content from a remote URL directly into a shell (curl | sh or wget | bash). This is inherently dangerous because the remote content can change at any time, and the command runs with the current user's permissions. Rated HIGH because it requires manual execution (unlike install hooks) but still executes arbitrary remote code.

install-makefile-curl

HIGH

Makefile/script pipes remote content to shell

superoptix-0.2.23/docs/guides/cli-complete-guide.md:30

# Using uv (fastest)
curl -LsSf https://astral.sh/uv/install.sh | sh
uv pip install superoptix
Why was this flagged?

A script or Makefile pipes content from a remote URL directly into a shell (curl | sh or wget | bash). This is inherently dangerous because the remote content can change at any time, and the command runs with the current user's permissions. Rated HIGH because it requires manual execution (unlike install hooks) but still executes arbitrary remote code.

install-makefile-curl

HIGH

Makefile/script pipes remote content to shell

superoptix-0.2.23/docs/llm-setup.md:32

    # Install Ollama
    curl -fsSL https://ollama.ai/install.sh | sh
    
Why was this flagged?

A script or Makefile pipes content from a remote URL directly into a shell (curl | sh or wget | bash). This is inherently dangerous because the remote content can change at any time, and the command runs with the current user's permissions. Rated HIGH because it requires manual execution (unlike install hooks) but still executes arbitrary remote code.

install-makefile-curl

HIGH

Makefile/script pipes remote content to shell

superoptix-0.2.23/docs/llm-setup.md:41

    # Install Ollama
    curl -fsSL https://ollama.ai/install.sh | sh
    
Why was this flagged?

A script or Makefile pipes content from a remote URL directly into a shell (curl | sh or wget | bash). This is inherently dangerous because the remote content can change at any time, and the command runs with the current user's permissions. Rated HIGH because it requires manual execution (unlike install hooks) but still executes arbitrary remote code.

install-makefile-curl

HIGH

Makefile/script pipes remote content to shell

superoptix-0.2.23/docs/llm-setup.md:813

# Install Ollama
curl -fsSL https://ollama.ai/install.sh | sh
Why was this flagged?

A script or Makefile pipes content from a remote URL directly into a shell (curl | sh or wget | bash). This is inherently dangerous because the remote content can change at any time, and the command runs with the current user's permissions. Rated HIGH because it requires manual execution (unlike install hooks) but still executes arbitrary remote code.

install-makefile-curl

HIGH

Makefile/script pipes remote content to shell

superoptix-0.2.23/docs/llm-setup.md:975

    # Install Ollama
    curl -fsSL https://ollama.ai/install.sh | sh
    
Why was this flagged?

A script or Makefile pipes content from a remote URL directly into a shell (curl | sh or wget | bash). This is inherently dangerous because the remote content can change at any time, and the command runs with the current user's permissions. Rated HIGH because it requires manual execution (unlike install hooks) but still executes arbitrary remote code.

install-makefile-curl

HIGH

Makefile/script pipes remote content to shell

superoptix-0.2.23/docs/quick-start.md:44

```bash
curl -fsSL https://ollama.com/install.sh | sh
```
Why was this flagged?

A script or Makefile pipes content from a remote URL directly into a shell (curl | sh or wget | bash). This is inherently dangerous because the remote content can change at any time, and the command runs with the current user's permissions. Rated HIGH because it requires manual execution (unlike install hooks) but still executes arbitrary remote code.

install-makefile-curl

HIGH

Makefile/script pipes remote content to shell

superoptix-0.2.23/docs/quick-start.md:54

    ```bash
    curl -LsSf https://astral.sh/uv/install.sh | sh
    uv tool install superoptix
Why was this flagged?

A script or Makefile pipes content from a remote URL directly into a shell (curl | sh or wget | bash). This is inherently dangerous because the remote content can change at any time, and the command runs with the current user's permissions. Rated HIGH because it requires manual execution (unlike install hooks) but still executes arbitrary remote code.

install-makefile-curl

HIGH

Makefile/script pipes remote content to shell

superoptix-0.2.23/docs/setup.md:70

# Install UV (if not already installed)
curl -LsSf https://astral.sh/uv/install.sh | sh
Why was this flagged?

A script or Makefile pipes content from a remote URL directly into a shell (curl | sh or wget | bash). This is inherently dangerous because the remote content can change at any time, and the command runs with the current user's permissions. Rated HIGH because it requires manual execution (unlike install hooks) but still executes arbitrary remote code.

install-makefile-curl

HIGH

Makefile/script pipes remote content to shell

superoptix-0.2.23/install.sh:57

    echo "📦 Installing uv (recommended package manager)..."
    curl -LsSf https://astral.sh/uv/install.sh | sh
    echo "✅ uv installed successfully!"
Why was this flagged?

A script or Makefile pipes content from a remote URL directly into a shell (curl | sh or wget | bash). This is inherently dangerous because the remote content can change at any time, and the command runs with the current user's permissions. Rated HIGH because it requires manual execution (unlike install hooks) but still executes arbitrary remote code.

install-makefile-curl

HIGH

Makefile/script pipes remote content to shell

superoptix-0.2.23/superoptix/agents/explicit_agents/README.md:37

# Install Ollama
curl -fsSL https://ollama.com/install.sh | sh
Why was this flagged?

A script or Makefile pipes content from a remote URL directly into a shell (curl | sh or wget | bash). This is inherently dangerous because the remote content can change at any time, and the command runs with the current user's permissions. Rated HIGH because it requires manual execution (unlike install hooks) but still executes arbitrary remote code.

install-makefile-curl

HIGH

Makefile/script pipes remote content to shell

superoptix-0.2.23/superoptix/cli/commands/model.py:350

            console.print(
                "❌ Ollama not found. Install with: curl -fsSL https://ollama.ai/install.sh | sh"
            )
Why was this flagged?

A script or Makefile pipes content from a remote URL directly into a shell (curl | sh or wget | bash). This is inherently dangerous because the remote content can change at any time, and the command runs with the current user's permissions. Rated HIGH because it requires manual execution (unlike install hooks) but still executes arbitrary remote code.

install-makefile-curl

HIGH

Makefile/script pipes remote content to shell

superoptix-0.2.23/superoptix/cli/commands/model.py:1620

    console.print("  [yellow]Install Ollama:[/yellow]")
    console.print("    curl -fsSL https://ollama.com/install.sh | sh")
    console.print("  [yellow]Install a model:[/yellow]")
Why was this flagged?

A script or Makefile pipes content from a remote URL directly into a shell (curl | sh or wget | bash). This is inherently dangerous because the remote content can change at any time, and the command runs with the current user's permissions. Rated HIGH because it requires manual execution (unlike install hooks) but still executes arbitrary remote code.

install-pip-setup-exec

CRITICAL

setup.py executes code at install time

superoptix-0.2.23/superoptix/cli/main.py:248

    console.print("   ✅ Text editor or IDE of your choice")
    console.print("   ✅ Internet connection for API setup (optional)")
    console.print()
Why was this flagged?

This setup.py calls subprocess, os.system, exec, or eval during package installation. Legitimate packages rarely need to execute arbitrary commands at install time. This pattern is commonly used by malicious packages to download and run payloads, exfiltrate environment variables, or establish persistence. Rated CRITICAL because it runs with the installer's full permissions.

install-makefile-curl

HIGH

Makefile/script pipes remote content to shell

superoptix-0.2.23/superoptix/cli/main.py:317

    console.print(
        "     • Install Ollama: Visit [cyan]https://ollama.com[/cyan] or run [cyan]curl -fsSL https://ollama.com/install.sh | sh[/]"
    )
Why was this flagged?

A script or Makefile pipes content from a remote URL directly into a shell (curl | sh or wget | bash). This is inherently dangerous because the remote content can change at any time, and the command runs with the current user's permissions. Rated HIGH because it requires manual execution (unlike install hooks) but still executes arbitrary remote code.

install-makefile-curl

HIGH

Makefile/script pipes remote content to shell

superoptix-0.2.23/superoptix/models/backends/ollama.py:186

            console.print(
                "     [bold cyan]curl -fsSL https://ollama.com/install.sh | sh[/bold cyan]"
            )
Why was this flagged?

A script or Makefile pipes content from a remote URL directly into a shell (curl | sh or wget | bash). This is inherently dangerous because the remote content can change at any time, and the command runs with the current user's permissions. Rated HIGH because it requires manual execution (unlike install hooks) but still executes arbitrary remote code.

install-pip-setup-exec

CRITICAL

setup.py executes code at install time

superoptix-0.2.23/tests/adapters/test_surrealdb_rag_framework_grounding.py:79


    def _fake_setup(self, spec_data: dict[str, Any]) -> bool:  # noqa: ARG001
        return True
Why was this flagged?

This setup.py calls subprocess, os.system, exec, or eval during package installation. Legitimate packages rarely need to execute arbitrary commands at install time. This pattern is commonly used by malicious packages to download and run payloads, exfiltrate environment variables, or establish persistence. Rated CRITICAL because it runs with the installer's full permissions.

Badge

Sigil scan badge for pypi/superoptix

Markdown

[![Sigil Scan](https://sigilsec.ai/badge/pypi/superoptix)](https://sigilsec.ai/scans/FA0BE7E7-F007-4787-BA64-A272300BF686)

HTML

<a href="https://sigilsec.ai/scans/FA0BE7E7-F007-4787-BA64-A272300BF686"><img src="https://sigilsec.ai/badge/pypi/superoptix" alt="Sigil Scan"></a>

Run This Scan Yourself

Scan your own packages

Run Sigil locally to audit any package before it touches your codebase.

curl -sSL https://sigilsec.ai/install.sh | sh
Read the docs →Free. Apache 2.0.

Early Access

Get cloud scanning, threat intel, and CI/CD integration.

Join 150+ developers on the waitlist.

Get threat intelligence and product updates

Security research, new threat signatures, and product updates. No spam.

Other pypi scans

Believe this result is incorrect? Request a review or see our Terms of Service and Methodology.

Scanned bySigil Bot