Inspector
Cloudron community app transparency reports
Inspect a Cloudron community app `CloudronVersions.json` feed. Repository analysis is derived from the package metadata in that feed, and the report stays intentionally conservative: it surfaces what the package appears to do, but it does not certify safety.
What this checks
CHECKS EXPLAINED
Checks Explained
Metadata links and missing fields
Reads the Cloudron feed metadata, checks whether important links are valid, and notes when required fields are missing.
Dockerfile command patterns
Scans Docker build steps for risky commands such as destructive deletes, world-writable permissions, or remote scripts piped into a shell.
Runtime shell network calls
Looks through startup shell scripts for commands like curl, wget, nc, or ssh that may contact remote systems during runtime.
Privilege escalation and credential leakage
Flags startup-script patterns that touch privileged system paths, invoke sudo, or combine secrets with outbound commands.
Feed vs repo version drift
Compares the version published in CloudronVersions.json with the version found in the package repository when that repository can be identified reliably.
- Metadata links and missing fields
- Dockerfile command patterns
- Runtime shell network calls
- Privilege escalation and credential leakage
- Feed vs repo version drift
Example inputs
https://communityapps.appx.uk/cloudron-notediscovery/CloudronVersions.json
https://raw.githubusercontent.com/BrutalBirdie/cloudron-tachyon-app/refs/heads/master/CloudronVersions.json
https://communityapps.appx.uk/cloudron-ocular/CloudronVersions.json
Generated Report
OpenClaw
Self-hosted AI gateway with Chrome, tools, and skills
Score
60/100
60 reached40 still requires deeper inspection
Automated checks can score at most 70/100. The remaining 30 points require deep inspection.
This tool is for informational purposes only. Use at your own risk.
Safety Flags
1
Fail
1
Unsure
8
Pass
Master Info
packageUrl
Not available
Website link
Repository
Not available
Packager
Andreas Dueren
minBox
9.1.0
Version
2.0.8
Tags
aigatewaychatbotautomationassistant
Detailed Checklist
packageUrl link is present and well formed when required (7/7)
pass
No `packageUrl` declared. This is valid for packages targeting minBoxVersion below 10.
Website link is present and well formed (7/7)
pass
https://openclaw.ai
Metadata and README links avoid insecure HTTP (7/7)
pass
No HTTP links found.
Metadata and README links avoid URL shorteners (7/7)
pass
No shortener links found.
Cloudron feed version matches the repository manifest (7/7)
pass
Feed and repo both report 2.0.8.
Repository content was fetched for static analysis (7/7)
pass
https://git.due.ren/andreas/openclaw-cloudron @ ecf1e79be29ae0697bc91f32ffe58953a5a3ca25
Dockerfile scan did not detect clearly suspicious commands (0/7)
fail
Dockerfile:12 System package installation found. Review whether all packages are justified.
Dockerfile:61 System package installation found. Review whether all packages are justified.
Dockerfile:65 Remote script piped directly into a shell in Dockerfile.
Dockerfile:74 System package installation found. Review whether all packages are justified.
Runtime shell scripts avoid suspicious outbound network calls (4/7)
unsure
start.sh:75 Network-capable command found in a runtime shell script.
Runtime shell scripts avoid privilege escalation patterns (7/7)
pass
No privilege-escalation patterns found in scanned shell scripts.
Runtime shell scripts avoid credential leakage patterns (7/7)
pass
No credential leakage patterns found in scanned shell scripts.
Raw Findings
Flagged lines are highlighted directly in the code snippet.
5 findings
Dockerfile:12
low
System package installation found. Review whether all packages are justified.
1011# Install system dependencies12RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \13 git \14 curl \
Dockerfile:61
low
System package installation found. Review whether all packages are justified.
59 curl -fsSL https://pkgs.tailscale.com/stable/ubuntu/noble.tailscale-keyring.list | tee /etc/apt/sources.list.d/tailscale.list && \60 apt-get update && \61 apt-get install -y tailscale && \62 rm -rf /var/lib/apt/lists/*63
Dockerfile:65
high
Remote script piped directly into a shell in Dockerfile.
6364# Install uv (Python package runner, needed by nano-banana-pro skill)65RUN curl -LsSf https://astral.sh/uv/install.sh | sh && \66 ln -sf /root/.local/bin/uv /usr/local/bin/uv67
Dockerfile:74
low
System package installation found. Review whether all packages are justified.
72RUN curl -fsSL https://apt.releases.hashicorp.com/gpg | gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg && \73 echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" > /etc/apt/sources.list.d/hashicorp.list && \74 apt-get update && apt-get install -y vault && \75 rm -rf /var/lib/apt/lists/*76
start.sh:75
medium
Network-capable command found in a runtime shell script.
73 else74 echo " Downloading $skill..."75 curl -fsSL "https://github.com/$owner/$name/archive/refs/heads/main.tar.gz" -o "/tmp/$name.tar.gz" && \76 mkdir -p "/app/data/skills/$name" && \77 tar xzf "/tmp/$name.tar.gz" --strip-components=1 -C "/app/data/skills/$name" && \
