Public scan — anyone with this URL can view this analysis. Sign up to track your own repos privately, run scheduled re-scans, and get AI fix prompts via your dashboard.
19 of your 102 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.

Scan timing: clone 10.74s · analysis 9.22s · 20.2 MB · GitHub API rate-limit (preflight)

Szybet/InkWatchy

https://github.com/Szybet/InkWatchy · scanned 2026-06-05 22:54 UTC (4 days, 5 hours ago) · 10 languages

92 raw signals (62 security + 30 graph) 0th percentile · C · medium (20-100K LoC) System graph score 76 (lower by 33)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 4 days, 5 hours ago · v2 · 45 actionable findings from 2 signal sources. 32 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Score breakdown â 2026-05-18-v5
Component Sub-score Weight Contribution
structure_score 65.0 0.15 9.75
security_score 45.8 0.25 11.45
testing_score 0.0 0.20 0.00
documentation_score 60.0 0.15 9.00
practices_score 40.0 0.15 6.00
code_quality 60.2 0.10 6.02
Overall 1.00 42.2
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Scan summary Quality grade D (42/100). Dimensions: security 46, maintainability 65. 62 findings (17 security). 74,444 lines analyzed.

Showing 32 of 45 actionable findings. 77 raw detector signals were grouped into reader-sized issues. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

critical System graph security Secrets conf 1.00 Possible secret in resources/tools/vault/convertImagesVault.sh
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
resources/tools/vault/convertImagesVault.sh:18
low Security checks quality Quality conf 1.00 ✓ Repobility [MINED012] Curl Pipe Bash: curl ... | sh / bash — runs unverified network code.
Review and fix per the pattern semantics. See CWE-494 / A08:2021 for context.
resources/tools/other/setup/installRust.sh:10
high Security checks quality Quality conf 1.00 ✓ Repobility [MINED034] Python Subprocess Shell True: subprocess(..., shell=True) enables command injection.
Review and fix per the pattern semantics. See CWE-78 / for context.
resources/tools/other/depracated/generatePartTable.py:20
high Security checks security path traversal conf 0.80 [SEC013] Path Traversal — User Input in File Path: User-controlled input used in file path without sanitization. Allows reading arbitrary files.
Use os.path.realpath() and verify the path starts with your expected base directory. Use secure_filename() for uploads.
resources/tools/fs/compressFile.c:29
high Security checks software dependencies conf 0.88 4 occurrences bincode: RUSTSEC-2025-0141
Bincode is unmaintained
4 files, 4 locations
components/rusty/crates/general_page/Cargo.lock
components/rusty/crates/set_date/Cargo.lock
components/rusty/crates/set_time/Cargo.lock
components/rusty/inkrusty/Cargo.lock
high Security checks software dependencies conf 0.88 bytes: RUSTSEC-2026-0007
Integer overflow in `BytesMut::reserve`
components/rusty/crates/general_page/Cargo.lock
high Security checks software dependencies conf 0.88 lru: RUSTSEC-2026-0002
`IterMut` violates Stacked Borrows by invalidating internal pointer
components/rusty/crates/general_page/Cargo.lock
high Security checks software dependencies conf 0.88 4 occurrences paste: RUSTSEC-2024-0436
paste - no longer maintained
4 files, 4 locations
components/rusty/crates/general_page/Cargo.lock
components/rusty/crates/set_date/Cargo.lock
components/rusty/crates/set_time/Cargo.lock
components/rusty/inkrusty/Cargo.lock
high Security checks software dependencies conf 0.88 rand: RUSTSEC-2026-0097
Rand is unsound with a custom logger using `rand::rng()`
components/rusty/crates/general_page/Cargo.lock
high Security checks software dependencies conf 0.88 tar: RUSTSEC-2026-0067
`unpack_in` can chmod arbitrary directories by following symlinks
components/rusty/crates/general_page/Cargo.lock
high Security checks software dependencies conf 0.88 tar: RUSTSEC-2026-0068
tar-rs incorrectly ignores PAX size headers if header size is nonzero
components/rusty/crates/general_page/Cargo.lock
low Security checks security Injection conf 0.50 [SEC005] Command Injection Risk: Unsafe shell execution or eval of user input.
Use subprocess with shell=False and a list of args. Never eval user input.
resources/tools/other/depracated/generatePartTable.py:20
medium Security checks cicd CI/CD security conf 0.90 Docker build context has no .dockerignore
Without .dockerignore, build context can include source history, local env files, dependencies, and generated artifacts.
.dockerignore CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.82 Docker final stage has no non-root USER
Docker images run as root unless the image or Dockerfile switches to a non-root user.
resources/tools/other/compile/Dockerfile:1 CI/CD securitycontainers
high Security checks software dependencies conf 0.70 Remote install command pipes network code directly to a shell
Agent helper projects often publish one-line installers. `curl | sh` style commands are convenient, but they bypass review unless the script is pinned, signed, or checksum-verified.
resources/tools/other/setup/installRust.sh:10
medium Security checks software dependencies conf 0.88 tar: GHSA-3pv8-6f4r-ffg2
tar has a PAX header desynchronization issue
components/rusty/crates/general_page/Cargo.lock
medium System graph hardware Security conf 1.00 Dockerfile runs as root: resources/tools/other/compile/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in resources/tools/other/depracated/generatePartTable.py:20
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
resources/tools/other/depracated/generatePartTable.py:20 Subprocess shell true
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — resources/tools/buildTime/preBuild.py:43
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — resources/tools/other/depracated/cleanPartition.py:37
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — resources/tools/other/depracated/generatePartTable.py:20
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph security Coverage conf 1.00 No auth library detected
The scanner did not find any standard auth library (JWT, OAuth, NextAuth, Auth0, etc.). Either auth lives in custom code, in a separate service, or is missing.
auth
medium System graph cicd CI/CD security conf 1.00 No CI/CD pipelines detected
No GitHub Actions, GitLab CI, or CircleCI configs found. Without CI you can't gate deploys on tests/lints.
CI/CD securityCoverage
medium System graph quality Tests conf 1.00 Very low test-to-source ratio
0 test file(s) for 23 source file(s) (ratio 0.00). Consider adding integration or unit tests for critical paths.
Coverage
low Security checks software Race condition conf 1.00 [SEC124] TOCTOU file access (os.access then open): Check-then-use file pattern (access/exists then open) lets an attacker swap the file between check and use (symlink attack). `mktemp` is deprecated for the same reason.
Use `os.open(path, os.O_CREAT | os.O_EXCL | os.O_WRONLY)` for atomic create-only. Use `tempfile.NamedTemporaryFile()` (not `mktemp`). For locking, use `fcntl.flock`.
resources/tools/buildTime/preBuild.py:33
low Security checks cicd CI/CD security conf 0.72 5 occurrences Dockerfile installs recommended OS packages
Installing recommended packages often pulls in unnecessary runtime surface area.
lines 4, 28, 46, 58, 79
resources/tools/other/compile/Dockerfile:4, 28, 46, 58, 79 (5 hits)
CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.74 2 occurrences Dockerfile leaves apt package indexes in the image layer
Package indexes increase image size and can expose stale metadata in the final image layer.
lines 4, 79
resources/tools/other/compile/Dockerfile:4, 79 (2 hits)
CI/CD securitycontainers
low Security checks quality Quality conf 0.60 12 occurrences Duplicated implementation block across source files
Duplicate implementation blocks are maintenance debt. Keep them visible, but they are not a high-severity defect unless the duplicated logic is security-sensitive or drifting.
10 files, 12 locations
src/ui/places/weather/weatherSwitches.cpp:59, 80 (2 hits)
src/ui/watchface/watchfaces/taychron_tay/tayWeather.cpp:2, 5 (2 hits)
components/rusty/inkrusty/src/apps/set_time.rs:16
components/rusty/inkrusty/src/apps/snake.rs:20
src/hardware/acc/lib/bma4/bma456.h:85
src/ui/places/weather/weatherQuality.cpp:78
src/ui/watchface/watchfaces/inkField_Szybet/inkField.cpp:25
src/ui/watchface/watchfaces/inkField_Szybet/inkWeather.cpp:15
duplicationquality
low System graph hardware Coverage conf 1.00 Containers defined but no K8s/orchestration manifest found
Repo has Dockerfiles/compose but no Kubernetes/Nomad manifests. If the target deployment is K8s, the manifests may live in a separate ops repo.
Deployment
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: ubuntu:24.04
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
resources/tools/other/compile/Dockerfile:1 containersPinned dependencies
low System graph software Dead code candidate conf 1.00 File has no detected symbols: resources/tools/buildTime/preBuild.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: resources/tools/other/depracated/generatePartTable.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
For AI agents: Voting guide (TP/FP) MCP manifest Stdio wrapper SARIF Integrate Findings queue Vote TP/FP on findings to calibrate the engine.
For AI agents + API integrations
Email me when this repo regresses
Free. We re-scan periodically; new criticals → your inbox. No signup required for the scan itself.
API access

This page is publicly accessible at: https://repobility.com/scan/ff8d3a4c-99fa-496d-8554-9fc731687680/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/ff8d3a4c-99fa-496d-8554-9fc731687680/

Important — please don't re-submit the same URL repeatedly. The submission endpoint is idempotent: re-submitting the same git URL returns this same scan_token, not a new one. To re-scan this repo, sign up free and use the dashboard.