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

tauri-apps/tauri

https://github.com/tauri-apps/tauri · scanned 2026-06-05 05:49 UTC (1 week, 1 day ago) · 10 languages

322 raw signals (82 security + 240 graph) 11/13 scanners ran 32nd percentile · Rust · medium (20-100K LoC) System graph score 66 (lower by 2)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 1 week, 1 day ago · v2 · 92 actionable findings from 2 signal sources. 110 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 60.0 0.15 9.00
security_score 100.0 0.25 25.00
testing_score 16.0 0.20 3.20
documentation_score 65.0 0.15 9.75
practices_score 69.0 0.15 10.35
code_quality 70.0 0.10 7.00
Overall 1.00 64.3
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
Scan summary Quality grade C+ (64/100). Dimensions: security 100, maintainability 60. 82 findings (31 security). 67,768 lines analyzed.

Showing 68 of 92 actionable findings. 202 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.

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/bench.yml:78 CI/CD securityworkflow secretsGitHub Actions
critical System graph security Secrets conf 1.00 Possible secret in packages/api/src/core.ts
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
packages/api/src/core.ts:241
high Security checks quality Quality conf 1.00 ✓ Repobility 3 occurrences [MINED029] Kotlin Null Bang: x!! throws NullPointerException if x is null. Bypasses Kotlins null safety.
Review and fix per the pattern semantics. See CWE-476 / for context.
3 files, 3 locations
crates/tauri/mobile/android/src/main/java/app/tauri/AppPlugin.kt:32
crates/tauri/mobile/android/src/main/java/app/tauri/FsUtils.kt:141
crates/tauri/mobile/android/src/main/java/app/tauri/plugin/PluginManager.kt:68
high Security checks software dependencies conf 0.90 ✓ Repobility [MINED122] package.json dep `tauri-plugin-{{ plugin_name }}-api` pulled from URL/Git: `dependencies.tauri-plugin-{{ plugin_name }}-api` = `file:../../` bypasses the npm registry. No integrity hash, no version locking, no registry-side scanning. If the URL or git host is compromised, every `npm install` pulls the new payload.
Publish the dependency to npm (or your private registry) and reference it by `^x.y.z`. If that's not possible, lock by commit SHA: `git+https://...#<full-sha>` AND verify the SHA in CI.
crates/tauri-cli/templates/plugin/__example-api/tauri-app/package.json:1
high Security checks software dependencies conf 0.90 ✓ Repobility [MINED126] Workflow container/services image `ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine` unpinned: `container/services image: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines.
Replace with `ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine@sha256:<digest>`. Re-pin via Dependabot Docker scope.
.github/workflows/publish-cli-js.yml:285
high System graph cicd CI/CD security conf 1.00 GitHub Action tracks a moving branch
dtolnay/rust-toolchain@master can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
.github/workflows/bench.yml:41 CI/CD securitySupply chainGithub actions
high System graph security security conf 1.00 Insecure pattern 'eval_used' in crates/tauri/src/ipc/channel.rs:158
Found a known-risky pattern (eval_used). Review and replace if possible.
crates/tauri/src/ipc/channel.rs:158 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in crates/tauri/src/ipc/protocol.rs:334
Found a known-risky pattern (eval_used). Review and replace if possible.
crates/tauri/src/ipc/protocol.rs:334 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in crates/tauri/src/manager/webview.rs:672
Found a known-risky pattern (eval_used). Review and replace if possible.
crates/tauri/src/manager/webview.rs:672 Eval used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in crates/tauri-cli/src/mobile/init.rs:36
Found a known-risky pattern (exec_used). Review and replace if possible.
crates/tauri-cli/src/mobile/init.rs:36 Exec used
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.
high Security checks software dependencies conf 0.70 Remote install command pipes network code directly to a shell
Publish a package-manager install path or add checksum/signature verification before execution. For docs, show the inspect-then-run flow and pin the downloaded artifact version.
.github/workflows/publish-cli-js.yml:172
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — crates/tauri/scripts/ipc-protocol.js:37
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 — packages/api/src/mocks.ts:69
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 Security conf 1.00 Dockerfile runs as root: .devcontainer/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 34 occurrences GitHub Action is tag-pinned rather than SHA-pinned
rustsec/audit-check@v2 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
12 files, 30 locations
.github/workflows/docker.yml:23, 65, 88, 91, 94, 101, 125 (9 hits)
.github/workflows/publish-cli-rs.yml:52, 55, 69 (5 hits)
.github/workflows/fmt.yml:18, 44, 47 (3 hits)
.github/workflows/covector-version-or-publish.yml:33, 94 (2 hits)
.github/workflows/publish-cli-js.yml:119, 135 (2 hits)
.github/workflows/test-android.yml:37, 59 (2 hits)
.github/workflows/udeps.yml:80, 131 (2 hits)
.github/workflows/audit.yml:38
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/publish-cli-js.yml 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/covector-version-or-publish.yml CI/CD securitySupply chainGithub actions
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in crates/tauri-cli/config.schema.json:2678
Found a known-risky pattern (weak_hash). Review and replace if possible.
crates/tauri-cli/config.schema.json:2678 Weak hash
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in crates/tauri-cli/schema.json:2071
Found a known-risky pattern (weak_hash). Review and replace if possible.
crates/tauri-cli/schema.json:2071 Weak hash
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in crates/tauri-cli/tauri.config.schema.json:2076
Found a known-risky pattern (weak_hash). Review and replace if possible.
crates/tauri-cli/tauri.config.schema.json:2076 Weak hash
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in crates/tauri-schema-generator/schemas/config.schema.json:2678
Found a known-risky pattern (weak_hash). Review and replace if possible.
crates/tauri-schema-generator/schemas/config.schema.json:2678 Weak hash
medium System graph quality Tests conf 1.00 Very low test-to-source ratio
16 test file(s) for 367 source file(s) (ratio 0.04). Consider adding integration or unit tests for critical paths.
Coverage
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
crates/tauri-cli/src/mobile/ios/dev.rs:42, 155 (2 hits)
crates/tauri-cli/src/mobile/ios/run.rs:14, 27 (2 hits)
crates/tauri-bundler/src/utils/fs_utils.rs:73
crates/tauri-cli/src/error.rs:28
crates/tauri-cli/src/mobile/ios/build.rs:93
crates/tauri-cli/src/mobile/ios/xcode_script.rs:62
crates/tauri-cli/src/plugin/ios.rs:15
crates/tauri-runtime/build.rs:1
duplicationquality
low System graph quality Maintenance conf 1.00 52 TODO/FIXME markers
High count of TODO/FIXME/HACK markers — track them as issues so they're not forgotten.
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: mcr.microsoft.com/vscode/devcontainers/base:0-${VARIANT}
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
.devcontainer/Dockerfile:4 containersPinned dependencies
low System graph software Dead code candidate conf 1.00 File has no detected symbols: crates/tauri-cli/templates/plugin/__example-api/tauri-app/src/main.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: crates/tauri-cli/templates/plugin/__example-api/tauri-app/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: crates/tauri-cli/templates/plugin/__example-api/tauri-app/vite.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: crates/tauri-cli/templates/plugin/rollup.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: crates/tauri/scripts/freeze_prototype.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: crates/tauri/scripts/init.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: crates/tauri/scripts/isolation.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: crates/tauri/src/event/init.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: crates/tauri/src/path/init.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: crates/tauri/src/webview/scripts/print.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: crates/tauri/src/webview/scripts/zoom-hotkey.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: examples/api/src-tauri/tauri-plugin-sample/api-iife.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: examples/api/src/main.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: examples/api/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: examples/api/svelte.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: examples/api/unocss.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: examples/api/vite.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: packages/api/eslint.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: packages/api/src/global.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: packages/api/src/menu.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: packages/cli/append-headers.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: packages/cli/main.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: packages/cli/tauri.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph cicd CI/CD security conf 1.00 45 occurrences GitHub Action is tag-pinned rather than SHA-pinned
actions/setup-python@v5 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
11 files, 45 locations
.github/workflows/docker.yml:20, 34, 44, 62, 71, 76, 82 (13 hits)
.github/workflows/publish-cli-js.yml:112, 148, 222, 229, 253, 260, 290, 297, +4 more (12 hits)
.github/workflows/publish-cli-rs.yml:48, 90, 102, 105 (7 hits)
.github/workflows/lint-js.yml:21, 23, 33, 35 (4 hits)
.github/workflows/bench.yml:48, 76 (2 hits)
.github/workflows/udeps.yml:86, 141 (2 hits)
.github/workflows/check-license-header.yml:18
.github/workflows/covector-status.yml:13
CI/CD securitySupply chainGitHub Actions
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — crates/tauri/test/fixture/isolation/isolation-dist/index.js:6
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — examples/isolation/isolation-dist/index.js:6
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — examples/resources/src-tauri/assets/index.js:5
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — packages/api/src/event.ts:100
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — packages/api/src/mocks.ts:236
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — packages/api/src/webview.ts:250
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — packages/api/src/webviewWindow.ts:143
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — packages/api/src/window.ts:375
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph quality Complexity conf 1.00 Very large file: crates/tauri-cli/src/interface/rust.rs (1894 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: crates/tauri-runtime-wry/src/lib.rs (5442 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: crates/tauri-utils/src/config.rs (4745 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: crates/tauri-utils/src/config_v1/mod.rs (3165 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: crates/tauri/src/app.rs (2658 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: crates/tauri/src/webview/mod.rs (2490 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: crates/tauri/src/webview/webview_window.rs (2689 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: crates/tauri/src/window/mod.rs (2470 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: packages/api/src/window.ts (2672 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/6a9bdf8b-9ece-4780-bdf2-3db6f0001b42/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/6a9bdf8b-9ece-4780-bdf2-3db6f0001b42/

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.