Skip to main content
Scans/pypi/familiar-agent

familiar-agent

pypi

Share

Summary

familiar-agent v1.15.41 was classified as CRITICAL RISK with a risk score of 7007. Sigil detected 625 findings across 698 files, covering phases including provenance, install hooks, code patterns, network exfiltration, obfuscation, credential access. Review the findings below before installing this package.

Package description: Self-Hosted AI Companion Platform

CRITICAL RISK(7007)

v1.15.41

18 March 2026, 04:23 UTC

by Sigil Bot

Risk Score

7007

Findings

625

Files Scanned

698

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

familiar_agent-1.15.41/familiar/__main__.py:437

        print("\nOr use Ollama for free local models:")
        print("  curl -fsSL https://ollama.ai/install.sh | sh")
        print("  ollama pull llama3.2")
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

familiar_agent-1.15.41/familiar/channels/connect_wizard/_email_calendar.py:1866


        await proton_finish_setup(host, recipient_id)
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-pip-setup-exec

CRITICAL

setup.py executes code at install time

familiar_agent-1.15.41/familiar/channels/connect_wizard/_selfhosted.py:76

            f"   (the long hex string like {fmt_code('a1b2c3d4e5f6...', m)})\n\n"
            f"{fmt_bold('One-shot setup (3 values, space-separated):', m)}\n"
            f"  {fmt_code('/connect jellyfin <URL> <TOKEN> <USER_ID>', m)}\n\n"
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-pip-setup-exec

CRITICAL

setup.py executes code at install time

familiar_agent-1.15.41/familiar/channels/connect_wizard/_selfhosted.py:1794

            f"3. Copy the generated password\n\n"
            f"{fmt_bold('One-shot setup (3 values, space-separated):', m)}\n"
            f"  {fmt_code('/connect nextcloud <URL> <USER> <APP_PASSWORD>', m)}\n\n"
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-pip-setup-exec

CRITICAL

setup.py executes code at install time

familiar_agent-1.15.41/familiar/channels/telegram.py:1187

        await chat.send_message(
            "📱 <b>SMS Setup (Twilio)</b>\n\n"
            "1. Sign up at https://twilio.com\n"
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-pip-setup-exec

CRITICAL

setup.py executes code at install time

familiar_agent-1.15.41/familiar/channels/telegram.py:3329


            await self._proton_finish_setup(chat)
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-pip-setup-exec

CRITICAL

setup.py executes code at install time

familiar_agent-1.15.41/familiar/docs/CHANGELOG.md:1159

```python
def setup(agent):
    agent.retriever.add_texts(handbook_sections, chunk=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.

install-makefile-curl

HIGH

Makefile/script pipes remote content to shell

familiar_agent-1.15.41/familiar/docs/HARDENING_GUIDE.md:542

```bash
curl -fsSL https://ollama.com/install.sh | sh
ollama pull llama3.2:8b-q4
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

familiar_agent-1.15.41/familiar/docs/QUICKSTART.md:30

# OR Ollama (free, local, private)
curl -fsSL https://ollama.ai/install.sh | sh
ollama pull llama3.2
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

familiar_agent-1.15.41/familiar/docs/USER_GUIDE.md:1705

# 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

familiar_agent-1.15.41/familiar/onboard.py:237

                subprocess.run(
                    ["bash", "-c", "curl -fsSL https://ollama.ai/install.sh | sh"],
                    check=True,
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

familiar_agent-1.15.41/familiar/onboard.py:244

                C.fail(
                    "Ollama install failed. Install manually: 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

familiar_agent-1.15.41/familiar/onboard.py:305

                C.warn(
                    "Ollama binary not found. Install: 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.

Badge

Sigil scan badge for pypi/familiar-agent

Markdown

[![Sigil Scan](https://sigilsec.ai/badge/pypi/familiar-agent)](https://sigilsec.ai/scans/30226289-EF89-46FA-BF7E-03166FF00435)

HTML

<a href="https://sigilsec.ai/scans/30226289-EF89-46FA-BF7E-03166FF00435"><img src="https://sigilsec.ai/badge/pypi/familiar-agent" 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