Automated Analysis != Safety. This is a Developer Transparency Tool.
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
Refresh
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

AnythingLLM

AnythingLLM is a powerful AI app that can help you build and deploy your own AI models.

Score
63/100
63 reached37 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
0
Unsure
9
Pass
Master Info
packageUrl
Not available
Repository
Not available
Packager
@timconsidine
minBox
9.1.0
Version
0.0.7
Tags
aillmrag
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://github.com/Mintplex-Labs/anything-llm
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 0.0.7.
Repository content was fetched for static analysis (7/7)
pass
https://forgejo.tcjc.uk/cca/cloudron-anythingllm @ 847a47de6acd31fab2a482891d6eaf42d76d40a3
Dockerfile scan did not detect clearly suspicious commands (0/7)
fail
Dockerfile:3 System package installation found. Review whether all packages are justified. Dockerfile:32 System package installation found. Review whether all packages are justified. Dockerfile:77 System package installation found. Review whether all packages are justified. Dockerfile:85 Remote script piped directly into a shell in Dockerfile.
Runtime shell scripts avoid suspicious outbound network calls (7/7)
pass
No runtime network commands found in scanned shell scripts.
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.
4 findings
Dockerfile:3
low
System package installation found. Review whether all packages are justified.
1FROM debian:bookworm-slim AS upstream-source
2ARG ANYTHINGLLM_VERSION=v1.15.0
3RUN apt-get update && apt-get install -y --no-install-recommends \
4 ca-certificates \
5 curl \
Dockerfile:32
low
System package installation found. Review whether all packages are justified.
30 PATH=/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/sbin:/bin
31
32RUN apt-get update && apt-get install -y --no-install-recommends \
33 build-essential \
34 ca-certificates \
Dockerfile:77
low
System package installation found. Review whether all packages are justified.
75 && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_18.x nodistro main" > /etc/apt/sources.list.d/nodesource.list \
76 && apt-get update \
77 && apt-get install -y --no-install-recommends nodejs \
78 && ln -sf /usr/bin/node /usr/local/bin/node \
79 && ln -sf /usr/bin/npm /usr/local/bin/npm \
Dockerfile:85
high
Remote script piped directly into a shell in Dockerfile.
83 && /usr/bin/npm --version >/dev/null \
84 && /usr/bin/npm install --global yarn@1.22.19 \
85 && curl -LsSf https://astral.sh/uv/0.6.10/install.sh | sh \
86 && mv /app/data/.local/bin/uv /usr/local/bin/uv \
87 && mv /app/data/.local/bin/uvx /usr/local/bin/uvx \
0.0.9