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.
75 of your 170 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.

danielmiessler/Personal_AI_Infrastructure

https://github.com/danielmiessler/Personal_AI_Infrastructure.git · scanned 2026-06-09 04:22 UTC (22 hours, 4 minutes ago) · 10 languages

151 findings 11/13 scanners ran 24th percentile · Typescript · medium (20-100K LoC)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

49 actionable findings from 1 signal source. 85 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

Score breakdown â 2026-05-18-v5
Component Sub-score Weight Contribution
structure_score 40.0 0.15 6.00
security_score 100.0 0.25 25.00
testing_score 17.0 0.20 3.40
documentation_score 79.0 0.15 11.85
practices_score 55.0 0.15 8.25
code_quality 52.0 0.10 5.20
Overall 1.00 59.7
security_score may be inflated — optional security scanners were skipped on this fast scan
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all

Showing 25 of 49 actionable findings. 134 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.

high Security checks quality Quality conf 1.00 ✓ Repobility [MINED107] Missing import: `warnings` used but not imported: The file uses `warnings.something(...)` but never imports `warnings`. This raises NameError at runtime the first time the line executes.
Add `import warnings` at the top of the file.
Packs/Utilities/src/Documents/Pptx/Scripts/replace.py:327
low Security checks cicd CI/CD security conf 0.35 ✓ Repobility Workflow references repository secrets in a pull_request workflow
Fork pull_request runs do not receive normal repository secrets on GitHub Actions. Review this as a reliability/intent signal, not as direct fork-secret exfiltration. Raise severity only for pull_request_target or another trusted-context path that runs untrusted PR code with secrets.
.github/workflows/claude-code-review.yml:38 CI/CD securityworkflow secretsGitHub Actions
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.
Packs/Security/src/WebAssessment/WebappScripts/with_server.py:69
high Security checks quality Quality conf 1.00 ✓ Repobility 3 occurrences [MINED106] Phantom test coverage: test_connection: Test function `test_connection` runs code but contains no assert / expect / should call — it passes regardless of behaviour. Adds line coverage without verifying anything.
Add an explicit assertion that captures the test's intent, or remove the test.
lines 250, 414, 564
Packs/Security/src/WebAssessment/OsintTools/osint-api-tools.py:250, 414, 564 (3 hits)
high Security checks quality Quality conf 1.00 ✓ Repobility 8 occurrences [MINED108] `self.to_dict` used but never assigned in __init__: Method `to_json` of class `APIResult` reads `self.to_dict`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance.
Initialize `self.to_dict = <default>` in __init__, or add a class-level default.
lines 125, 388, 400, 412, 550, 554, 558, 562
Packs/Security/src/WebAssessment/OsintTools/osint-api-tools.py:125, 388, 400, 412, 550, 554, 558, 562 (8 hits)
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.
Packs/Utilities/src/Documents/Pdf/Scripts/create_validation_image.py:16
medium Security checks cicd CI/CD security conf 0.90 ✓ Repobility 2 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `anthropics/claude-code-action` pinned to mutable ref `@v1`: `uses: anthropics/claude-code-action@v1` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to…
2 files, 2 locations
.github/workflows/claude-code-review.yml:36
.github/workflows/claude.yml:35
CI/CD securitySupply chainGitHub Actions
low Security checks cicd CI/CD security conf 0.90 ✓ Repobility 2 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `actions/checkout` pinned to mutable ref `@v4`: `uses: actions/checkout@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lo…
2 files, 2 locations
.github/workflows/claude-code-review.yml:30
.github/workflows/claude.yml:29
CI/CD securitySupply chainGitHub Actions
medium Security checks security auth conf 0.92 [AUC001] No Repobility access matrix policy found: The repository uses web/API frameworks but does not define .repobility/access.yml or equivalent authorization documentation.
Add .repobility/access.yml mapping routes to anonymous, authenticated, owner, admin, and super_admin. Keep business-specific rules in the repo so CI can enforce them.
high Security checks security auth conf 0.74 [AUC002] Low visible authorization coverage in route inventory: Only 0.0% of discovered routes show nearby authentication, authorization, middleware, or public-route evidence.
Review the access matrix and add explicit framework auth declarations or policy-file exceptions for intentionally public routes.
high Security checks security auth conf 0.68 [AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: GET /files/count/route.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
Packs/Telos/src/DashboardTemplate/App/api/files/count/route.ts:6
high Security checks security auth conf 0.68 [AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: POST /chat/route.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
Packs/Telos/src/DashboardTemplate/App/api/chat/route.ts:5
high Security checks security auth conf 0.68 [AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: POST /upload/route.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
Packs/Telos/src/DashboardTemplate/App/api/upload/route.ts:8
medium Security checks quality Practices conf 1.00 [CFG006] Missing .gitignore: No .gitignore file. Risk of committing secrets and build artifacts.
Add a .gitignore appropriate for your language/framework.
low Security checks quality Error handling conf 1.00 [ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level.
Log the error: `except Exception: logger.debug('cleanup failed', exc_info=True)`. Or handle specific exception types.
Packs/Utilities/src/Documents/Pptx/Scripts/rearrange.py:124
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.
Packs/Security/src/WebAssessment/WebappScripts/with_server.py:69
medium Security checks security path traversal conf 1.00 [SEC012] ZipSlip — Archive Path Traversal: Archive extraction without path validation allows writing files outside the target directory.
Validate extracted paths with os.path.realpath() and ensure they stay within the target directory.
Packs/Utilities/src/Documents/Docx/Ooxml/Scripts/unpack.py:17
medium Security checks software Resource exhaustion conf 1.00 [SEC115] Decompression without size cap (zip/gzip bomb): Decompressing untrusted archives without a size or ratio cap → memory/disk exhaustion DoS (10kb → 4GB classic 'zip bomb').
Wrap reader with `io.LimitReader(r, MAX_BYTES)`. In Python, iterate `ZipFile.infolist()` and check each entry's `file_size`. Cap total uncompressed bytes (e.g. 100MB).
Packs/Utilities/src/Documents/Pptx/Ooxml/Scripts/unpack.py:17
medium Security checks software Resource exhaustion conf 1.00 [SEC115] Decompression without size cap (zip/gzip bomb): Decompressing untrusted archives without a size or ratio cap → memory/disk exhaustion DoS (10kb → 4GB classic 'zip bomb').
Wrap reader with `io.LimitReader(r, MAX_BYTES)`. In Python, iterate `ZipFile.infolist()` and check each entry's `file_size`. Cap total uncompressed bytes (e.g. 100MB).
Packs/Utilities/src/Documents/Docx/Ooxml/Scripts/unpack.py:17
low Security checks quality Quality conf 1.00 [SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns success or no-ops. AI agents reach for this pattern when a flaky test or an unfamiliar API throws — wrap, swallow, return success. Real bugs are masked, observability is destroyed, and callers think the operation worked. CWE-396 (improperly-generalized exception). Distinct from intentional fallback because there's no log line and the success value is fabricated.
Catch the specific exception type, log at error level with full exception info, and return a failure-shaped result. If the operation is genuinely best-effort, log at warning and document why in a comment so the next reader (or scanner) knows.
Releases/v2.3/.claude/Observability/apps/client/src/composables/useRemoteAgent.ts:119
low Security checks quality Error handling conf 0.55 ✓ Repobility 10 occurrences Broad exception handler needs review
This handler catches Exception/BaseException. It is actionable when it swallows errors without logging, re-raising, or returning a structured error. Handlers that intentionally convert exceptions into typed error results should not be treated as high risk.
7 files, 10 locations
Packs/Utilities/src/Documents/Pptx/Scripts/inventory.py:120, 601 (2 hits)
Packs/Utilities/src/Documents/Pptx/Scripts/thumbnail.py:144, 351 (2 hits)
Packs/Utilities/src/Documents/Xlsx/recalc.py:49, 154 (2 hits)
Packs/Utilities/src/Documents/Docx/Ooxml/Scripts/pack.py:128
Packs/Utilities/src/Documents/Pptx/Ooxml/Scripts/pack.py:128
Packs/Utilities/src/Documents/Pptx/Scripts/rearrange.py:70
Packs/Utilities/src/Documents/Pptx/Scripts/replace.py:376
Error handlingquality
high Security checks quality Quality conf 0.74 13 occurrences Frontend API reference is not matched by discovered backend routes
Add the backend route, update the frontend constant to the implemented endpoint, or document that the route is served by another service and exclude it with .repobilityignore.
4 files, 13 locations
Releases/v2.3/.claude/Observability/apps/server/src/index.ts:109, 132, 150, 171, 205, 250, 275, 283, +2 more (10 hits)
Packs/Telos/src/DashboardTemplate/App/add-file/page.tsx:67
Packs/Telos/src/DashboardTemplate/App/ask/page.tsx:34
Packs/Telos/src/DashboardTemplate/Components/sidebar.tsx:30
low Security checks security auth conf 0.76 [AUC005] No authorization-focused tests detected: No test files with common authorization, ownership, 403, admin, or super_admin assertions were found.
Add regression tests for anonymous denial, cross-user object denial, admin role limits, and super_admin-only behavior.
low Security checks quality Quality conf 0.60 30 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.
12 files, 14 locations
Packs/Media/src/Art/Tools/GenerateMidjourneyImage.ts:1, 5 (2 hits)
Packs/Utilities/src/AudioEditor/Tools/Analyze.ts:8, 31 (2 hits)
Packs/Art/src/Tools/GenerateMidjourneyImage.ts:5
Packs/Evals/src/Tools/ScenarioToTranscript.ts:90
Packs/Media/src/Art/Lib/discord-bot.ts:1
Packs/Media/src/Art/Lib/midjourney-client.ts:1
Packs/Media/src/Art/Tools/ComposeThumbnail.ts:1
Packs/Media/src/Art/Tools/Generate.ts:1
duplicationquality
low Security checks quality Quality conf 0.74 robots.txt does not advertise a sitemap
Add `Sitemap: https://your-domain.example/sitemap.xml` to robots.txt.
Packs/Security/src/WebAssessment/ffuf-helper.py
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/04414eae-f401-4dfb-988c-934d799e02a8/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/04414eae-f401-4dfb-988c-934d799e02a8/

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.