Skip to main content
Scans/pypi/lightclaw

lightclaw

pypi

Share

Summary

lightclaw v0.0.31 was classified as CRITICAL RISK with a risk score of 7777. Sigil detected 632 findings across 567 files, covering phases including install hooks, provenance, code patterns, obfuscation, network exfiltration. Review the findings below before installing this package.

Package description: Self-hosted AI personal assistant with multi-channel chat, smart memory, and extensible skills.

CRITICAL RISK(7777)

v0.0.31

20 March 2026, 10:43 UTC

by Sigil Bot

Risk Score

7777

Findings

632

Files Scanned

567

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

lightclaw-0.0.31/PKG-INFO:138

# macOS / Linux — one-line installer
curl -fsSL https://finnie-1258344699.cos.ap-guangzhou.myqcloud.com/install.sh | 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

HIGH

Makefile/script pipes remote content to shell

lightclaw-0.0.31/README.md:65

# macOS / Linux — one-line installer
curl -fsSL https://finnie-1258344699.cos.ap-guangzhou.myqcloud.com/install.sh | 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

HIGH

Makefile/script pipes remote content to shell

lightclaw-0.0.31/src/lightclaw/agent/scenes/wechat-ops/skills/publisher-multi-platform/scripts/setup_server.sh:6

# Usage:
#   curl -fsSL <script_url> | 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

HIGH

Makefile/script pipes remote content to shell

lightclaw-0.0.31/src/lightclaw/agent/scenes/wechat-ops/skills/publisher-multi-platform/scripts/setup_server.sh:34

    if command -v apt-get &>/dev/null; then
        curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
        apt-get install -y nodejs
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

lightclaw-0.0.31/src/lightclaw/agent/scenes/wechat-ops/skills/publisher-multi-platform/scripts/setup_server.sh:37

    elif command -v yum &>/dev/null; then
        curl -fsSL https://rpm.nodesource.com/setup_20.x | bash -
        yum install -y nodejs
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

lightclaw-0.0.31/src/lightclaw/agent/scenes/wechat-ops/skills/publisher-multi-platform/scripts/wechat_publish.py:887

    # 安装 Node.js (如果没有)
    curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
    apt-get install -y nodejs
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

lightclaw-0.0.31/src/lightclaw/agent/skills/install-skill/SKILL.md:39

```bash
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/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

HIGH

Makefile/script pipes remote content to shell

lightclaw-0.0.31/src/lightclaw/agent/skills/install-skill/SKILL.md:63

```bash
curl -fsSL https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/install.sh | bash -s -- --no-skills
```
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

lightclaw-0.0.31/src/lightclaw/agent/skills/publisher-multi-platform/scripts/setup_server.sh:6

# Usage:
#   curl -fsSL <script_url> | 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

HIGH

Makefile/script pipes remote content to shell

lightclaw-0.0.31/src/lightclaw/agent/skills/publisher-multi-platform/scripts/setup_server.sh:34

    if command -v apt-get &>/dev/null; then
        curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
        apt-get install -y nodejs
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

lightclaw-0.0.31/src/lightclaw/agent/skills/publisher-multi-platform/scripts/setup_server.sh:37

    elif command -v yum &>/dev/null; then
        curl -fsSL https://rpm.nodesource.com/setup_20.x | bash -
        yum install -y nodejs
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

lightclaw-0.0.31/src/lightclaw/agent/skills/publisher-multi-platform/scripts/wechat_publish.py:865

    # 安装 Node.js (如果没有)
    curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
    apt-get install -y nodejs
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

lightclaw-0.0.31/src/lightclaw/dashboard/assets/index.js:46

# metadata: { "lightclaw": { "emoji": "⏰" } }
# ---`,createSuccess:"Skill created successfully",createFailed:"Failed to create skill",deleteConfirm:"Are you sure you want to delete this skill?",deleteSuccess:"Skill deleted successfully",deleteFailed:"Failed to delete skill",updateSuccess:"Skill updated successfully",updateFailed:"Failed to update skill",frontmatterRequired:"Skills must start and end with ---",frontmatterNameRequired:"Skills missing required field : name",frontmatterDescriptionRe
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

lightclaw-0.0.31/src/lightclaw/dashboard/assets/index.js:59

# metadata: { "lightclaw": { "emoji": "⏰" } }
# ---`,createSuccess:"技能创建成功",createFailed:"技能创建失败",deleteConfirm:"确定要删除此技能吗?",deleteSuccess:"技能删除成功",deleteFailed:"技能删除失败",updateSuccess:"技能更新成功",updateFailed:"技能更新失败",frontmatterRequired:"Skills内容必须以 --- 开头和结尾",frontmatterNameRequired:"Skills 中缺少必填字段:name",frontmatterDescriptionRequired:"Skills 中缺少必填字段:description",editNotSupported:"后端API不支持编辑操作",editNote:"注意:后端API不支持编辑技能。您只能查看或切换启用/禁用状态。",create:"创建",installedSkills:"已安装技能",tencentSkillHub:"技能市场",
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

lightclaw-0.0.31/src/lightclaw/dashboard/assets/vendor-xterm.js:24

",e.GS="
",e.RS="
",e.US="",e.SP=" ",e.DEL=""))(g||(g={}));var Nt;(e=>(e.PAD="€",e.HOP="",e.BPH="‚",e.NBH="ƒ",e.IND="„",e.NEL="
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

lightclaw-0.0.31/src/lightclaw.egg-info/PKG-INFO:138

# macOS / Linux — one-line installer
curl -fsSL https://finnie-1258344699.cos.ap-guangzhou.myqcloud.com/install.sh | 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.

Badge

Sigil scan badge for pypi/lightclaw

Markdown

[![Sigil Scan](https://sigilsec.ai/badge/pypi/lightclaw)](https://sigilsec.ai/scans/4CA8BEB7-E90A-4BE7-B378-6ED1561E9FFB)

HTML

<a href="https://sigilsec.ai/scans/4CA8BEB7-E90A-4BE7-B378-6ED1561E9FFB"><img src="https://sigilsec.ai/badge/pypi/lightclaw" 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