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

Windmill

Turn scripts into workflows, schedules, webhooks and UIs

Score
57/100
57 reached43 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
2
Unsure
7
Pass
Master Info
packageUrl
Not available
Repository
Not available
Packager
OrcVole
minBox
9.1.0
Version
1.2.0
Tags
automationworkflowdeveloperscripts
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://www.windmill.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.2.0.
Repository content was fetched for static analysis (7/7)
pass
https://github.com/OrcVole/windmill-cloudron @ 83fab45557c421285568a3eade5c2c3f5f4f14d5
Dockerfile scan did not detect clearly suspicious commands (4/7)
unsure
Dockerfile:20 System package installation found. Review whether all packages are justified.
Runtime shell scripts avoid suspicious outbound network calls (4/7)
unsure
test/gate2.sh:16 Network-capable command found in a runtime shell script. test/gate2.sh:21 Network-capable command found in a runtime shell script. test/gate2.sh:30 Network-capable command found in a runtime shell script. test/gate2.sh:31 Network-capable command found in a runtime shell script. test/gate2.sh:45 Network-capable command found in a runtime shell script. test/secret-scan.sh:227 Network-capable command found in a runtime shell script. test/secret-scan.sh:228 Network-capable command found in a runtime shell script. test/secret-scan.sh:229 Network-capable command found in a runtime shell script. test/secret-scan.sh:232 Network-capable command found in a runtime shell script. test/secret-scan.sh:243 Network-capable command found in a runtime shell script. test/secret-scan.sh:248 Network-capable command found in a runtime shell script. test/smoke.sh:45 Network-capable command found in a runtime shell script. test/smoke.sh:56 Network-capable command found in a runtime shell script. test/smoke.sh:62 Network-capable command found in a runtime shell script. test/smoke.sh:66 Network-capable command found in a runtime shell script. test/smoke.sh:69 Network-capable command found in a runtime shell script.
Runtime shell scripts avoid privilege escalation patterns (0/7)
fail
test/secret-scan.sh:156 Privileged command or direct system-path modification detected in startup script. test/secret-scan.sh:227 Privileged command or direct system-path modification detected in startup script. test/secret-scan.sh:228 Privileged command or direct system-path modification detected in startup script. test/secret-scan.sh:229 Privileged command or direct system-path modification detected in startup script. test/secret-scan.sh:232 Privileged command or direct system-path modification detected in startup script. test/secret-scan.sh:257 Privileged command or direct system-path modification detected in startup script.
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.
23 findings
Dockerfile:20
low
System package installation found. Review whether all packages are justified.
18# Bundled PostgreSQL 16 server (Ubuntu 24.04 ships 16.x in main).
19RUN apt-get update \
20 && apt-get install -y --no-install-recommends postgresql-16 \
21 && rm -rf /var/lib/apt/lists/*
22
test/gate2.sh:16
medium
Network-capable command found in a runtime shell script.
14
15# A. identity: the version actually serving
16V=$(curl -sf "$H/api/version")
17note "serving ${V}"
18if [ -n "$WANT" ]; then echo "$V" | grep -q "$WANT" && ok "version contains ${WANT}" || bad "version '${V}' lacks expected ${WANT}"; fi
test/gate2.sh:21
medium
Network-capable command found in a runtime shell script.
19
20# authenticated subset
21TOKEN=$(curl -sf -X POST "$H/api/auth/login" -H 'Content-Type: application/json' \
22 -d "{\"email\":\"${EMAIL}\",\"password\":\"${PASS}\"}" 2>/dev/null || true)
23if [ -z "$TOKEN" ]; then
test/gate2.sh:30
medium
Network-capable command found in a runtime shell script.
28
29# B. data preservation: seeded corpus intact (workspace 'gate': 1 script, >=6 completed jobs)
30SC=$(curl -sf "${A[@]}" "$H/api/w/gate/scripts/list?per_page=50" | jq 'length')
31JC=$(curl -sf "${A[@]}" "$H/api/w/gate/jobs/completed/list?per_page=100" | jq 'length')
32note "scripts=${SC} completed_jobs=${JC}"
test/gate2.sh:31
medium
Network-capable command found in a runtime shell script.
29# B. data preservation: seeded corpus intact (workspace 'gate': 1 script, >=6 completed jobs)
30SC=$(curl -sf "${A[@]}" "$H/api/w/gate/scripts/list?per_page=50" | jq 'length')
31JC=$(curl -sf "${A[@]}" "$H/api/w/gate/jobs/completed/list?per_page=100" | jq 'length')
32note "scripts=${SC} completed_jobs=${JC}"
33[ "${SC:-0}" -ge 1 ] && ok "seeded script present" || bad "seeded script missing"
test/gate2.sh:45
medium
Network-capable command found in a runtime shell script.
43# C. end-to-end: run the seeded probe ON THIS VERSION and demand a real computed result.
44# This is the strongest single assertion: scheduler, worker, and result path all exercised.
45R=$(curl -sf -X POST "$H/api/w/gate/jobs/run_wait_result/p/u/admin/gate_probe" "${A[@]}" \
46 -H 'Content-Type: application/json' -d '{"n": 12}' --max-time 180 || true)
47echo "$R" | jq -e '.squared == 144' >/dev/null 2>&1 \
test/secret-scan.sh:156
high
Privileged command or direct system-path modification detected in startup script.
154 # it does not ship is simply absent. Only then are the container-side hits for these exact paths
155 # dropped, and only for these exact paths, in the same spirit as the pinned SSH keys below.
156 RUNTIME_PATHS=(/etc/hosts /etc/resolv.conf /etc/hostname)
157 RUNFLAGS=(--network=none) # no DNS/hosts wiring either engine can avoid
158 [[ "$CRI" == *podman* ]] && RUNFLAGS+=(--no-hosts) # podman only; docker always injects
test/secret-scan.sh:227
high
Privileged command or direct system-path modification detected in startup script.
225 # hashes whenever the base image digest changes.
226 declare -A PINNED_SSH=(
227 [/etc/ssh/ssh_host_ecdsa_key]=677458f83d985da3fd7cdd208e90e4eac09da5be205425a5f96a6242dc985c33
228 [/etc/ssh/ssh_host_ed25519_key]=0c575ce8d9ba487b05cc473fad4b0650fb950181028e6ac19796f86f56f22a7a
229 [/etc/ssh/ssh_host_rsa_key]=ae0ea8087e90baf138d277ca52b6cf47b5010adc0e5bd84236713eee1b85de85
test/secret-scan.sh:227
medium
Network-capable command found in a runtime shell script.
225 # hashes whenever the base image digest changes.
226 declare -A PINNED_SSH=(
227 [/etc/ssh/ssh_host_ecdsa_key]=677458f83d985da3fd7cdd208e90e4eac09da5be205425a5f96a6242dc985c33
228 [/etc/ssh/ssh_host_ed25519_key]=0c575ce8d9ba487b05cc473fad4b0650fb950181028e6ac19796f86f56f22a7a
229 [/etc/ssh/ssh_host_rsa_key]=ae0ea8087e90baf138d277ca52b6cf47b5010adc0e5bd84236713eee1b85de85
test/secret-scan.sh:228
high
Privileged command or direct system-path modification detected in startup script.
226 declare -A PINNED_SSH=(
227 [/etc/ssh/ssh_host_ecdsa_key]=677458f83d985da3fd7cdd208e90e4eac09da5be205425a5f96a6242dc985c33
228 [/etc/ssh/ssh_host_ed25519_key]=0c575ce8d9ba487b05cc473fad4b0650fb950181028e6ac19796f86f56f22a7a
229 [/etc/ssh/ssh_host_rsa_key]=ae0ea8087e90baf138d277ca52b6cf47b5010adc0e5bd84236713eee1b85de85
230 )
test/secret-scan.sh:228
medium
Network-capable command found in a runtime shell script.
226 declare -A PINNED_SSH=(
227 [/etc/ssh/ssh_host_ecdsa_key]=677458f83d985da3fd7cdd208e90e4eac09da5be205425a5f96a6242dc985c33
228 [/etc/ssh/ssh_host_ed25519_key]=0c575ce8d9ba487b05cc473fad4b0650fb950181028e6ac19796f86f56f22a7a
229 [/etc/ssh/ssh_host_rsa_key]=ae0ea8087e90baf138d277ca52b6cf47b5010adc0e5bd84236713eee1b85de85
230 )
test/secret-scan.sh:229
high
Privileged command or direct system-path modification detected in startup script.
227 [/etc/ssh/ssh_host_ecdsa_key]=677458f83d985da3fd7cdd208e90e4eac09da5be205425a5f96a6242dc985c33
228 [/etc/ssh/ssh_host_ed25519_key]=0c575ce8d9ba487b05cc473fad4b0650fb950181028e6ac19796f86f56f22a7a
229 [/etc/ssh/ssh_host_rsa_key]=ae0ea8087e90baf138d277ca52b6cf47b5010adc0e5bd84236713eee1b85de85
230 )
231 ssh_listing="$("$CRI" run --rm --user 0 "${RUNFLAGS[@]}" --entrypoint /bin/bash "$IMAGE" \
test/secret-scan.sh:229
medium
Network-capable command found in a runtime shell script.
227 [/etc/ssh/ssh_host_ecdsa_key]=677458f83d985da3fd7cdd208e90e4eac09da5be205425a5f96a6242dc985c33
228 [/etc/ssh/ssh_host_ed25519_key]=0c575ce8d9ba487b05cc473fad4b0650fb950181028e6ac19796f86f56f22a7a
229 [/etc/ssh/ssh_host_rsa_key]=ae0ea8087e90baf138d277ca52b6cf47b5010adc0e5bd84236713eee1b85de85
230 )
231 ssh_listing="$("$CRI" run --rm --user 0 "${RUNFLAGS[@]}" --entrypoint /bin/bash "$IMAGE" \
test/secret-scan.sh:232
high
Privileged command or direct system-path modification detected in startup script.
230 )
231 ssh_listing="$("$CRI" run --rm --user 0 "${RUNFLAGS[@]}" --entrypoint /bin/bash "$IMAGE" \
232 -c 'for f in /etc/ssh/ssh_host_*_key; do [ -e "$f" ] && sha256sum "$f"; done' 2>/dev/null)"
233 found=0; pinned_ok=0
234 while IFS= read -r line; do
test/secret-scan.sh:232
medium
Network-capable command found in a runtime shell script.
230 )
231 ssh_listing="$("$CRI" run --rm --user 0 "${RUNFLAGS[@]}" --entrypoint /bin/bash "$IMAGE" \
232 -c 'for f in /etc/ssh/ssh_host_*_key; do [ -e "$f" ] && sha256sum "$f"; done' 2>/dev/null)"
233 found=0; pinned_ok=0
234 while IFS= read -r line; do
test/secret-scan.sh:243
medium
Network-capable command found in a runtime shell script.
241 shp="$(printf '%s\n' "$shp" | grep -vF "$f:" || true)" # drop ONLY this verified exact path
242 else
243 emit ssh-key "$f sha256=$h is NOT a pinned base host key (new, changed or extra: treat as a leak)"
244 fi
245 done <<< "$ssh_listing"
test/secret-scan.sh:248
medium
Network-capable command found in a runtime shell script.
246 echo " host keys: $found found, $pinned_ok pinned-ok, ${#PINNED_SSH[@]} expected"
247 [[ "$found" -eq "${#PINNED_SSH[@]}" && "$pinned_ok" -eq "${#PINNED_SSH[@]}" ]] \
248 || emit ssh-key "host key count mismatch: $found found, $pinned_ok pinned-ok, ${#PINNED_SSH[@]} expected"
249
250 # DISTRO-GENERATED PLACEHOLDER KEYS. Some Debian packages mint a self-signed key in their
test/secret-scan.sh:257
high
Privileged command or direct system-path modification detected in startup script.
255 # Nothing else is exempt: a key at any other path is still a finding, including a second key in
256 # the same directory. Add a path here only after confirming the package does not reference it.
257 PLACEHOLDER_KEYS=(/etc/ssl/private/ssl-cert-snakeoil.key /etc/prosody/certs/localhost.key)
258 for k in "${PLACEHOLDER_KEYS[@]}"; do
259 if printf '%s' "$shp" | grep -qF "$k:"; then
test/smoke.sh:45
medium
Network-capable command found in a runtime shell script.
43ok=
44for _ in $(seq 1 60); do
45 if [ "$(curl -fsS -o /dev/null -w '%{http_code}' "${BASE}/health" 2>/dev/null)" = "200" ]; then ok=1; break; fi
46 sleep 2
47done
test/smoke.sh:56
medium
Network-capable command found in a runtime shell script.
54 # expected version comes from the MANIFEST, never hardcoded: a pinned '1.741.0' here outlived
55 # two upstream bumps and made the suite red-on-healthy, unnoticed because unrun (2026-08-03)
56 if curl -fsS "${BASE}/api/version" 2>/dev/null | grep -qF "${_g_want}"; then ready=1; break; fi
57 sleep 2
58done
test/smoke.sh:62
medium
Network-capable command found in a runtime shell script.
60echo " /api/version reports ${_g_want} OK"
61
62[ "$(curl -fsS -o /dev/null -w '%{http_code}' "${BASE}/" 2>/dev/null)" = "200" ] || fail "/ did not return 200"
63echo " / (frontend) 200 OK"
64
test/smoke.sh:66
medium
Network-capable command found in a runtime shell script.
64
65echo "==> smoke: authenticated operation (default-cred login + whoami)"
66TOKEN="$(curl -fsS -X POST "${BASE}/api/auth/login" -H 'Content-Type: application/json' \
67 -d '{"email":"admin@windmill.dev","password":"changeme"}' 2>/dev/null || true)"
68[ "${#TOKEN}" -ge 16 ] || fail "login did not return a token"
test/smoke.sh:69
medium
Network-capable command found in a runtime shell script.
67 -d '{"email":"admin@windmill.dev","password":"changeme"}' 2>/dev/null || true)"
68[ "${#TOKEN}" -ge 16 ] || fail "login did not return a token"
69curl -fsS "${BASE}/api/users/whoami" -H "Authorization: Bearer ${TOKEN}" 2>/dev/null \
70 | grep -q '"super_admin":true' || fail "whoami did not confirm super_admin"
71echo " login + whoami(super_admin) OK"
0.0.9