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.

wpowiertowski/posse

https://github.com/wpowiertowski/posse · scanned 2026-06-16 01:00 UTC (2 months, 1 week ago)

63 raw signals (0 security + 63 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 1 week ago · v1 · 52 actionable findings from 1 signal source. 11 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Corpus Intelligence Cross-corpus context (cohort percentile, top patterns, fix plan) is shown only on repositories you own. Sign up and connect your repo to view it.
Scan summary Repository scanned at 46.5/100 with 100.0% coverage. It contains 1221 nodes across 10 cross-layer flows, written primarily in mixed languages. Engine surfaced 63 findings — concentrated in quality (21), software (10), security (10). Risk profile is high: 1 critical, 7 high, 10 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 42 of 52 actionable findings. 63 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 src/social/bluesky_client.py
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
src/social/bluesky_client.py:84
high System graph security auth conf 1.00 Flask mutation route `receive_ghost_post_deleted` without `@login_required` — src/ghost/ghost.py:929
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
src/ghost/ghost.py:929 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `receive_ghost_post_update` without `@login_required` — src/ghost/ghost.py:763
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
src/ghost/ghost.py:763 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `receive_ghost_post` without `@login_required` — src/ghost/ghost.py:1079
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
src/ghost/ghost.py:1079 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `submit_reply` without `@login_required` — src/ghost/ghost.py:1903
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
src/ghost/ghost.py:1903 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `trigger_interaction_sync` without `@login_required` — src/ghost/ghost.py:1515
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
src/ghost/ghost.py:1515 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `webmention_endpoint` without `@login_required` — src/ghost/ghost.py:1705
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
src/ghost/ghost.py:1705 securityAuth flask unauth route
high System graph security security conf 1.00 Insecure pattern 'exec_used' in src/posse/posse.py:1095
Found a known-risky pattern (exec_used). Review and replace if possible.
src/posse/posse.py:1095 Exec used
medium System graph hardware Security conf 1.00 Dockerfile runs as root: Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph cicd CI/CD security conf 1.00 5 occurrences GitHub Action is tag-pinned rather than SHA-pinned
anthropics/[email protected] can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
2 files, 5 locations
.github/workflows/docker-publish.yml:27, 30, 37, 47 (4 hits)
.github/workflows/claude.yml:35
CI/CD securitySupply chainGithub actions
medium System graph cicd CI/CD security conf 1.00 GitHub Actions workflow grants broad write permissions
CI tokens with write permissions increase blast radius when an action, dependency, or PR workflow is compromised. Prefer job-level least-privilege permissions.
.github/workflows/claude.yml CI/CD securitySupply chainGithub actions
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.). The repo has auth/admin/session surface indicators, so auth may live in custom code, in a separate service, or be missing.
auth
medium System graph network Security conf 1.00 Privileged port 256 in use
Port 256 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
Dockerfile Ports
medium System graph network Security conf 1.00 Privileged port 397 in use
Port 397 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
Dockerfile Ports
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 quality Debug conf 1.00 Debug logging residue appears in source files
Found 5 console/debugger/print-style debug statements in non-test source. This is a common fast-generation residue before production cleanup.
CleanupRepo hardeningGenerated repo pattern
low System graph cicd CI/CD security conf 1.00 2 occurrences GitHub Action is tag-pinned rather than SHA-pinned
actions/checkout@v4 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
2 files, 2 locations
.github/workflows/claude.yml:29
.github/workflows/docker-publish.yml:24
CI/CD securitySupply chainGithub actions
low System graph security security conf 1.00 Insecure pattern 'debug_true' in src/posse/posse.py:924
Found a known-risky pattern (debug_true). Review and replace if possible.
src/posse/posse.py:924 Debug true
low System graph quality Integrity conf 1.00 7 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: src/ghost/ghost.py:validate_ghost_post_id, src/ghost/ghost.py:validate_ghost_post This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document why they're separate.
7 occurrences
repo-level (7 hits)
duplicatesduplication
low System graph software Dead code conf 1.00 Possibly dead Python function: check_health
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/ghost/ghost_api.py:291
low System graph software Dead code conf 1.00 Possibly dead Python function: handle_data
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/indieweb/content_sanitizer.py:149
low System graph software Dead code conf 1.00 Possibly dead Python function: handle_startendtag
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/indieweb/content_sanitizer.py:62
low System graph software Dead code conf 1.00 Possibly dead Python function: post_to_account
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/posse/posse.py:554
low System graph software Dead code conf 1.00 Possibly dead Python function: post_worker_init_hook
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/posse/posse.py:1101
low System graph software Dead code conf 1.00 Possibly dead Python function: process_events
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/posse/posse.py:425
low System graph software Dead code conf 1.00 Possibly dead Python function: stop
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/interactions/scheduler.py:131
low System graph software Dead code conf 1.00 Possibly dead Python function: when_ready
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/ghost/gunicorn_config.py:59
low System graph software Dead code conf 1.00 Possibly dead Python function: worker_abort
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/ghost/gunicorn_config.py:71
low System graph software Dead code conf 1.00 Possibly dead Python function: worker_int
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/ghost/gunicorn_config.py:67
low System graph quality Provenance conf 1.00 Shallow git history limits provenance confidence
The repository is a shallow clone. Origin/evolution analysis cannot distinguish fresh generation, imported legacy code, or long-lived human code with high confidence.
Git historyGenerated repo pattern
low System graph api Wiring conf 1.00 Unused endpoint: ANY /api/interactions/<ghost_post_id>
`src/ghost/ghost.py` declares `ANY /api/interactions/<ghost_post_id>` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /api/interactions/<ghost_post_id>/sync
`src/ghost/ghost.py` declares `ANY /api/interactions/<ghost_post_id>/sync` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /api/webmention/reply
`src/ghost/ghost.py` declares `ANY /api/webmention/reply` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /api/webmentions
`src/ghost/ghost.py` declares `ANY /api/webmentions` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /reply/<reply_id>
`src/ghost/ghost.py` declares `ANY /reply/<reply_id>` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /webhook/ghost
`src/ghost/ghost.py` declares `ANY /webhook/ghost` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /webhook/ghost/post-deleted
`src/ghost/ghost.py` declares `ANY /webhook/ghost/post-deleted` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /webhook/ghost/post-updated
`src/ghost/ghost.py` declares `ANY /webhook/ghost/post-updated` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /webmention
`src/ghost/ghost.py` declares `ANY /webmention` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph quality Complexity conf 1.00 Very large file: src/ghost/ghost.py (2172 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/interactions/interaction_sync.py (1605 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_bluesky.py (1317 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
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/7d341cf7-e510-4c0a-a997-c2ae778a1445/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/7d341cf7-e510-4c0a-a997-c2ae778a1445/

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.