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

Scan timing: clone 1.24s · analysis 0.57s · 0.3 MB · GitHub API rate-limit (preflight)

nix-community/NUR

https://github.com/nix-community/NUR · scanned 2026-06-06 01:11 UTC (3 days, 23 hours ago) · 10 languages

44 raw signals (14 security + 30 graph) 44th percentile · Python · tiny (<2K LoC) System graph score 95 (lower by 31)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 3 days, 23 hours ago · v2 · 25 actionable findings from 2 signal sources. 4 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 80.0 0.15 12.00
security_score 95.0 0.25 23.75
testing_score 0.0 0.20 0.00
documentation_score 62.0 0.15 9.30
practices_score 75.0 0.15 11.25
code_quality 80.0 0.10 8.00
Overall 1.00 64.3
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Scan summary Quality grade C+ (64/100). Dimensions: security 95, maintainability 80. 14 findings (1 security). 980 lines analyzed.

Showing 15 of 25 actionable findings. 29 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 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.
ci/nur/update.py:52
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).
ci/nur/prefetch.py:110
high Security checks quality Quality conf 1.00 ✓ Repobility 4 occurrences `self.repo` used but never assigned in __init__
Method `prefetch` of class `GithubPrefetcher` reads `self.repo`, 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.
lines 126, 131, 134, 135
ci/nur/prefetch.py:126, 131, 134, 135 (4 hits)
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — ci/nur/combine.py:29
`subprocess.check_output(...)` 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 quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — ci/nur/path.py:45
`subprocess.check_output(...)` 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 security Coverage conf 1.00 No auth library detected
The scanner did not find any standard auth library (JWT, OAuth, NextAuth, Auth0, etc.). Either auth lives in custom code, in a separate service, or is missing.
auth
medium System graph quality Tests conf 1.00 Very low test-to-source ratio
0 test file(s) for 12 source file(s) (ratio 0.00). Consider adding integration or unit tests for critical paths.
Coverage
low System graph software Dead code candidate conf 1.00 File has no detected symbols: ci/setup.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph quality Integrity conf 1.00 2 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: ci/nur/manifest.py:as_json, ci/nur/manifest.py:as_json This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document why they're separate.
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: ci/nur/prefetch.py:prefetch, ci/nur/prefetch.py:prefetch, ci/nur/prefetch.py:prefetch This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document why they're separate.
duplicatesduplication
low System graph software Dead code conf 1.00 Possibly dead Python function: combine_command
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
ci/nur/combine.py:177
low System graph software Dead code conf 1.00 Possibly dead Python function: eval_command
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
ci/nur/eval.py:70
low System graph software Dead code conf 1.00 Possibly dead Python function: format_manifest_command
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
ci/nur/format_manifest.py:9
low System graph software Dead code conf 1.00 Possibly dead Python function: index_command
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
ci/nur/index.py:97
low System graph software Dead code conf 1.00 Possibly dead Python function: update_command
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
ci/nur/update.py:30
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/16bdfad9-4722-4992-ac5f-06c43c422493/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/16bdfad9-4722-4992-ac5f-06c43c422493/

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.