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

Unseen Servant

One folder of writing, served to Gemini, Gopher, Spartan, Nex, Finger and the web

Score
64/100
64 reached36 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
0
Fail
2
Unsure
8
Pass
Master Info
packageUrl
Not available
Repository
Not available
Packager
Wandering Monster
minBox
9.1.0
Version
1.0.1
Tags
geminigopherpublishingstatic-sitesmolnet
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://unseenservant.dev/
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 1.0.1.
Repository content was fetched for static analysis (7/7)
pass
https://forgejo.unseenservant.dev/unseen-servant/unseen-servant @ c1a1243d91739bfa64c59d7159990eb2facde6ec
Dockerfile scan did not detect clearly suspicious commands (4/7)
unsure
Dockerfile:29 System package installation found. Review whether all packages are justified. packaging/oci/Dockerfile:14 System package installation found. Review whether all packages are justified.
Runtime shell scripts avoid suspicious outbound network calls (4/7)
unsure
scripts/collect-review-copy.sh:70 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.
3 findings
Dockerfile:29
low
System package installation found. Review whether all packages are justified.
27FROM rust:1.93.1 AS build
28WORKDIR /build
29RUN apt-get update -qq && apt-get install -y -qq musl-tools >/dev/null \
30 && rustup target add x86_64-unknown-linux-musl
31# Deliberately NOT copying rust-toolchain.toml into the build stage: the
packaging/oci/Dockerfile:14
low
System package installation found. Review whether all packages are justified.
12FROM rust:1.93.1 AS build
13WORKDIR /build
14RUN apt-get update -qq && apt-get install -y -qq musl-tools >/dev/null \
15 && rustup target add x86_64-unknown-linux-musl
16# See the repo-root Dockerfile for why rust-toolchain.toml is deliberately
scripts/collect-review-copy.sh:70
medium
Network-capable command found in a runtime shell script.
68fetch() { # name, port, request-bytes, outfile
69 local name="$1" port="$2" req="$3" out="$4"
70 printf '%b' "$req" | timeout 10 nc "$HOST" "$port" >"$OUT/$out" 2>/dev/null
71 if [ -s "$OUT/$out" ]; then note "$out"; else note "$name: NO RESPONSE"; fi
72}
0.0.11