Summary
sentient-evals v0.1.11 was classified as CRITICAL RISK with a risk score of 1564. Sigil detected 88 findings across 170 files, covering phases including provenance, code patterns, install hooks, obfuscation, network exfiltration. Review the findings below before installing this package.
Package description: Universal evaluation harness for AI agents (local + embeddable).
v0.1.11
25 March 2026, 18:35 UTC
by Sigil Bot
Risk Score
1564
Findings
88
Files Scanned
170
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
HIGHMakefile/script pipes remote content to shell
sentient_evals-0.1.11/harbor-tasks/hello-world/tests/test.sh:4
apt-get update
apt-get install -y curl
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
HIGHMakefile/script pipes remote content to shell
sentient_evals-0.1.11/src/sentient_evals/adapters/installed/install-aider.sh:4
apt-get update
apt-get install -y curl
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
HIGHMakefile/script pipes remote content to shell
sentient_evals-0.1.11/src/sentient_evals/adapters/installed/install-claude-code.sh:20
{% if version %}
curl -fsSL https://claude.ai/install.sh | bash -s -- {{ version }}
{% else %}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
HIGHMakefile/script pipes remote content to shell
sentient_evals-0.1.11/src/sentient_evals/adapters/installed/install-claude-code.sh:22
{% else %}
curl -fsSL https://claude.ai/install.sh | bash
{% endif %}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
HIGHMakefile/script pipes remote content to shell
sentient_evals-0.1.11/src/sentient_evals/adapters/installed/install-cline.sh:12
echo "Installing Node.js via nvm..."
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.2/install.sh | bash
export NVM_DIR="$HOME/.nvm"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
HIGHMakefile/script pipes remote content to shell
sentient_evals-0.1.11/src/sentient_evals/adapters/installed/install-codex.sh:4
apt-get update
apt-get install -y curl
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
HIGHMakefile/script pipes remote content to shell
sentient_evals-0.1.11/src/sentient_evals/adapters/installed/install-cursor-cli.sh:7
curl -fsS https://cursor.com/install | bash
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
HIGHMakefile/script pipes remote content to shell
sentient_evals-0.1.11/src/sentient_evals/adapters/installed/install-gemini-cli.sh:4
apt-get update
apt-get install -y curl
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
HIGHMakefile/script pipes remote content to shell
sentient_evals-0.1.11/src/sentient_evals/adapters/installed/install-goose.sh:30
{% if version %}
curl -fsSL https://github.com/block/goose/releases/download/{{ version }}/download_cli.sh | bash
{% else %}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
HIGHMakefile/script pipes remote content to shell
sentient_evals-0.1.11/src/sentient_evals/adapters/installed/install-goose.sh:32
{% else %}
curl -fsSL https://github.com/block/goose/releases/download/stable/download_cli.sh | bash
{% endif %}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
HIGHMakefile/script pipes remote content to shell
sentient_evals-0.1.11/src/sentient_evals/adapters/installed/install-mini-swe-agent.sh:8
# Install uv
curl -LsSf https://astral.sh/uv/0.7.13/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
HIGHMakefile/script pipes remote content to shell
sentient_evals-0.1.11/src/sentient_evals/adapters/installed/install-opencode.sh:4
apt-get update
apt-get install -y curl
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
HIGHMakefile/script pipes remote content to shell
sentient_evals-0.1.11/src/sentient_evals/adapters/installed/install-openhands.sh:8
# 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
HIGHMakefile/script pipes remote content to shell
sentient_evals-0.1.11/src/sentient_evals/adapters/installed/install-qwen-code.sh:7
# Install npm, nvm, and node
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.2/install.sh | bash
source "$HOME/.nvm/nvm.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
HIGHMakefile/script pipes remote content to shell
sentient_evals-0.1.11/src/sentient_evals/adapters/installed/install-swe-agent.sh:11
if ! command -v uv >/dev/null 2>&1; then
curl -LsSf https://astral.sh/uv/install.sh | sh
fiWhy 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
CRITICALsetup.py executes code at install time
sentient_evals-0.1.11/src/sentient_evals/environments/docker_sdk.py:96
def _setup() -> None:
self._client = docker.from_env()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
HIGHMakefile/script pipes remote content to shell
sentient_evals-0.1.11/src/sentient_evals/environments/providers/e2b.py:456
" && rm -rf /var/lib/apt/lists/*\n"
"RUN curl -fsSL https://claude.ai/install.sh | bash\n"
"ENV PATH=/root/.local/bin:$PATH\n"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
HIGHMakefile/script pipes remote content to shell
sentient_evals-0.1.11/tests/test_e2b_provider.py:453
assert template["context"] == str(tmp_path)
assert "curl -fsSL https://claude.ai/install.sh | bash" in template["path"]
assert _FakeAsyncTemplate.build_calls[0]["memory_mb"] == 4096Why 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
Markdown
[](https://sigilsec.ai/scans/D5C11E4E-EFA5-4D08-8E2A-AAF6B81729E7)HTML
<a href="https://sigilsec.ai/scans/D5C11E4E-EFA5-4D08-8E2A-AAF6B81729E7"><img src="https://sigilsec.ai/badge/pypi/sentient-evals" alt="Sigil Scan"></a>Run This Scan Yourself
Scan your own packages
Run Sigil locally to audit any package before it touches your codebase.
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.