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

Scan timing: clone 25.99s · analysis 32.27s · 111.1 MB · GitHub API rate-limit (preflight)

dotnet/sdk

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

226 raw signals (68 security + 158 graph) 11/13 scanners ran 67th percentile · Csharp · huge (>500K LoC)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

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

JSON
Score breakdown â 2026-05-18-v5
Component Sub-score Weight Contribution
structure_score 65.0 0.15 9.75
security_score 100.0 0.25 25.00
testing_score 85.0 0.20 17.00
documentation_score 66.0 0.15 9.90
practices_score 77.0 0.15 11.55
code_quality 80.0 0.10 8.00
Overall 1.00 81.2
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 A- (81/100). Dimensions: security 100, maintainability 65. 68 findings (24 security). 678,110 lines analyzed.

Showing 72 of 92 actionable findings. 147 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 software dependencies conf 0.90 ✓ Repobility [MINED118] Dockerfile FROM `pandoc/core:2.18.0` not pinned by digest: `FROM pandoc/core:2.18.0` 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.
Replace with: `FROM pandoc/core:2.18.0@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot).
documentation/manpages/tool/Dockerfile:1
high Security checks software Xxe conf 1.00 [SEC025] XML External Entity (XXE) — .NET XmlDocument / XmlTextReader: .NET XmlDocument and XmlTextReader expand external entities by default in pre-4.5.2 runtimes (and even later if XmlResolver is left at default). Allows file disclosure and SSRF via XXE.
Set XmlResolver = null on XmlDocument before Load. On XmlReader, pass XmlReaderSettings { DtdProcessing = DtdProcessing.Prohibit, XmlResolver = null }. Prefer XDocument / XElement which don't expand external entities by default.
src/Cli/dotnet/NugetPackageDownloader/WorkloadUnixFilePermissionsFileList.cs:31
low Security checks security Injection conf 1.00 [SEC103] LDAP injection — non-constant search filter: User input concatenated into an LDAP search filter. Attackers inject `*)(uid=*` style payloads to bypass auth or enumerate accounts.
Escape with javax.naming.ldap.Rdn.escapeValue or equivalent. For python-ldap, use ldap.filter.escape_filter_chars. Better: use parameterized search APIs (Spring LdapTemplate filter encoders).
documentation/manpages/tool/remove-metadata-and-embed-includes.py:39
high Security checks cicd CI/CD security conf 0.90 ✓ Repobility 2 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `dotnet/arcade/.github/workflows/backport-base.yml` pinned to mutable ref `@main`: `uses: dotnet/arcade/.github/workflows/backport-base.yml@main` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromis…
2 files, 2 locations
.github/workflows/backport.yml:20
.github/workflows/inter-branch-merge-flow.yml:14
CI/CD securitySupply chainGitHub Actions
low Security checks cicd CI/CD security conf 0.90 ✓ Repobility 33 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `actions/checkout` pinned to mutable ref `@v2`: `uses: actions/checkout@v2` 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…
6 files, 33 locations
.github/workflows/update-static-web-assets-baselines.yml:27, 72, 161, 179, 201, 210, 312, 330, +2 more (20 hits)
.github/workflows/copilot-setup-steps.yml:39, 47 (4 hits)
.github/workflows/remove-lockdown-label.yml:23, 55 (4 hits)
.github/workflows/add-lockdown-label.yml:28 (2 hits)
.github/workflows/update-man-pages.yml:17 (2 hits)
.github/workflows/stale.yml:42
CI/CD securitySupply chainGitHub Actions
high System graph cicd CI/CD security conf 1.00 GitHub Action tracks a moving branch
dotnet/arcade/.github/workflows/inter-branch-merge-base.yml@main can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
.github/workflows/inter-branch-merge-flow.yml:14 CI/CD securitySupply chainGithub actions
high System graph cicd CI/CD security conf 1.00 GitHub Action tracks a moving branch
dotnet/arcade/.github/workflows/backport-base.yml@main can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
.github/workflows/backport.yml:20 CI/CD securitySupply chainGithub actions
low Security checks quality Quality conf 1.00 3 occurrences [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.
3 files, 3 locations
src/Cli/dotnet/Commands/New/PostActions/DotnetAddPostActionProcessor.cs:98
src/Cli/dotnet/Commands/Package/PackageCommandParser.cs:78
src/Cli/dotnet/Commands/Workload/GlobalJsonWorkloadSetFile.cs:46
medium Security checks cicd CI/CD security conf 0.90 Docker build context has no .dockerignore
Add .dockerignore with at least .git, .env, private keys, dependency folders, build outputs, and local databases.
.dockerignore CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.82 Docker final stage has no non-root USER
Add a non-root USER in the final runtime stage after files and permissions are prepared.
documentation/manpages/tool/Dockerfile:1 CI/CD securitycontainers
medium Security checks quality Quality conf 0.70 Public web app has no Content Security Policy
Add a Content-Security-Policy header through the web framework or hosting config. For static apps, add a CSP meta tag that restricts default-src, script-src, connect-src, img-src, and frame-ancestors.
index.html
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.
eng/pipelines/search-cache-pipeline.yml:117
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — src/Dotnet.Watch/Web.Middleware/WebSocketScriptInjection.js:67
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: documentation/manpages/tool/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: test/TestAssets/TestPackages/dotnet-new/test_templates/TemplateWithConditions/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: test/TestAssets/TestPackages/TemplateEngine/test_templates/TemplateWithConditions/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 6 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.
6 files, 6 locations
.github/workflows/backport.yml
.github/workflows/fix-completions-on-comment.yml
.github/workflows/inter-branch-merge-flow.yml
.github/workflows/update-man-pages.yml
.github/workflows/update-static-web-assets-baselines.yml
.github/workflows/update-xlf-on-comment.yml
CI/CD securitySupply chainGithub actions
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — eng/common/cross/install-debs.py:128
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph network Security conf 1.00 Privileged port 42 in use
Port 42 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
.github/workflows/update-man-pages.yml Ports
high Security checks cicd CI/CD security conf 0.72 Dockerfile keeps pip download cache
Use `pip install --no-cache-dir ...` in container builds.
documentation/manpages/tool/Dockerfile:5 CI/CD securitycontainers
low Security checks quality Quality conf 0.60 4 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.
4 files, 4 locations
src/Cli/Microsoft.DotNet.Cli.Definitions/Commands/New/NewSearchCommandDefinition.cs:24
src/Cli/Microsoft.TemplateEngine.Cli/Commands/CommandLineUtils.cs:11
src/Cli/Microsoft.TemplateEngine.Cli/Commands/SymbolStrings.Designer.cs:18
src/Cli/dotnet/CommandFactory/CommandResolution/PublishPathCommandSpecFactory.cs:46
duplicationquality
low Security checks quality Quality conf 0.70 Generated build artifact directory is present at repository root
Remove generated output from version control, add it to .gitignore and .dockerignore where relevant, and regenerate it in CI or release jobs.
build:1
low Security checks quality Quality conf 0.64 Public docs site has no llms.txt
Add llms.txt with the product summary, canonical docs, API endpoints, security guidance, and preferred CLI workflow for AI agents.
llms.txt
low Security checks quality Quality conf 0.50 Public web app has no humans.txt
Add humans.txt with team ownership, contact URL, key documentation links, and the last-updated date.
humans.txt
low Security checks quality Quality conf 0.72 Public web app has no sitemap
Add sitemap.xml, a sitemap index, or a framework-native sitemap route and reference it from robots.txt.
sitemap.xml
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: pandoc/core:2.18.0
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
documentation/manpages/tool/Dockerfile:1 containersPinned dependencies
low System graph software Dead code candidate conf 1.00 File has no detected symbols: test/TestAssets/TestPackages/PackageLibraryDirectDependency/PackageLibraryDirectDependency/wwwroot/js/pkg-direct-dep.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: test/TestAssets/TestPackages/PackageLibraryDirectDependency/PackageLibraryTransitiveDependency/wwwroot/js/pkg-transitive-dep.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: test/TestAssets/TestPackages/PackageLibraryTransitiveDependency/wwwroot/js/pkg-transitive-dep.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: test/TestAssets/TestProjects/AssetGroupsSample/IdentityUILib/wwwroot/V4/js/site.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: test/TestAssets/TestProjects/AssetGroupsSample/IdentityUILib/wwwroot/V5/js/site.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: test/TestAssets/TestProjects/BlazorHosted/blazorwasm/wwwroot/serviceworkers/my-prod-service-worker.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: test/TestAssets/TestProjects/BlazorHosted/blazorwasm/wwwroot/serviceworkers/my-service-worker.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: test/TestAssets/TestProjects/BlazorHosted/razorclasslibrary/wwwroot/wwwroot/exampleJsInterop.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: test/TestAssets/TestProjects/BlazorHostedRID/blazorwasm/wwwroot/serviceworkers/my-prod-service-worker.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: test/TestAssets/TestProjects/BlazorHostedRID/blazorwasm/wwwroot/serviceworkers/my-service-worker.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: test/TestAssets/TestProjects/BlazorHostedRID/razorclasslibrary/wwwroot/wwwroot/exampleJsInterop.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: test/TestAssets/TestProjects/BlazorWasmReferencedByAspNetCoreServer/Client/wwwroot/service-worker.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: test/TestAssets/TestProjects/BlazorWasmReferencedByAspNetCoreServer/Client/wwwroot/service-worker.published.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: test/TestAssets/TestProjects/BlazorWasmWithLibrary/blazorwasm/wwwroot/serviceworkers/my-prod-service-worker.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: test/TestAssets/TestProjects/BlazorWasmWithLibrary/blazorwasm/wwwroot/serviceworkers/my-service-worker.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: test/TestAssets/TestProjects/BlazorWasmWithLibrary/LinkBaseToWebRoot/js/LinkedScript.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: test/TestAssets/TestProjects/BlazorWasmWithLibrary/razorclasslibrary/wwwroot/wwwroot/exampleJsInterop.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: test/TestAssets/TestProjects/FrameworkAssetsSample/FrameworkAssetsLib/wwwroot/js/framework.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: test/TestAssets/TestProjects/RazorAppWithP2PReference/AnotherClassLib/wwwroot/js/project-direct-dep.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: test/TestAssets/TestProjects/RazorAppWithP2PReference/ClassLibrary/wwwroot/js/project-transitive-dep.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: test/TestAssets/TestProjects/RazorAppWithP2PReference/ClassLibrary/wwwroot/js/project-transitive-dep.v4.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: test/TestAssets/TestProjects/RazorAppWithPackageAndP2PReference/AnotherClassLib/wwwroot/js/project-direct-dep.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: test/TestAssets/TestProjects/RazorAppWithPackageAndP2PReference/ClassLibrary/wwwroot/js/project-transitive-dep.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: test/TestAssets/TestProjects/RazorAppWithPackageAndP2PReference/ClassLibrary/wwwroot/js/project-transitive-dep.v4.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: test/TestAssets/TestProjects/RazorAppWithPackageAndP2PReference/RazorPackageLibraryDirectDependency/wwwroot/js/pkg-direct-dep.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: test/TestAssets/TestProjects/RazorAppWithPackageAndP2PReference/RazorPackageLibraryTransitiveDependency/wwwroot/js/pkg-transitive-dep.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: test/TestAssets/TestProjects/RazorClassLibrary/wwwroot/js/project-transitive-dep.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: test/TestAssets/TestProjects/RazorClassLibrary/wwwroot/js/project-transitive-dep.v4.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: test/TestAssets/TestProjects/RazorSimpleMvc/wwwroot/js/SimpleMvc.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: test/TestAssets/TestProjects/VanillaWasm/wwwroot/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: test/TestAssets/TestProjects/WatchBlazorWasmHosted/blazorwasm/wwwroot/serviceworkers/my-prod-service-worker.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: test/TestAssets/TestProjects/WatchBlazorWasmHosted/blazorwasm/wwwroot/serviceworkers/my-service-worker.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: test/TestAssets/TestProjects/WatchBlazorWasmHosted/razorclasslibrary/wwwroot/wwwroot/exampleJsInterop.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `applyDeltas_legacy` in src/Dotnet.Watch/Web.Middleware/WebSocketScriptInjection.js:124
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph software Dead code conf 1.00 Possibly dead Python function: demote_net_core_1_2
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
documentation/manpages/tool/man-pandoc-filter.py:29
low System graph software Dead code conf 1.00 Possibly dead Python function: fail_on_includes
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
documentation/manpages/tool/man-pandoc-filter.py:11
low System graph software Dead code conf 1.00 Possibly dead Python function: fix_space_in_command_names
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
documentation/manpages/tool/man-pandoc-filter.py:39
low System graph software Dead code conf 1.00 Possibly dead Python function: promote_and_capitalize_sections
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
documentation/manpages/tool/man-pandoc-filter.py:15
low System graph software Dead code conf 1.00 Possibly dead Python function: remove_markers
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
documentation/manpages/tool/man-pandoc-filter.py:53
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — test/TestAssets/TestProjects/AssetGroupsSample/IdentityUILib/wwwroot/V4/js/site.js:3
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 — test/TestAssets/TestProjects/AssetGroupsSample/IdentityUILib/wwwroot/V5/js/site.js:3
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 — test/TestAssets/TestProjects/FrameworkAssetsSample/FrameworkAssetsLib/wwwroot/js/framework.js:2
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 — test/TestAssets/TestProjects/VanillaWasm/wwwroot/main.js:22
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: test/dotnet.Tests/CompletionTests/snapshots/bash/DotnetCliSnapshotTests.VerifyCompletions.verified.sh (2311 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: test/dotnet.Tests/CompletionTests/snapshots/zsh/DotnetCliSnapshotTests.VerifyCompletions.verified.zsh (2109 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/1776470e-4bc5-4eec-a374-966bb4e999a3/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/1776470e-4bc5-4eec-a374-966bb4e999a3/

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.