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

Scan timing: clone 2.57s · analysis 21.15s · 9.8 MB · GitHub API rate-limit (preflight)

clawvisor/clawvisor

https://github.com/clawvisor/clawvisor · scanned 2026-06-05 17:43 UTC (4 days, 20 hours ago) · 10 languages

626 raw signals (386 security + 240 graph) 12th percentile · Go · large (100-500K LoC) System graph score 65 (lower by 4)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 4 days, 20 hours ago · v2 · 216 actionable findings from 2 signal sources. 290 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 85.0 0.15 12.75
security_score 3.0 0.25 0.75
testing_score 80.0 0.20 16.00
documentation_score 100.0 0.15 15.00
practices_score 77.0 0.15 11.55
code_quality 41.4 0.10 4.14
Overall 1.00 60.2
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Scan summary Quality grade C+ (60/100). Dimensions: security 3, maintainability 85. 386 findings (153 security). 242,681 lines analyzed.

Showing 168 of 216 actionable findings. 506 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 Security checks quality Quality conf 1.00 ✓ Repobility [MINED013] Password In Url: https://user:password@host — leaks creds via logs, referrer, error messages.
Review and fix per the pattern semantics. See CWE-200 / A07:2021 for context.
deploy/docker-compose.yml:28
critical Security checks cicd CI/CD security conf 0.96 3 occurrences Compose service contains a literal secret environment value
Literal secrets in Compose files are committed to source and exposed through container inspection.
2 files, 3 locations
internal/adapters/sql/testdata/docker-compose.yml:1, 15 (2 hits)
deploy/docker-compose.yml:3
CI/CD securitycontainers
critical Security checks security secrets conf 0.95 20 occurrences Detected a Generic API Key, potentially exposing access to various services and sensitive operations.
Gitleaks detected a committed secret or credential pattern.
12 files, 20 locations
internal/api/handlers/llm_endpoint_test.go:454, 522, 558, 1129, 1233 (5 hits)
pkg/runtime/proxy/placeholder_runtime_test.go:283, 354, 447 (3 hits)
pkg/runtime/proxy/inbound_secret_runtime_test.go:250, 311 (2 hits)
web/src/pages/Agents.tsx:2368, 2380 (2 hits)
e2e/smoke/testserver_test.go:475
internal/api/handlers/installer.go:571
internal/api/handlers/installer_test.go:92
internal/e2e/lite/harness.go:32
critical Security checks security secrets conf 0.95 58 occurrences Discovered a potential authorization token provided in a curl command header, which could compromise the curl accessed resource.
Gitleaks detected a committed secret or credential pattern.
9 files, 58 locations
internal/runtime/llmproxy/inspector/parser_flags_test.go:18, 19, 20, 21, 22, 23, 24, 25, +14 more (22 hits)
internal/runtime/llmproxy/inspector/inspector_test.go:22, 66, 102, 120, 131, 149, 257, 283, +7 more (15 hits)
internal/runtime/llmproxy/script_session_test.go:46, 80, 85, 91, 97, 130, 143, 169, +5 more (13 hits)
docs/LITE_PROXY.md:164, 177 (2 hits)
internal/runtime/llmproxy/secret_detection_test.go:507, 530 (2 hits)
internal/runtime/llmproxy/audit_test.go:603
internal/runtime/llmproxy/control_test.go:276
internal/runtime/llmproxy/inspector/parser.go:869
critical Security checks security secrets conf 0.95 7 occurrences Uncovered a GitHub Personal Access Token, potentially leading to unauthorized repository access and sensitive content exposure.
Gitleaks detected a committed secret or credential pattern.
2 files, 7 locations
internal/api/handlers/llm_endpoint_test.go:454, 522, 558, 1233, 1289 (5 hits)
internal/runtime/llmproxy/secret_detection_test.go:204, 699 (2 hits)
critical Security checks security secrets conf 0.95 3 occurrences Uncovered a JSON Web Token, which may lead to unauthorized access to web applications and sensitive user data.
Gitleaks detected a committed secret or credential pattern.
2 files, 3 locations
internal/intent/testdata/extract_eval_cases.json:357, 369 (2 hits)
pkg/runtime/proxy/inbound_secret_runtime_test.go:728
critical System graph security Secrets conf 1.00 Possible secret in internal/clawvisorcli/cmd_tui.go
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
internal/clawvisorcli/cmd_tui.go:107
critical System graph security Secrets conf 1.00 Possible secret in security/zap/automation.yaml
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
security/zap/automation.yaml:10
critical System graph security Secrets conf 1.00 Possible secret in security/zap/run-scan.sh
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
security/zap/run-scan.sh:29
low Security checks quality Quality conf 1.00 ✓ Repobility [MINED006] Overcatch Baseexception: except BaseException: ... — prevents Ctrl+C and SystemExit from working.
Review and fix per the pattern semantics. See CWE-705 / for context.
scripts/raw-log-viewer.py:170
high Security checks quality Quality conf 1.00 ✓ Repobility [MINED021] Path Traversal Os Join: os.path.join(user_dir, filename) where filename can contain "../" — directory escape.
Review and fix per the pattern semantics. See CWE-22 / A01:2021 for context.
scripts/live-codex-secret-smoke.sh:152
high Security checks quality Quality conf 1.00 ✓ Repobility 25 occurrences `self.path` used but never assigned in __init__
Method `do_GET` of class `Handler` reads `self.path`, 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.
2 files, 25 locations
scripts/raw-log-viewer.py:85, 88, 90, 93, 95, 99, 102, 103, +10 more (18 hits)
e2e/install/mock_github_server.py:78, 79, 80, 81, 82, 83, 84 (7 hits)
high Security checks cicd CI/CD security conf 0.84 3 occurrences Database service publishes a host port
Publishing database ports to the host increases exposure. Internal Compose networking usually only needs expose, not ports.
2 files, 3 locations
internal/adapters/sql/testdata/docker-compose.yml:1, 15 (2 hits)
deploy/docker-compose.yml:3
CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.92 3 occurrences Dockerfile copies the entire context without .dockerignore
COPY . or ADD . sends the full build context to Docker. Without .dockerignore this can include secrets, git history, and local artifacts.
3 files, 3 locations
deploy/Dockerfile:14
e2e/install/Dockerfile:23
render/Dockerfile:14
CI/CD securitycontainers
high Security checks software dependencies conf 0.90 ✓ Repobility 10 occurrences Dockerfile FROM `node:20-alpine` not pinned by digest
`FROM node:20-alpine` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity.
4 files, 10 locations
deploy/Dockerfile:2, 10, 20 (3 hits)
e2e/install/Dockerfile:12, 18, 30 (3 hits)
render/Dockerfile:2, 10, 20 (3 hits)
internal/runtime/isolation/assets/Dockerfile:1
high Security checks cicd CI/CD security conf 0.92 Dockerfile pipes a remote script into a shell
Piping downloaded code directly into a shell bypasses checksum verification and makes builds dependent on mutable remote content.
e2e/install/Dockerfile:39 CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.90 ✓ Repobility 33 occurrences GitHub Action is tag-pinned rather than SHA-pinned
Action `actions/checkout` pinned to mutable ref `@v4` uses a mutable tag or branch. Pin external actions to a reviewed full commit SHA when the workflow is security-sensitive.
6 files, 33 locations
.github/workflows/publish-skill.yml:28, 53, 59, 83, 108, 115 (10 hits)
.github/workflows/ci.yml:17, 18, 22, 45, 46 (5 hits)
.github/workflows/release-binaries.yml:17, 20, 25 (5 hits)
.github/workflows/release-please.yml:29, 34, 39 (5 hits)
.github/workflows/e2e-install.yml:18, 36, 37, 41 (4 hits)
.github/workflows/release-imessage-helper.yml:33, 79, 82 (4 hits)
CI/CD securitySupply chainGitHub Actions
medium Security checks cicd CI/CD security conf 0.90 ✓ Repobility GitHub Action is tag-pinned rather than SHA-pinned
Action `googleapis/release-please-action` pinned to mutable ref `@v4` uses a mutable tag or branch. Pin external actions to a reviewed full commit SHA when the workflow is security-sensitive.
.github/workflows/release-please.yml:18 CI/CD securitySupply chainGitHub Actions
high Security checks software dependencies conf 0.88 golang.org/x/crypto: GO-2026-5005
Invoking key constraints not enforced in golang.org/x/crypto/ssh/agent
go.mod
high Security checks software dependencies conf 0.88 golang.org/x/crypto: GO-2026-5006
Invoking agent constraints dropped when forwarding keys in golang.org/x/crypto/ssh/agent
go.mod
high Security checks software dependencies conf 0.88 golang.org/x/crypto: GO-2026-5013
Invoking byte arithmetic causes underflow and panic in golang.org/x/crypto/ssh
go.mod
high Security checks software dependencies conf 0.88 golang.org/x/crypto: GO-2026-5014
Invoking bypass of certificate restrictions in golang.org/x/crypto/ssh
go.mod
high Security checks software dependencies conf 0.88 golang.org/x/crypto: GO-2026-5015
Invoking server panic during CheckHostKey/Authenticate in golang.org/x/crypto/ssh
go.mod
high Security checks software dependencies conf 0.88 golang.org/x/crypto: GO-2026-5016
Invoking memory leak when rejecting channels can lead to DoS in golang.org/x/crypto/ssh
go.mod
high Security checks software dependencies conf 0.88 golang.org/x/crypto: GO-2026-5017
Invoking client can cause server deadlock on unexpected responses in golang.org/x/crypto/ssh
go.mod
high Security checks software dependencies conf 0.88 golang.org/x/crypto: GO-2026-5018
Invoking pathological RSA/DSA parameters may cause DoS in golang.org/x/crypto/ssh
go.mod
high Security checks software dependencies conf 0.88 golang.org/x/crypto: GO-2026-5019
Invoking bypass of FIDO/U2F security keys physical interaction in golang.org/x/crypto/ssh
go.mod
high Security checks software dependencies conf 0.88 golang.org/x/crypto: GO-2026-5020
Invoking infinite loop on large channel writes in golang.org/x/crypto/ssh
go.mod
high Security checks software dependencies conf 0.88 golang.org/x/crypto: GO-2026-5021
Invoking auth bypass via unenforced @revoked status in golang.org/x/crypto/ssh/knownhosts
go.mod
high Security checks software dependencies conf 0.88 golang.org/x/crypto: GO-2026-5023
Invoking VerifiedPublicKeyCallback permissions skip enforcement in golang.org/x/crypto/ssh
go.mod
high Security checks software dependencies conf 0.88 golang.org/x/crypto: GO-2026-5033
Invoking pathological inputs can lead to client panic in golang.org/x/crypto/ssh/agent
go.mod
high Security checks software dependencies conf 0.88 golang.org/x/net: GO-2026-4918
Infinite loop in HTTP/2 transport when given bad SETTINGS_MAX_FRAME_SIZE in net/http/internal/http2 in golang.org/x/net
go.mod
high Security checks software dependencies conf 0.88 golang.org/x/net: GO-2026-5025
Invoking incorrect handling of namespaced elements in foreign content in golang.org/x/net/html
go.mod
high Security checks software dependencies conf 0.88 golang.org/x/net: GO-2026-5026
Invoking failure to reject ASCII-only Punycode-encoded labels in golang.org/x/net/idna
go.mod
high Security checks software dependencies conf 0.88 golang.org/x/net: GO-2026-5027
Invoking incorrect handling of HTML elements in foreign content in golang.org/x/net/html
go.mod
high Security checks software dependencies conf 0.88 golang.org/x/net: GO-2026-5028
Invoking denial of service when parsing arbitrary HTML in golang.org/x/net/html
go.mod
high Security checks software dependencies conf 0.88 golang.org/x/net: GO-2026-5029
Invoking incorrect handling of character references in DOCTYPE nodes in golang.org/x/net/html
go.mod
high Security checks software dependencies conf 0.88 golang.org/x/net: GO-2026-5030
Invoking duplicate attributes can cause XSS in golang.org/x/net/html
go.mod
high Security checks software dependencies conf 0.88 golang.org/x/sys: GO-2026-5024
Invoking integer overflow in NewNTUnicodeString in golang.org/x/sys/windows
go.mod
high Security checks security auth conf 0.83 8 occurrences Secret-like setting is echoed into a password input value
Settings screens sometimes render API keys, tokens, or passwords back into HTML/JSX password fields. That still exposes the secret to page source, browser extensions, screenshots, and DOM scraping.
6 files, 8 locations
web/src/pages/Agents.tsx:2162, 4321 (2 hits)
web/src/pages/Settings.tsx:195, 1437 (2 hits)
web/src/pages/Login.tsx:146
web/src/pages/Register.tsx:104
web/src/pages/ResetPassword.tsx:161
web/src/pages/SetupAuth.tsx:145
high Security checks software dependencies conf 0.88 stdlib: GO-2025-3503
HTTP Proxy bypass using IPv6 Zone IDs in golang.org/x/net
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 stdlib: GO-2025-3563
Request smuggling due to acceptance of invalid chunked data in net/http
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 stdlib: GO-2025-3750
Inconsistent handling of O_CREATE|O_EXCL on Unix and Windows in os in syscall
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 stdlib: GO-2025-3751
Sensitive headers not cleared on cross-origin redirect in net/http
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 stdlib: GO-2025-3849
Incorrect results returned from Rows.Scan in database/sql
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 stdlib: GO-2025-3955
CrossOriginProtection insecure bypass patterns not limited to exact matches in net/http
go.mod
high Security checks software dependencies conf 0.88 stdlib: GO-2025-3956
Unexpected paths returned from LookPath in os/exec
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2025-4006
Excessive CPU consumption in ParseAddress in net/mail
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2025-4007
Quadratic complexity when checking name constraints in crypto/x509
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2025-4008
ALPN negotiation error contains attacker controlled information in crypto/tls
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2025-4009
Quadratic complexity when parsing some invalid inputs in encoding/pem
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2025-4010
Insufficient validation of bracketed IPv6 hostnames in net/url
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2025-4011
Parsing DER payload can cause memory exhaustion in encoding/asn1
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2025-4012
Lack of limit when parsing cookies can cause memory exhaustion in net/http
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2025-4013
Panic when validating certificates with DSA public keys in crypto/x509
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2025-4014
Unbounded allocation when parsing GNU sparse map in archive/tar
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2025-4015
Excessive CPU consumption in Reader.ReadResponse in net/textproto
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2025-4155
Excessive resource consumption when printing error string for host certificate validation in crypto/x509
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2025-4175
Improper application of excluded DNS name constraints when verifying wildcard names in crypto/x509
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2026-4337
Unexpected session resumption in crypto/tls
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2026-4340
Handshake messages may be processed at the incorrect encryption level in crypto/tls
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2026-4341
Memory exhaustion in query parameter parsing in net/url
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2026-4342
Excessive CPU consumption when building archive index in archive/zip
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 stdlib: GO-2026-4403
Improper access to parent directory of root in os
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2026-4601
Incorrect parsing of IPv6 host literals in net/url
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2026-4602
FileInfo can escape from a Root in os
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2026-4603
URLs in meta content attribute actions are not escaped in html/template
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2026-4864
TOCTOU permits root escape on Linux via Root.Chmod in os in internal/syscall/unix
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2026-4865
JsBraceDepth Context Tracking Bugs (XSS) in html/template
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2026-4869
Unbounded allocation for old GNU sparse in archive/tar
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2026-4870
Unauthenticated TLS 1.3 KeyUpdate record can cause persistent connection retention and DoS in crypto/tls
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2026-4918
Infinite loop in HTTP/2 transport when given bad SETTINGS_MAX_FRAME_SIZE in net/http/internal/http2 in golang.org/x/net
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2026-4946
Inefficient policy validation in crypto/x509
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2026-4947
Unexpected work during chain building in crypto/x509
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2026-4971
Panic in Dial and LookupPort when handling NUL byte on Windows in net
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2026-4976
ReverseProxy forwards queries with more than urlmaxqueryparams parameters in net/http/httputil
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2026-4977
Quadratic string concatenation in consumePhrase in net/mail
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2026-4980
Escaper bypass leads to XSS in html/template
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2026-4981
Crash when handling long CNAME response in net
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2026-4982
Bypass of meta content URL escaping causes XSS in html/template
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2026-4986
Quadratic string concatentation in consumeComment in net/mail
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2026-5037
Inefficient candidate hostname parsing in crypto/x509
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2026-5038
Quadratic complexity in WordDecoder.DecodeHeader in mime
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high Security checks software dependencies conf 0.88 2 occurrences stdlib: GO-2026-5039
Arbitrary inputs are included in errors without any escaping in net/textproto
2 files, 2 locations
go.mod
internal/e2e/lite/library/broad_single_scope/workspace/go.mod
high System graph hardware Supply chain conf 1.00 Dockerfile pipes a remote installer into a shell
Executing downloaded code during image build gives the remote endpoint build-time code execution. Prefer pinned packages or verify downloaded installers by checksum/signature.
e2e/install/Dockerfile:39 containersRemote installer
high System graph security security conf 1.00 Insecure pattern 'eval_used' in internal/runtime/conversation/anthropic_response.go:77
Found a known-risky pattern (eval_used). Review and replace if possible.
internal/runtime/conversation/anthropic_response.go:77 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in internal/runtime/conversation/openai_response.go:132
Found a known-risky pattern (eval_used). Review and replace if possible.
internal/runtime/conversation/openai_response.go:132 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in internal/runtime/llmproxy/postprocess.go:1919
Found a known-risky pattern (eval_used). Review and replace if possible.
internal/runtime/llmproxy/postprocess.go:1919 Eval used
medium Security checks quality Error handling conf 1.00 [ERR002] Empty Catch Block: Empty catch blocks hide errors.
Log the error or rethrow it. Use console.error() at minimum.
internal/clawvisorcli/shim/clawvisor-proxy-shim.js:81
medium Security checks software Open redirect conf 1.00 3 occurrences [SEC046] Client-side open redirect — window.location = server-supplied URL: Assigning window.location from a server-supplied URL trusts the server endpoint to never return a hostile destination. If that endpoint is ever subverted (compromised admin, JSON injection, MITM on a webhook), users get redirected to a phishing site they trust because the original page is yours. CWE-601 (server-side OR client-side). Complement to server-side SEC030.
Validate the URL is same-origin or on an explicit allowlist before assignment: const u = new URL(serverUrl, location.href); if (u.origin !== location.origin && !ALLOWED.includes(u.host)) return; location.assign(u); Even better: have the server return a path (/checkout/done) instead of a full …
3 files, 3 locations
web/src/pages/Billing.tsx:21
web/src/pages/OAuthAuthorize.tsx:44
web/src/pages/Pricing.tsx:130
medium Security checks security Crypto conf 1.00 [SEC107] Weak TLS version requested (TLSv1.0, TLSv1.1, SSLv3, SSLv2): TLS 1.0 and 1.1 were deprecated by IETF in 2021 (RFC 8996). Most browsers no longer support them. Code requesting these protocols is talking to an attacker-controllable downgrade target.
Use TLSv1.2 minimum, TLSv1.3 preferred. Java: `SSLContext.getInstance("TLSv1.2")`. Python: `ssl.PROTOCOL_TLS_CLIENT` + `MinimumVersion = TLSVersion.TLSv1_2`. Go: `MinVersion: tls.VersionTLS12`.
pkg/runtime/proxy/timing_transport.go:147
medium Security checks security Security conf 1.00 [SEC119] World-writable / world-readable file permissions: World-writable files let any local user (or container neighbor) tamper with data; world-readable files leak secrets.
Use 0600 (owner rw only) for secrets, 0644 for general files, 0700 for directories with secrets. Java: `setReadable(true, true)` (owner-only).
pkg/version/update.go:67
medium Security checks cicd CI/CD security conf 0.68 Agent auto-approve or skip-permissions mode is easy to enable
Codex/agent auto-approve, YOLO, or skip-permissions modes can be useful in isolated automation, but they remove the human checkpoint before command execution, network access, and file edits.
web/src/pages/Agents.tsx:794 CI/CD securityagent runtimepermissions
low Security checks quality Error handling conf 0.55 ✓ Repobility 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.
e2e/install/mock_github_server.py:123 Error handlingquality
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.
internal/runtime/isolation/assets/Dockerfile:1 CI/CD securitycontainers
high Security checks quality Quality conf 0.80 localStorage write failures are swallowed silently
localStorage quotas are small and writes can fail. Catching storage errors without a user-visible warning causes silent data loss when notes, images, or snapshots exceed quota.
web/src/hooks/useAuth.tsx:10
medium Security checks software dependencies conf 0.90 npm package `@types/react-dom` is 1 major version(s) behind (18.3.7 -> 19.2.3)
`@types/react-dom` is pinned/resolved at 18.3.7 but the latest stable release on the npm registry is 19.2.3 (1 major version(s) behind). Outdated dependencies accumulate unpatched bugs and make future security upgrades harder. This is the version-currency signal Dependabot version-update PRs raise.
web/package.json
medium Security checks software dependencies conf 0.90 npm package `@vitejs/plugin-react` is 1 major version(s) behind (5.1.4 -> 6.0.2)
`@vitejs/plugin-react` is pinned/resolved at 5.1.4 but the latest stable release on the npm registry is 6.0.2 (1 major version(s) behind). Outdated dependencies accumulate unpatched bugs and make future security upgrades harder. This is the version-currency signal Dependabot version-update PRs rais…
web/package.json
medium Security checks software dependencies conf 0.88 react-router: GHSA-2j2x-hqr9-3h42
React Router's same-origin redirect with path starting // causes open redirect via protocol-relative URL reinterpretation
web/package-lock.json
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.
.github/workflows/e2e-install.yml:26
medium Security checks quality Quality conf 0.78 Suspicious implementation file appears unreferenced
A file created as a fixed/new/final/copy variant is not referenced by imports or path-like strings in the rest of the repository. This is a strong sign that an agent produced code beside the active application path.
internal/runtime/llmproxy/inline_task_rewrite.go:1
medium Security checks quality Quality conf 0.78 Suspicious implementation file appears unreferenced
A file created as a fixed/new/final/copy variant is not referenced by imports or path-like strings in the rest of the repository. This is a strong sign that an agent produced code beside the active application path.
internal/clawvisorcli/cmd_auto_update.go:1
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — web/src/components/ServiceIcon.tsx:38
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — internal/clawvisorcli/shim/clawvisor-proxy-shim.js:2
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — web/src/api/client.ts:74
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — web/src/pages/Agents.tsx:3397
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph hardware Supply chain conf 1.00 Docker base image uses a mutable or implicit tag: gcr.io/distroless/static-debian12
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
deploy/Dockerfile:20 containersPinned dependencies
medium System graph hardware Security conf 1.00 Dockerfile runs as root: internal/runtime/isolation/assets/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph quality Integrity conf 1.00 9 occurrences Frontend route `/reset-password` has no Link/navigate to it — web/src/App.tsx
The route is registered but no `<Link to=…>` or `navigate(…)` in the codebase navigates here. Either it's reachable only via direct URL (intentional), it's dead, or the link broke during a refactor.
9 occurrences
repo-level (9 hits)
Orphan pageWiring
medium System graph quality Integrity conf 1.00 20 occurrences Frontend route `how-it-works` has no Link/navigate to it — web/src/pages/Dashboard.tsx
The route is registered but no `<Link to=…>` or `navigate(…)` in the codebase navigates here. Either it's reachable only via direct URL (intentional), it's dead, or the link broke during a refactor.
20 occurrences
repo-level (20 hits)
Orphan pageWiring
medium System graph cicd CI/CD security conf 1.00 3 occurrences 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.
3 files, 3 locations
.github/workflows/release-binaries.yml
.github/workflows/release-imessage-helper.yml
.github/workflows/release-please.yml
CI/CD securitySupply chainGithub actions
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in web/src/components/ServiceIcon.tsx:38
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
web/src/components/ServiceIcon.tsx:38 Dangerous innerhtml
medium System graph network Security conf 1.00 Privileged port 12 in use
Port 12 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
internal/e2e/scenario/library/session_authorize.yaml Ports
medium System graph network Security conf 1.00 Privileged port 30 in use
Port 30 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
internal/e2e/scenario/library/session_authorize.yaml Ports
low Security checks quality Error handling conf 1.00 3 occurrences [ERR003] Ignored Error (Go): Ignoring error return values.
Handle the error or use errcheck linter.
3 files, 3 locations
internal/adapters/dropbox/adapter.go:171
internal/adapters/microsoft/onedrive/adapter.go:282
internal/api/handlers/adaptergen.go:189
high Security checks cicd CI/CD security conf 0.62 Compose service lacks no-new-privileges hardening
no-new-privileges prevents processes from gaining additional privileges through setuid binaries or file capabilities.
deploy/docker-compose.yml:19 CI/CD securitycontainers
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, 16 locations
internal/adapters/google/drive/adapter.go:491, 497, 507 (3 hits)
internal/adapters/google/contacts/adapter.go:296, 312 (2 hits)
internal/runtime/llmproxy/human_turns.go:139, 142 (2 hits)
internal/adapters/google/calendar/adapter.go:443
internal/adapters/microsoft/credential.go:130
internal/adapters/microsoft/outlook/adapter.go:7
internal/adapters/microsoft/teams/adapter.go:7
internal/adapters/perplexity/adapter.go:97
duplicationquality
low Security checks software dependencies conf 0.90 npm package `@tanstack/react-query` is minor version(s) behind (5.90.21 -> 5.101.0)
`@tanstack/react-query` is pinned/resolved at 5.90.21 but the latest stable release on the npm registry is 5.101.0 (minor version(s) behind). Outdated dependencies accumulate unpatched bugs and make future security upgrades harder. This is the version-currency signal Dependabot version-update PRs r…
web/package.json
low Security checks software dependencies conf 0.90 npm package `autoprefixer` is minor version(s) behind (10.4.24 -> 10.5.0)
`autoprefixer` is pinned/resolved at 10.4.24 but the latest stable release on the npm registry is 10.5.0 (minor version(s) behind). Outdated dependencies accumulate unpatched bugs and make future security upgrades harder. This is the version-currency signal Dependabot version-update PRs raise.
web/package.json
low Security checks software dependencies conf 0.90 npm package `recharts` is minor version(s) behind (3.7.0 -> 3.8.1)
`recharts` is pinned/resolved at 3.7.0 but the latest stable release on the npm registry is 3.8.1 (minor version(s) behind). Outdated dependencies accumulate unpatched bugs and make future security upgrades harder. This is the version-currency signal Dependabot version-update PRs raise.
web/package.json
low Security checks software dependencies conf 0.90 npm package `ws` is minor version(s) behind (^8.19.0 -> 8.21.0)
`ws` is pinned/resolved at ^8.19.0 but the latest stable release on the npm registry is 8.21.0 (minor version(s) behind). Outdated dependencies accumulate unpatched bugs and make future security upgrades harder. This is the version-currency signal Dependabot version-update PRs raise.
extensions/clawvisor-webhook/package.json
high Security checks quality Quality conf 0.62 4 occurrences Source file name looks like an AI patch artifact
Files named as final, fixed, copy, new, or backup are often temporary patch artifacts. They may be legitimate, but they deserve review before becoming production surface area.
4 files, 4 locations
internal/clawvisorcli/cmd_auto_update.go:1
internal/clawvisorcli/cmd_update.go:1
internal/daemon/auto_update.go:1
internal/runtime/llmproxy/inline_task_rewrite.go:1
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: alpine:3.21
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
render/Dockerfile:20 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: debian:12-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
internal/runtime/isolation/assets/Dockerfile:1 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: debian:bookworm-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
e2e/install/Dockerfile:30 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: golang:1.25-alpine
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
deploy/Dockerfile:10 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: golang:1.25-alpine
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
render/Dockerfile:10 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: golang:1.25-bookworm
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
e2e/install/Dockerfile:18 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: node:20-alpine
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
deploy/Dockerfile:2 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: node:20-alpine
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
render/Dockerfile:2 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: node:20-bookworm
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
e2e/install/Dockerfile:12 containersPinned dependencies
low System graph software Dead code candidate conf 1.00 File has no detected symbols: web/postcss.config.js
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: web/public/theme.js
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: web/src/lib/env.ts
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: web/src/main.tsx
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: web/src/vite-env.d.ts
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: web/tailwind.config.ts
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: web/vite.config.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code conf 1.00 Possibly dead Python function: do_GET
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/raw-log-viewer.py:87
low System graph software Dead code conf 1.00 Possibly dead Python function: do_GET
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
e2e/install/mock_github_server.py:77
low System graph software Dead code conf 1.00 Possibly dead Python function: log_message
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/raw-log-viewer.py:84
low System graph software Dead code conf 1.00 Possibly dead Python function: log_message
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
e2e/install/mock_github_server.py:103
low System graph quality Integrity conf 1.00 Stub function `log_message` (body is just `pass`/`return`) — e2e/install/mock_github_server.py:103
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Complexity conf 1.00 Very large file: internal/api/gateway_test.go (1447 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: internal/api/handlers/gateway.go (2731 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: internal/api/handlers/installer.go (1280 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: internal/api/handlers/llm_endpoint.go (4091 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: internal/api/handlers/llm_endpoint_test.go (2213 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: internal/api/handlers/services.go (2636 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: internal/api/handlers/tasks.go (2749 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: internal/api/server.go (1673 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: internal/runtime/conversation/openai_response.go (2317 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: internal/runtime/conversation/response_test.go (1882 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: internal/runtime/llmproxy/control.go (1548 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: internal/runtime/llmproxy/postprocess.go (2643 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: internal/runtime/llmproxy/postprocess_test.go (1857 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/adapters/yamlruntime/adapter_test.go (1654 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/store/postgres/store.go (3731 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/store/sqlite/store.go (4273 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/store/store.go (1349 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: web/src/api/client.ts (1738 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: web/src/components/TaskCard.tsx (1204 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: web/src/pages/Agents.tsx (4480 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: web/src/pages/Restrictions.tsx (1759 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: web/src/pages/Services.tsx (2213 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: web/src/pages/Settings.tsx (2014 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/32c90083-0b1f-4275-ac0e-ee264df3298f/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/32c90083-0b1f-4275-ac0e-ee264df3298f/

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.