{"version": "2.1.0", "$schema": "https://json.schemastore.org/sarif-2.1.0.json", "runs": [{"tool": {"driver": {"name": "Repobility", "informationUri": "https://repobility.com", "rules": [{"id": "WEB003", "name": "Public web service has no security.txt", "shortDescription": {"text": "Public web service has no security.txt"}, "fullDescription": {"text": "security.txt gives researchers and customers a safe disclosure channel. Public web apps and APIs should publish it under /.well-known/security.txt."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "medium", "confidence": 0.78, "cwe": "", "owasp": ""}}, {"id": "GHSA-58qx-3vcg-4xpx", "name": "ws: GHSA-58qx-3vcg-4xpx", "shortDescription": {"text": "ws: GHSA-58qx-3vcg-4xpx"}, "fullDescription": {"text": "ws: Uninitialized memory disclosure"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "medium", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-79cf-xcqc-c78w", "name": "webpack-dev-server: GHSA-79cf-xcqc-c78w", "shortDescription": {"text": "webpack-dev-server: GHSA-79cf-xcqc-c78w"}, "fullDescription": {"text": "webpack-dev-server vulnerable to cross-origin source code exposure on non-HTTPS origins"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "medium", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-w5hq-g745-h8pq", "name": "uuid: GHSA-w5hq-g745-h8pq", "shortDescription": {"text": "uuid: GHSA-w5hq-g745-h8pq"}, "fullDescription": {"text": "uuid: Missing buffer bounds check in v3/v5/v6 when buf is provided"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "medium", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-q8mj-m7cp-5q26", "name": "qs: GHSA-q8mj-m7cp-5q26", "shortDescription": {"text": "qs: GHSA-q8mj-m7cp-5q26"}, "fullDescription": {"text": "qs has a remotely triggerable DoS: qs.stringify crashes with TypeError on null/undefined entries in comma-format arrays when encodeValuesOnly is set"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "medium", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-jxxr-4gwj-5jf2", "name": "brace-expansion: GHSA-jxxr-4gwj-5jf2", "shortDescription": {"text": "brace-expansion: GHSA-jxxr-4gwj-5jf2"}, "fullDescription": {"text": "brace-expansion: Large numeric range defeats documented `max` DoS protection"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "medium", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "ERR002", "name": "[ERR002] Empty Catch Block: Empty catch blocks hide errors.", "shortDescription": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "fullDescription": {"text": "Log the error or rethrow it. Use console.error() at minimum."}, "properties": {"scanner": "repobility-threat-engine", "category": "error_handling", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC002", "name": "[SEC002] Hardcoded API Key: Hardcoded API key found in source code.", "shortDescription": {"text": "[SEC002] Hardcoded API Key: Hardcoded API key found in source code."}, "fullDescription": {"text": "Use environment variables. Add the pattern to .gitignore."}, "properties": {"scanner": "repobility-threat-engine", "category": "credential_exposure", "severity": "medium", "confidence": 0.3, "cwe": "", "owasp": ""}}, {"id": "SEC031", "name": "[SEC031] Catastrophic Backtracking Regex (ReDoS): Regex contains nested quantifiers like `(a+)+` or quantified alternati", "shortDescription": {"text": "[SEC031] Catastrophic Backtracking Regex (ReDoS): Regex contains nested quantifiers like `(a+)+` or quantified alternation with overlapping branches. On adversarial input these patterns exhibit exponential backtracking, freezing the process"}, "fullDescription": {"text": "Three options, pick one:\n  1. Rewrite the pattern to avoid nested quantifiers. E.g. `(a+)+` is      functionally equivalent to `a+` for matching purposes.\n  2. Use Google's re2 (`pip install google-re2`): linear-time, drop-in      replacement for `re` for most use cases.\n  3. Set a hard timeout: `signal.alarm(1)` before regex eval.\nTest patterns against `safe-regex` or `redos-detector` before shipping."}, "properties": {"scanner": "repobility-threat-engine", "category": "redos", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC136", "name": "[SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns ", "shortDescription": {"text": "[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 \u2014 wrap, swallow, retur"}, "fullDescription": {"text": "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."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC087", "name": "[SEC087] JS: weak Math.random for crypto: Math.random() is not cryptographically secure; using it for tokens/keys/nonces", "shortDescription": {"text": "[SEC087] JS: weak Math.random for crypto: Math.random() is not cryptographically secure; using it for tokens/keys/nonces is predictable. Ported from gosec G404 / eslint detect-pseudoRandomBytes concept (Apache-2.0)."}, "fullDescription": {"text": "Use `crypto.randomBytes(32).toString('hex')` (Node) or `crypto.getRandomValues()` (browser)."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC015", "name": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable.", "shortDescription": {"text": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable."}, "fullDescription": {"text": "Use secrets module (Python) or crypto.getRandomValues() (JS) for security-sensitive randomness."}, "properties": {"scanner": "repobility-threat-engine", "category": "crypto", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC045", "name": "[SEC045] eval()/exec() on stored or user-supplied data: eval() and exec() on data \u2014 even admin-stored data \u2014 is a latera", "shortDescription": {"text": "[SEC045] eval()/exec() on stored or user-supplied data: eval() and exec() on data \u2014 even admin-stored data \u2014 is a lateral-movement vector after any one credential compromise. Sandboxes (__builtins__ cleared) are escapable: attackers use obj"}, "fullDescription": {"text": "For literal data structures: use ast.literal_eval(text) \u2014 only parses literals, raises on code.\nFor formula evaluation: use asteval or simpleeval (purpose-built sandboxes with allow-lists).\nFor Odoo: use odoo.tools.safe_eval(expr, locals_dict, mode='exec').\nIf you genuinely need to execute admin-stored code: require explicit super-admin permission AND log every execution with a stack trace."}, "properties": {"scanner": "repobility-threat-engine", "category": "injection", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "DEPCUR-NPM", "name": "npm package `vue-eslint-parser` is 1 major version(s) behind (9.4.3 -> 10.4.1)", "shortDescription": {"text": "npm package `vue-eslint-parser` is 1 major version(s) behind (9.4.3 -> 10.4.1)"}, "fullDescription": {"text": "`vue-eslint-parser` is pinned/resolved at 9.4.3 but the latest stable release on the npm registry is 10.4.1 (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."}, "properties": {"scanner": "repobility-dependency-currency", "category": "dependency", "severity": "medium", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "WEB011", "name": "Public web app has no humans.txt", "shortDescription": {"text": "Public web app has no humans.txt"}, "fullDescription": {"text": "humans.txt is optional, but it gives operators and reviewers a simple place to find ownership, contact, and important public documentation links."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "low", "confidence": 0.5, "cwe": "", "owasp": ""}}, {"id": "WEB008", "name": "Public docs site has no llms.txt", "shortDescription": {"text": "Public docs site has no llms.txt"}, "fullDescription": {"text": "AI coding agents increasingly read llms.txt to find canonical docs and API workflows. Without it, agents are more likely to browse pages repeatedly or use stale instructions."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "low", "confidence": 0.64, "cwe": "", "owasp": ""}}, {"id": "WEB002", "name": "Public web app has no sitemap", "shortDescription": {"text": "Public web app has no sitemap"}, "fullDescription": {"text": "A sitemap gives search engines, docs crawlers, and AI agents a structured list of public pages. Without one, important docs and product pages are easy to miss."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "low", "confidence": 0.72, "cwe": "", "owasp": ""}}, {"id": "WEB001", "name": "Public web app has no robots.txt", "shortDescription": {"text": "Public web app has no robots.txt"}, "fullDescription": {"text": "Public websites should publish a robots.txt file so crawlers and AI agents can discover crawl rules and sitemap locations without guessing."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "low", "confidence": 0.74, "cwe": "", "owasp": ""}}, {"id": "AIC003", "name": "Duplicated implementation block across source files", "shortDescription": {"text": "Duplicated implementation block across source files"}, "fullDescription": {"text": "Duplicated blocks are a common artifact when generated code is pasted or recreated instead of reused. They increase maintenance cost because every future bug fix must be found in multiple locations."}, "properties": {"scanner": "repobility-ai-code-hygiene", "category": "quality", "severity": "low", "confidence": 0.86, "cwe": "", "owasp": ""}}, {"id": "AIC002", "name": "Source file name looks like an AI patch artifact", "shortDescription": {"text": "Source file name looks like an AI patch artifact"}, "fullDescription": {"text": "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."}, "properties": {"scanner": "repobility-ai-code-hygiene", "category": "quality", "severity": "low", "confidence": 0.62, "cwe": "", "owasp": ""}}, {"id": "MINED045", "name": "[MINED045] Ts Non Null Assertion (and 8 more): Same pattern found in 8 additional files. Review if needed.", "shortDescription": {"text": "[MINED045] Ts Non Null Assertion (and 8 more): Same pattern found in 8 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-476 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED054", "name": "[MINED054] Ts As Any (and 2 more): Same pattern found in 2 additional files. Review if needed.", "shortDescription": {"text": "[MINED054] Ts As Any (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-704 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED043", "name": "[MINED043] Http Not Https (and 40 more): Same pattern found in 40 additional files. Review if needed.", "shortDescription": {"text": "[MINED043] Http Not Https (and 40 more): Same pattern found in 40 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-319 / A02:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED004", "name": "[MINED004] Weak Crypto (and 4 more): Same pattern found in 4 additional files. Review if needed.", "shortDescription": {"text": "[MINED004] Weak Crypto (and 4 more): Same pattern found in 4 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-327 / A02:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC085", "name": "[SEC085] JS: child_process.exec with non-literal (and 9 more): Same pattern found in 9 additional files. Review if neede", "shortDescription": {"text": "[SEC085] JS: child_process.exec with non-literal (and 9 more): Same pattern found in 9 additional files. Review if needed."}, "fullDescription": {"text": "Use execFile / spawn with separate args array; never pass shell strings."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC029", "name": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 41 more): Same pattern found in 41 addi", "shortDescription": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 41 more): Same pattern found in 41 additional files. Review if needed."}, "fullDescription": {"text": "Validate the URL against an allowlist BEFORE fetching:\n  ALLOWED = {'images.example.com', 'cdn.example.com'}\n  host = urlparse(url).hostname\n  if host not in ALLOWED: abort(400)\nOr use a server-side proxy (Imgproxy / serve-files-only-from-S3) that isolates outbound network access from the request handler.\nBlock private CIDRs explicitly: 10/8, 172.16/12, 192.168/16, 169.254/16."}, "properties": {"scanner": "repobility-threat-engine", "category": "ssrf", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED052", "name": "[MINED052] Ts Any Typed (and 32 more): Same pattern found in 32 additional files. Review if needed.", "shortDescription": {"text": "[MINED052] Ts Any Typed (and 32 more): Same pattern found in 32 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-704 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC128", "name": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 25 more): Same pattern found in 25 add", "shortDescription": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 25 more): Same pattern found in 25 additional files. Review if needed."}, "fullDescription": {"text": "Add `await` before each async call, or chain with `.then`. If you intentionally want fire-and-forget, prefix with `void` (TS) or assign to `_` (Python with `asyncio.create_task`) to make the intent explicit and survive lint."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED044", "name": "[MINED044] Js Console Log Prod (and 90 more): Same pattern found in 90 additional files. Review if needed.", "shortDescription": {"text": "[MINED044] Js Console Log Prod (and 90 more): Same pattern found in 90 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-532 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC040", "name": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data (and 2 more): Same pattern found in 2 additional fil", "shortDescription": {"text": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "fullDescription": {"text": "For plain text: use el.textContent = data.value (auto-escapes).\nFor HTML you need to render: el.innerHTML = DOMPurify.sanitize(html).\nFor React/Vue/Svelte: stop using innerHTML; use the framework's binding.\nWhen data comes from CV/PDF parsers, sanitize at the parser boundary too."}, "properties": {"scanner": "repobility-threat-engine", "category": "xss", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "GHSA-ph9p-34f9-6g65", "name": "tmp: GHSA-ph9p-34f9-6g65", "shortDescription": {"text": "tmp: GHSA-ph9p-34f9-6g65"}, "fullDescription": {"text": "tmp has Path Traversal via unsanitized prefix/postfix that enables directory escape"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "high", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-v39h-62p7-jpjc", "name": "fast-uri: GHSA-v39h-62p7-jpjc", "shortDescription": {"text": "fast-uri: GHSA-v39h-62p7-jpjc"}, "fullDescription": {"text": "fast-uri vulnerable to host confusion via percent-encoded authority delimiters"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "high", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-q3j6-qgpj-74h6", "name": "fast-uri: GHSA-q3j6-qgpj-74h6", "shortDescription": {"text": "fast-uri: GHSA-q3j6-qgpj-74h6"}, "fullDescription": {"text": "fast-uri vulnerable to path traversal via percent-encoded dot segments"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "high", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "SEC083", "name": "[SEC083] JS: new RegExp() with non-literal: new RegExp(<variable>) \u2014 variable input can craft a ReDoS pattern. Ported fr", "shortDescription": {"text": "[SEC083] JS: new RegExp() with non-literal: new RegExp(<variable>) \u2014 variable input can craft a ReDoS pattern. Ported from eslint-plugin-security detect-non-literal-regexp (Apache-2.0)."}, "fullDescription": {"text": "Use a literal RegExp or whitelist-validate user input before constructing patterns."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC103", "name": "[SEC103] LDAP injection \u2014 non-constant search filter: User input concatenated into an LDAP search filter. Attackers inje", "shortDescription": {"text": "[SEC103] LDAP injection \u2014 non-constant search filter: User input concatenated into an LDAP search filter. Attackers inject `*)(uid=*` style payloads to bypass auth or enumerate accounts."}, "fullDescription": {"text": "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)."}, "properties": {"scanner": "repobility-threat-engine", "category": "injection", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC100", "name": "[SEC100] CORS permissive Access-Control-Allow-Origin: *: Permissive CORS policy (`*` origin) allows any website to make ", "shortDescription": {"text": "[SEC100] CORS permissive Access-Control-Allow-Origin: *: Permissive CORS policy (`*` origin) allows any website to make authenticated cross-origin requests. Especially dangerous when combined with `Access-Control-Allow-Credentials: true`."}, "fullDescription": {"text": "Allowlist specific origins. For dynamic per-request validation, validate against a known list and echo the origin back. Never combine wildcard origin with credentials."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED115", "name": "Action `actions/checkout` pinned to mutable ref `@v6`", "shortDescription": {"text": "Action `actions/checkout` pinned to mutable ref `@v6`"}, "fullDescription": {"text": "`uses: actions/checkout@v6` 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 + lock with Dependabot or renovate."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED122", "name": "package.json dep `webpack-hot-middleware` pulled from URL/Git", "shortDescription": {"text": "package.json dep `webpack-hot-middleware` pulled from URL/Git"}, "fullDescription": {"text": "`devDependencies.webpack-hot-middleware` = `github:lyswhut/webpack-hot-middleware#329c4375134b89d39da23a56a94db651247c74a1` 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."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "CORE_NO_TESTS", "name": "No test files found", "shortDescription": {"text": "No test files found"}, "fullDescription": {"text": "Add a test directory (tests/ or __tests__/) with unit tests for core functionality. Use pytest (Python), Jest (JS/TS), or go test (Go). Start with tests for critical business logic and security-sensitive functions."}, "properties": {"scanner": "repobility-core", "category": "testing", "severity": "high", "confidence": null, "cwe": "", "owasp": ""}}, {"id": "generic-api-key", "name": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", "shortDescription": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "fullDescription": {"text": "Gitleaks detected a committed secret or credential pattern."}, "properties": {"scanner": "gitleaks", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "cwe": "", "owasp": ""}}, {"id": "SEC084", "name": "[SEC084] JS: require() with non-literal: require(<variable>) loads arbitrary modules \u2014 equivalent to eval at module scop", "shortDescription": {"text": "[SEC084] JS: require() with non-literal: require(<variable>) loads arbitrary modules \u2014 equivalent to eval at module scope. Ported from eslint-plugin-security detect-non-literal-require (Apache-2.0)."}, "fullDescription": {"text": "Use static imports or a static mapping `const modules = { foo: require('./foo') }`."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "critical", "confidence": 1.0, "cwe": "", "owasp": ""}}]}}, "automationDetails": {"id": "repobility/947"}, "properties": {"repository": "lyswhut/lx-music-desktop", "repoUrl": "https://github.com/lyswhut/lx-music-desktop", "branch": "master"}, "results": [{"ruleId": "WEB003", "level": "warning", "message": {"text": "Public web service has no security.txt"}, "properties": {"repobilityId": 88885, "scanner": "repobility-web-presence", "fingerprint": "5cd26606c5a53c9f403ff7a92a6917c19cf440a23ce03e2b90e8c493312ef8cd", "category": "quality", "severity": "medium", "confidence": 0.78, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Repository looks like a public web app/API but no security.txt file or route was discovered.", "evidence": {"rule_id": "WEB003", "scanner": "repobility-web-presence", "references": ["https://www.rfc-editor.org/rfc/rfc9116", "https://github.com/Lissy93/web-check"], "correlation_key": "fp|5cd26606c5a53c9f403ff7a92a6917c19cf440a23ce03e2b90e8c493312ef8cd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".well-known/security.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-58qx-3vcg-4xpx", "level": "warning", "message": {"text": "ws: GHSA-58qx-3vcg-4xpx"}, "properties": {"repobilityId": 88880, "scanner": "osv-scanner", "fingerprint": "1b788fa8525382946c739270c1849aaa868327cf2c4216daf211eef3de5db45b", "category": "dependency", "severity": "medium", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-45736"], "package": "ws", "rule_id": "GHSA-58qx-3vcg-4xpx", "scanner": "osv-scanner", "correlation_key": "vuln|ws|CVE-2026-45736|package-lock.json"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package-lock.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-79cf-xcqc-c78w", "level": "warning", "message": {"text": "webpack-dev-server: GHSA-79cf-xcqc-c78w"}, "properties": {"repobilityId": 88879, "scanner": "osv-scanner", "fingerprint": "684ef2e955258e7ac9b018cb59a57c756fefce7f72ddc2b844d92be26a1b10c6", "category": "dependency", "severity": "medium", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-6402"], "package": "webpack-dev-server", "rule_id": "GHSA-79cf-xcqc-c78w", "scanner": "osv-scanner", "correlation_key": "vuln|webpack-dev-server|CVE-2026-6402|package-lock.json"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package-lock.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-w5hq-g745-h8pq", "level": "warning", "message": {"text": "uuid: GHSA-w5hq-g745-h8pq"}, "properties": {"repobilityId": 88878, "scanner": "osv-scanner", "fingerprint": "2f6e44d3056f0549be14ae43b720d756ca97d735468761433ea29a9ddf340eaa", "category": "dependency", "severity": "medium", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-41907"], "package": "uuid", "rule_id": "GHSA-w5hq-g745-h8pq", "scanner": "osv-scanner", "correlation_key": "vuln|uuid|CVE-2026-41907|package-lock.json"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package-lock.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-q8mj-m7cp-5q26", "level": "warning", "message": {"text": "qs: GHSA-q8mj-m7cp-5q26"}, "properties": {"repobilityId": 88876, "scanner": "osv-scanner", "fingerprint": "47af66b2941511910bef679f7fdc36232d020247a0f6ed279e094f6f5cfdf3b5", "category": "dependency", "severity": "medium", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-8723"], "package": "qs", "rule_id": "GHSA-q8mj-m7cp-5q26", "scanner": "osv-scanner", "correlation_key": "vuln|qs|CVE-2026-8723|package-lock.json"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package-lock.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-jxxr-4gwj-5jf2", "level": "warning", "message": {"text": "brace-expansion: GHSA-jxxr-4gwj-5jf2"}, "properties": {"repobilityId": 88873, "scanner": "osv-scanner", "fingerprint": "424de426cd602f1c8b6679b49b7bfe47ca14575769f019abfeaa4836511a1e32", "category": "dependency", "severity": "medium", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-45149"], "package": "brace-expansion", "rule_id": "GHSA-jxxr-4gwj-5jf2", "scanner": "osv-scanner", "correlation_key": "vuln|brace-expansion|CVE-2026-45149|package-lock.json"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package-lock.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 88863, "scanner": "repobility-threat-engine", "fingerprint": "54c1df99f82587dace76acdeb073c9eaecbfae1be43f6332cb9cd654a89b8013", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "catch (_) {}", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR002", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|54c1df99f82587dace76acdeb073c9eaecbfae1be43f6332cb9cd654a89b8013"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/worker/download/download.ts"}, "region": {"startLine": 323}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 88862, "scanner": "repobility-threat-engine", "fingerprint": "093f73ac1bee7303cf4bfc5dccbad32de26feda19344b03828fe97c19f6eb369", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "catch (_) {}", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR002", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|093f73ac1bee7303cf4bfc5dccbad32de26feda19344b03828fe97c19f6eb369"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/utils/request.js"}, "region": {"startLine": 53}}}]}, {"ruleId": "SEC002", "level": "warning", "message": {"text": "[SEC002] Hardcoded API Key: Hardcoded API key found in source code."}, "properties": {"repobilityId": 88861, "scanner": "repobility-threat-engine", "fingerprint": "eec54e3f4c5ecd7e54c10b1c028b9f1896d60046bd5ba362d61660eb634122cc", "category": "credential_exposure", "severity": "medium", "confidence": 0.3, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Low entropy value (3.0 bits) \u2014 may be placeholder or common string", "evidence": {"match": "apiKey = '<redacted>'", "reason": "Low entropy value (3.0 bits) \u2014 may be placeholder or common string", "rule_id": "SEC002", "scanner": "repobility-threat-engine", "confidence": 0.3, "correlation_key": "secret|token|1|apikey redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/utils/musicSdk/wy/utils/crypto.js"}, "region": {"startLine": 8}}}]}, {"ruleId": "SEC031", "level": "warning", "message": {"text": "[SEC031] Catastrophic Backtracking Regex (ReDoS): Regex contains nested quantifiers like `(a+)+` or quantified alternation with overlapping branches. On adversarial input these patterns exhibit exponential backtracking, freezing the process. CWE-1333. Real CVEs: CVE-2017-16129 (minimatch), CVE-2021-3807 (ansi-regex), and dozens more."}, "properties": {"repobilityId": 88857, "scanner": "repobility-threat-engine", "fingerprint": "450ee6184cc23853b405da1bde63d6f139d811774a63b17d3e215a09b75acbab", "category": "redos", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "(.*)*", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC031", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|450ee6184cc23853b405da1bde63d6f139d811774a63b17d3e215a09b75acbab"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/router.ts"}, "region": {"startLine": 65}}}]}, {"ruleId": "SEC136", "level": "warning", "message": {"text": "[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 \u2014 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."}, "properties": {"repobilityId": 88856, "scanner": "repobility-threat-engine", "fingerprint": "8d6f111eda81e1f139d1358a7a300d959df7225072674a3665ad9b78f8cdfc37", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "} catch (err) {\n    return null\n  }", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC136", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|8d6f111eda81e1f139d1358a7a300d959df7225072674a3665ad9b78f8cdfc37"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/utils/musicSdk/kw/util.js"}, "region": {"startLine": 43}}}]}, {"ruleId": "SEC136", "level": "warning", "message": {"text": "[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 \u2014 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."}, "properties": {"repobilityId": 88855, "scanner": "repobility-threat-engine", "fingerprint": "cb1763b554b0555a31f1cd67ae50e9ded83363ba543cc3bd360ba632d34ab832", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "} catch (err) {\n    return null\n  }", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC136", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|cb1763b554b0555a31f1cd67ae50e9ded83363ba543cc3bd360ba632d34ab832"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/main/modules/sync/server/server/auth.ts"}, "region": {"startLine": 28}}}]}, {"ruleId": "SEC087", "level": "warning", "message": {"text": "[SEC087] JS: weak Math.random for crypto: Math.random() is not cryptographically secure; using it for tokens/keys/nonces is predictable. Ported from gosec G404 / eslint detect-pseudoRandomBytes concept (Apache-2.0)."}, "properties": {"repobilityId": 88841, "scanner": "repobility-threat-engine", "fingerprint": "42da9f108482d7856f2d2423639994b5ef13db96019012ad502e9cd0eb89c096", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "Key = `request__${Math.random(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC087", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|42da9f108482d7856f2d2423639994b5ef13db96019012ad502e9cd0eb89c096"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/core/useApp/useInitUserApi.ts"}, "region": {"startLine": 42}}}]}, {"ruleId": "SEC087", "level": "warning", "message": {"text": "[SEC087] JS: weak Math.random for crypto: Math.random() is not cryptographically secure; using it for tokens/keys/nonces is predictable. Ported from gosec G404 / eslint detect-pseudoRandomBytes concept (Apache-2.0)."}, "properties": {"repobilityId": 88840, "scanner": "repobility-threat-engine", "fingerprint": "e0c3bffb39accc49ea6ff02f6287118858c20608ed1390184d4c32833b1f4ca0", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "ivate writeFile() {\n    const tempPath = this.filePath + '.' + Math.random(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC087", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|e0c3bffb39accc49ea6ff02f6287118858c20608ed1390184d4c32833b1f4ca0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/main/utils/store.ts"}, "region": {"startLine": 17}}}]}, {"ruleId": "SEC087", "level": "warning", "message": {"text": "[SEC087] JS: weak Math.random for crypto: Math.random() is not cryptographically secure; using it for tokens/keys/nonces is predictable. Ported from gosec G404 / eslint detect-pseudoRandomBytes concept (Apache-2.0)."}, "properties": {"repobilityId": 88839, "scanner": "repobility-threat-engine", "fingerprint": "7186a0306153a119debe0f55ae0d8222e73e7fd13640c705b03df7d404842142", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "key = Math.random(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC087", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|7186a0306153a119debe0f55ae0d8222e73e7fd13640c705b03df7d404842142"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/common/utils/renderer.ts"}, "region": {"startLine": 54}}}]}, {"ruleId": "SEC015", "level": "warning", "message": {"text": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable."}, "properties": {"repobilityId": 88838, "scanner": "repobility-threat-engine", "fingerprint": "86e8e309c87bb56cd3d8a412125cf9960454979679bc41d91de8fc004c93e377", "category": "crypto", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Security-sensitive keyword found nearby \u2014 weak PRNG is risky here", "evidence": {"match": "key = Math.random", "reason": "Security-sensitive keyword found nearby \u2014 weak PRNG is risky here", "rule_id": "SEC015", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|crypto|token|54|sec015"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/common/utils/renderer.ts"}, "region": {"startLine": 54}}}]}, {"ruleId": "SEC045", "level": "warning", "message": {"text": "[SEC045] eval()/exec() on stored or user-supplied data: eval() and exec() on data \u2014 even admin-stored data \u2014 is a lateral-movement vector after any one credential compromise. Sandboxes (__builtins__ cleared) are escapable: attackers use object introspection (().__class__.__mro__[-1].__subclasses__()) to reach os.system. CWE-95 (eval injection)."}, "properties": {"repobilityId": 88828, "scanner": "repobility-threat-engine", "fingerprint": "96b8c97a91be97e7a8904eb4aa7d790fe7ef193cafec85aac395b6a2ccc9349f", "category": "injection", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".exec(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC045", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|injection|token|66|sec045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/main/modules/userApi/utils.ts"}, "region": {"startLine": 66}}}]}, {"ruleId": "SEC045", "level": "warning", "message": {"text": "[SEC045] eval()/exec() on stored or user-supplied data: eval() and exec() on data \u2014 even admin-stored data \u2014 is a lateral-movement vector after any one credential compromise. Sandboxes (__builtins__ cleared) are escapable: attackers use object introspection (().__class__.__mro__[-1].__subclasses__()) to reach os.system. CWE-95 (eval injection)."}, "properties": {"repobilityId": 88827, "scanner": "repobility-threat-engine", "fingerprint": "a7f6e5de5ecfa920d5626bfb1fb6156f330a19634689318e5c6b3e0e551185dc", "category": "injection", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".exec(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC045", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|injection|src/common/utils/tools.ts|20|sec045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/common/utils/tools.ts"}, "region": {"startLine": 20}}}]}, {"ruleId": "SEC045", "level": "warning", "message": {"text": "[SEC045] eval()/exec() on stored or user-supplied data: eval() and exec() on data \u2014 even admin-stored data \u2014 is a lateral-movement vector after any one credential compromise. Sandboxes (__builtins__ cleared) are escapable: attackers use object introspection (().__class__.__mro__[-1].__subclasses__()) to reach os.system. CWE-95 (eval injection)."}, "properties": {"repobilityId": 88826, "scanner": "repobility-threat-engine", "fingerprint": "f272f1a998cb6ea1150820ff617205e1e1efb35df5fa4ed935ffc3a041ecc1bd", "category": "injection", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".exec(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC045", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|injection|token|28|sec045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/common/utils/lyric-font-player/line-player.js"}, "region": {"startLine": 28}}}]}, {"ruleId": "DEPCUR-NPM", "level": "warning", "message": {"text": "npm package `vue-eslint-parser` is 1 major version(s) behind (9.4.3 -> 10.4.1)"}, "properties": {"repobilityId": 88803, "scanner": "repobility-dependency-currency", "fingerprint": "88bbe1a43f96b8a01e5022344be37647217753958428b067307adfcf3f63ca13", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "1 major version(s) behind", "signal": "currency", "cwe_ids": [], "package": "vue-eslint-parser", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "10.4.1", "correlation_key": "fp|88bbe1a43f96b8a01e5022344be37647217753958428b067307adfcf3f63ca13", "current_version": "9.4.3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "warning", "message": {"text": "npm package `rimraf` is 3 major version(s) behind (3.0.2 -> 6.1.3)"}, "properties": {"repobilityId": 88799, "scanner": "repobility-dependency-currency", "fingerprint": "3ef66d805b0fdeb17163e22ea1e7ae3ec22dfecfa8ba6f4a9398a649fe294ecd", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "3 major version(s) behind", "signal": "currency", "cwe_ids": [], "package": "rimraf", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "6.1.3", "correlation_key": "fp|3ef66d805b0fdeb17163e22ea1e7ae3ec22dfecfa8ba6f4a9398a649fe294ecd", "current_version": "3.0.2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "warning", "message": {"text": "npm package `less-loader` is 1 major version(s) behind (12.3.2 -> 13.0.0)"}, "properties": {"repobilityId": 88797, "scanner": "repobility-dependency-currency", "fingerprint": "b8b665a474c90f6b4f429bb63c5d40d7d8b51209d5018fc94582c5cbdb8b483f", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "1 major version(s) behind", "signal": "currency", "cwe_ids": [], "package": "less-loader", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "13.0.0", "correlation_key": "fp|b8b665a474c90f6b4f429bb63c5d40d7d8b51209d5018fc94582c5cbdb8b483f", "current_version": "12.3.2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "warning", "message": {"text": "npm package `eslint-webpack-plugin` is 2 major version(s) behind (4.2.0 -> 6.0.0)"}, "properties": {"repobilityId": 88796, "scanner": "repobility-dependency-currency", "fingerprint": "e858bdf630843fa7b14d05934a1d6a9ccd4e7c7b7462b555a5c6dbd01c8958e8", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "2 major version(s) behind", "signal": "currency", "cwe_ids": [], "package": "eslint-webpack-plugin", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "6.0.0", "correlation_key": "fp|e858bdf630843fa7b14d05934a1d6a9ccd4e7c7b7462b555a5c6dbd01c8958e8", "current_version": "4.2.0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "warning", "message": {"text": "npm package `eslint-plugin-vue` is 1 major version(s) behind (9.33.0 -> 10.9.2)"}, "properties": {"repobilityId": 88795, "scanner": "repobility-dependency-currency", "fingerprint": "1778fc42ecfa8d2ca5daeb7724a8c7d4b31e849d89bd279b13161fd73a25c5d5", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "1 major version(s) behind", "signal": "currency", "cwe_ids": [], "package": "eslint-plugin-vue", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "10.9.2", "correlation_key": "fp|1778fc42ecfa8d2ca5daeb7724a8c7d4b31e849d89bd279b13161fd73a25c5d5", "current_version": "9.33.0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "warning", "message": {"text": "npm package `electron-debug` is 1 major version(s) behind (3.2.0 -> 4.1.0)"}, "properties": {"repobilityId": 88794, "scanner": "repobility-dependency-currency", "fingerprint": "dfe0146423b6b815ef96948f49c8eeb786f8a20bb4df2ed7be0528299d9b7385", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "1 major version(s) behind", "signal": "currency", "cwe_ids": [], "package": "electron-debug", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "4.1.0", "correlation_key": "fp|dfe0146423b6b815ef96948f49c8eeb786f8a20bb4df2ed7be0528299d9b7385", "current_version": "3.2.0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "warning", "message": {"text": "npm package `del` is 2 major version(s) behind (6.1.1 -> 8.0.1)"}, "properties": {"repobilityId": 88793, "scanner": "repobility-dependency-currency", "fingerprint": "92deef05900d0bb731d176cf8109f5714b2fa2c51cff5306cb97d4b111e691f5", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "2 major version(s) behind", "signal": "currency", "cwe_ids": [], "package": "del", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "8.0.1", "correlation_key": "fp|92deef05900d0bb731d176cf8109f5714b2fa2c51cff5306cb97d4b111e691f5", "current_version": "6.1.1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "warning", "message": {"text": "npm package `chalk` is 4 major version(s) behind (1.1.3 -> 5.6.2)"}, "properties": {"repobilityId": 88791, "scanner": "repobility-dependency-currency", "fingerprint": "4086dd770a0b867d3d6e8f99e52b082029b2691970d31a3035c730880a5d3184", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "4 major version(s) behind", "signal": "currency", "cwe_ids": [], "package": "chalk", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "5.6.2", "correlation_key": "fp|4086dd770a0b867d3d6e8f99e52b082029b2691970d31a3035c730880a5d3184", "current_version": "1.1.3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "warning", "message": {"text": "npm package `vue-router` is 1 major version(s) behind (4.5.1 -> 5.1.0)"}, "properties": {"repobilityId": 88787, "scanner": "repobility-dependency-currency", "fingerprint": "cadff0c15e9190068185af71f21d940ad37256f704599da0a117392b00b0c2c9", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "1 major version(s) behind", "signal": "currency", "cwe_ids": [], "package": "vue-router", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "5.1.0", "correlation_key": "fp|cadff0c15e9190068185af71f21d940ad37256f704599da0a117392b00b0c2c9", "current_version": "4.5.1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "warning", "message": {"text": "npm package `undici` is 2 major version(s) behind (6.25.0 -> 8.3.0)"}, "properties": {"repobilityId": 88786, "scanner": "repobility-dependency-currency", "fingerprint": "1433b773a571d53c3016c65b9e3b02c98e70b5e963d2d1b36cb01982dc23b1f6", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "2 major version(s) behind", "signal": "currency", "cwe_ids": [], "package": "undici", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "8.3.0", "correlation_key": "fp|1433b773a571d53c3016c65b9e3b02c98e70b5e963d2d1b36cb01982dc23b1f6", "current_version": "6.25.0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "warning", "message": {"text": "npm package `message2call` is 2 major version(s) behind (0.1.3 -> 2.0.3)"}, "properties": {"repobilityId": 88785, "scanner": "repobility-dependency-currency", "fingerprint": "588cb4664b2d36272a473b327537d1c60be664ee1ad2b7b00f6484a58f2b2968", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "2 major version(s) behind", "signal": "currency", "cwe_ids": [], "package": "message2call", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "2.0.3", "correlation_key": "fp|588cb4664b2d36272a473b327537d1c60be664ee1ad2b7b00f6484a58f2b2968", "current_version": "0.1.3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "warning", "message": {"text": "npm package `image-size` is 1 major version(s) behind (1.2.1 -> 2.0.2)"}, "properties": {"repobilityId": 88784, "scanner": "repobility-dependency-currency", "fingerprint": "fd373163178b0c0b2f11a5bece21e32fdf784a2b3bc1356d34d4dfbedbfab9cb", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "1 major version(s) behind", "signal": "currency", "cwe_ids": [], "package": "image-size", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "2.0.2", "correlation_key": "fp|fd373163178b0c0b2f11a5bece21e32fdf784a2b3bc1356d34d4dfbedbfab9cb", "current_version": "1.2.1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "WEB011", "level": "note", "message": {"text": "Public web app has no humans.txt"}, "properties": {"repobilityId": 88884, "scanner": "repobility-web-presence", "fingerprint": "bdd551fbe1ab6405480e0d5755632562c2096cb9e9a6a071ef60e4c27a6873f1", "category": "quality", "severity": "low", "confidence": 0.5, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Repository looks like a public web app but no humans.txt file or route was discovered.", "evidence": {"rule_id": "WEB011", "scanner": "repobility-web-presence", "references": ["https://github.com/Lissy93/web-check"], "correlation_key": "fp|bdd551fbe1ab6405480e0d5755632562c2096cb9e9a6a071ef60e4c27a6873f1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "humans.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "WEB008", "level": "note", "message": {"text": "Public docs site has no llms.txt"}, "properties": {"repobilityId": 88883, "scanner": "repobility-web-presence", "fingerprint": "cdce8ed8706710d39c3e7272dad572dd639cff74fd3d2ac62d8f6f522b891d76", "category": "quality", "severity": "low", "confidence": 0.64, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Repository looks public and documentation-heavy but no llms.txt file or route was discovered.", "evidence": {"rule_id": "WEB008", "scanner": "repobility-web-presence", "references": ["https://llmstxt.org/"], "correlation_key": "fp|cdce8ed8706710d39c3e7272dad572dd639cff74fd3d2ac62d8f6f522b891d76"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "llms.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "WEB002", "level": "note", "message": {"text": "Public web app has no sitemap"}, "properties": {"repobilityId": 88882, "scanner": "repobility-web-presence", "fingerprint": "fccbe72d13ca3ba9197ec37b0daa0802fb6d5ebff54b3eb9f09b59b0f8d0acdf", "category": "quality", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Repository looks like a public web app but no sitemap file or route was discovered.", "evidence": {"rule_id": "WEB002", "scanner": "repobility-web-presence", "references": ["https://www.sitemaps.org/protocol.html", "https://github.com/Lissy93/web-check"], "correlation_key": "fp|fccbe72d13ca3ba9197ec37b0daa0802fb6d5ebff54b3eb9f09b59b0f8d0acdf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "sitemap.xml"}, "region": {"startLine": 1}}}]}, {"ruleId": "WEB001", "level": "note", "message": {"text": "Public web app has no robots.txt"}, "properties": {"repobilityId": 88881, "scanner": "repobility-web-presence", "fingerprint": "cae3f2223945958e14d8eb90f7965fa26b47011cc5be29c2855a4054937e29c4", "category": "quality", "severity": "low", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Repository looks like a public web app but no robots.txt file or route was discovered.", "evidence": {"rule_id": "WEB001", "scanner": "repobility-web-presence", "references": ["https://www.rfc-editor.org/rfc/rfc9309", "https://github.com/Lissy93/web-check"], "correlation_key": "fp|cae3f2223945958e14d8eb90f7965fa26b47011cc5be29c2855a4054937e29c4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "robots.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "note", "message": {"text": "npm package `ts-loader` is minor version(s) behind (9.5.7 -> 9.6.0)"}, "properties": {"repobilityId": 88802, "scanner": "repobility-dependency-currency", "fingerprint": "25f7e7f3057a0f90da0362498b23354a3da97b27ba3c5191e3c45a2c7913507c", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": [], "package": "ts-loader", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "9.6.0", "correlation_key": "fp|25f7e7f3057a0f90da0362498b23354a3da97b27ba3c5191e3c45a2c7913507c", "current_version": "9.5.7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "note", "message": {"text": "npm package `terser-webpack-plugin` is minor version(s) behind (5.5.0 -> 5.6.1)"}, "properties": {"repobilityId": 88801, "scanner": "repobility-dependency-currency", "fingerprint": "7dc7291eaa27aacdcfde1d1851181c6258dae763ae7fd8500d4af94c1fdd571e", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": [], "package": "terser-webpack-plugin", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "5.6.1", "correlation_key": "fp|7dc7291eaa27aacdcfde1d1851181c6258dae763ae7fd8500d4af94c1fdd571e", "current_version": "5.5.0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "note", "message": {"text": "npm package `terser` is minor version(s) behind (5.46.2 -> 5.48.0)"}, "properties": {"repobilityId": 88800, "scanner": "repobility-dependency-currency", "fingerprint": "f7a1f60060e4562b83607c11c0c2b1570ee45196bf4ecdd481c04e92d59628d0", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": [], "package": "terser", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "5.48.0", "correlation_key": "fp|f7a1f60060e4562b83607c11c0c2b1570ee45196bf4ecdd481c04e92d59628d0", "current_version": "5.46.2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "note", "message": {"text": "npm package `core-js` is minor version(s) behind (3.37.0 -> 3.49.0)"}, "properties": {"repobilityId": 88792, "scanner": "repobility-dependency-currency", "fingerprint": "42391933a458a3f6e7bffab3a712bb2cff701101f9f80b6ca3480649eaa9f57c", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": [], "package": "core-js", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "3.49.0", "correlation_key": "fp|42391933a458a3f6e7bffab3a712bb2cff701101f9f80b6ca3480649eaa9f57c", "current_version": "3.37.0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "note", "message": {"text": "npm package `@vue/language-plugin-pug` is minor version(s) behind (3.2.7 -> 3.3.3)"}, "properties": {"repobilityId": 88790, "scanner": "repobility-dependency-currency", "fingerprint": "681be273efbca78e251778d9c1907ecd92a303079f8ae581d919a962aea23d65", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": [], "package": "@vue/language-plugin-pug", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "3.3.3", "correlation_key": "fp|681be273efbca78e251778d9c1907ecd92a303079f8ae581d919a962aea23d65", "current_version": "3.2.7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "note", "message": {"text": "npm package `@types/ws` is minor version(s) behind (8.5.4 -> 8.18.1)"}, "properties": {"repobilityId": 88789, "scanner": "repobility-dependency-currency", "fingerprint": "ff1d0711f39b8d3c486ce8ad10a71ec5edd551244d45b4af785ee9bf3c78b339", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": [], "package": "@types/ws", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "8.18.1", "correlation_key": "fp|ff1d0711f39b8d3c486ce8ad10a71ec5edd551244d45b4af785ee9bf3c78b339", "current_version": "8.5.4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "note", "message": {"text": "npm package `ws` is minor version(s) behind (8.20.0 -> 8.21.0)"}, "properties": {"repobilityId": 88788, "scanner": "repobility-dependency-currency", "fingerprint": "c556ecc94930c6fc1c53f0b1287c2053dba6905c5443d13730e704487e0f97c8", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": [], "package": "ws", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "8.21.0", "correlation_key": "fp|c556ecc94930c6fc1c53f0b1287c2053dba6905c5443d13730e704487e0f97c8", "current_version": "8.20.0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "note", "message": {"text": "npm package `iconv-lite` is minor version(s) behind (0.4.24 -> 0.7.2)"}, "properties": {"repobilityId": 88783, "scanner": "repobility-dependency-currency", "fingerprint": "ed0938be7385ec5ea73973441b1b74fb0854f667cf2c9181e8b45937d5b0aec8", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": [], "package": "iconv-lite", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "0.7.2", "correlation_key": "fp|ed0938be7385ec5ea73973441b1b74fb0854f667cf2c9181e8b45937d5b0aec8", "current_version": "0.4.24"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "note", "message": {"text": "npm package `font-list` is minor version(s) behind (2.0.2 -> 2.1.0)"}, "properties": {"repobilityId": 88782, "scanner": "repobility-dependency-currency", "fingerprint": "960f5eeccc5739a43363ecccd1f74ae7d9d3dedd58fc03bc830b5304e3b204f3", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": [], "package": "font-list", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "2.1.0", "correlation_key": "fp|960f5eeccc5739a43363ecccd1f74ae7d9d3dedd58fc03bc830b5304e3b204f3", "current_version": "2.0.2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "note", "message": {"text": "npm package `comlink` is minor version(s) behind (4.3.1 -> 4.4.2)"}, "properties": {"repobilityId": 88780, "scanner": "repobility-dependency-currency", "fingerprint": "45451dc8ffcafe96ad8aad9473112b73a84623283ffc2d496214402be63e29dd", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": [], "package": "comlink", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "4.4.2", "correlation_key": "fp|45451dc8ffcafe96ad8aad9473112b73a84623283ffc2d496214402be63e29dd", "current_version": "4.3.1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "note", "message": {"text": "npm package `better-sqlite3` is minor version(s) behind (12.9.0 -> 12.10.0)"}, "properties": {"repobilityId": 88779, "scanner": "repobility-dependency-currency", "fingerprint": "bee66156f93cc50f6a9fd9af70d05445750d0f066623ee774d04a36b337059df", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": [], "package": "better-sqlite3", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "12.10.0", "correlation_key": "fp|bee66156f93cc50f6a9fd9af70d05445750d0f066623ee774d04a36b337059df", "current_version": "12.9.0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88749, "scanner": "repobility-ai-code-hygiene", "fingerprint": "ac1b721fa17a89c0ef4433376d2c94b4e0de5ead9a962b322aa550c369e21fee", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "src/renderer/components/layout/PlayBar/FullWidthProgress.vue", "duplicate_line": 6, "correlation_key": "fp|ac1b721fa17a89c0ef4433376d2c94b4e0de5ead9a962b322aa550c369e21fee"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/components/layout/PlayBar/MiddleWidthProgress.vue"}, "region": {"startLine": 3}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88748, "scanner": "repobility-ai-code-hygiene", "fingerprint": "5844cbee4b5ccead2e8350722db388a8dd762906f8589741077d08438270aa0c", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "src/renderer-lyric/components/index.js", "duplicate_line": 1, "correlation_key": "fp|5844cbee4b5ccead2e8350722db388a8dd762906f8589741077d08438270aa0c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/components/index.js"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88747, "scanner": "repobility-ai-code-hygiene", "fingerprint": "0c0be537b08ed7f90818a752a8d8eb85e06bd46f145cf0b10c741092ce8e5dbe", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "src/renderer/components/common/SoundEffectBtn/index.vue", "duplicate_line": 48, "correlation_key": "fp|0c0be537b08ed7f90818a752a8d8eb85e06bd46f145cf0b10c741092ce8e5dbe"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/components/common/VolumeBtn.vue"}, "region": {"startLine": 55}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88746, "scanner": "repobility-ai-code-hygiene", "fingerprint": "e3684671796dbe9e8e0cc6a04df56c6850abd0498c46173e510c7d5959316b3a", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "src/renderer/components/common/PlaybackRateBtn.vue", "duplicate_line": 36, "correlation_key": "fp|e3684671796dbe9e8e0cc6a04df56c6850abd0498c46173e510c7d5959316b3a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/components/common/VolumeBtn.vue"}, "region": {"startLine": 45}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88745, "scanner": "repobility-ai-code-hygiene", "fingerprint": "642944cb71a3008f330998304c92c9a0ad245caf77c4d53287311af0b5623a5e", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "src/renderer/components/common/SoundEffectBtn/index.vue", "duplicate_line": 48, "correlation_key": "fp|642944cb71a3008f330998304c92c9a0ad245caf77c4d53287311af0b5623a5e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/components/common/TogglePlayModeBtn.vue"}, "region": {"startLine": 98}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88744, "scanner": "repobility-ai-code-hygiene", "fingerprint": "1386a3c1f0a426013742284183783c4efec04b9ca19428574172c3d012744cdf", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "src/renderer/components/common/PlaybackRateBtn.vue", "duplicate_line": 35, "correlation_key": "fp|1386a3c1f0a426013742284183783c4efec04b9ca19428574172c3d012744cdf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/components/common/TogglePlayModeBtn.vue"}, "region": {"startLine": 87}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88743, "scanner": "repobility-ai-code-hygiene", "fingerprint": "fb6a842b14b1215d0f5e62319c59b987bd5029a95bd972cc469c134ca7e53ef3", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "src/renderer/components/common/PlaybackRateBtn.vue", "duplicate_line": 43, "correlation_key": "fp|fb6a842b14b1215d0f5e62319c59b987bd5029a95bd972cc469c134ca7e53ef3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/components/common/SoundEffectBtn/index.vue"}, "region": {"startLine": 45}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88742, "scanner": "repobility-ai-code-hygiene", "fingerprint": "0cfde350e00d923507d7a862d9479da40a4c76450ae40871af7981b70c9fba55", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "src/renderer/components/common/SoundEffectBtn/AudioConvolution.vue", "duplicate_line": 126, "correlation_key": "fp|0cfde350e00d923507d7a862d9479da40a4c76450ae40871af7981b70c9fba55"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/components/common/SoundEffectBtn/PitchShifter.vue"}, "region": {"startLine": 76}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88741, "scanner": "repobility-ai-code-hygiene", "fingerprint": "212f30b32724f21b92a58046a4370dcbdc5e1294d4f1e511384882cbb51f2cc4", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "src/renderer/components/common/SoundEffectBtn/AudioPanner.vue", "duplicate_line": 52, "correlation_key": "fp|212f30b32724f21b92a58046a4370dcbdc5e1294d4f1e511384882cbb51f2cc4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/components/common/SoundEffectBtn/PitchShifter.vue"}, "region": {"startLine": 50}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88740, "scanner": "repobility-ai-code-hygiene", "fingerprint": "4207c4b5be01e5a6db1c25dfb82318ec4bb7051ed47e43a8f3adf2867831d078", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "src/renderer/components/common/SoundEffectBtn/AudioPanner.vue", "duplicate_line": 91, "correlation_key": "fp|4207c4b5be01e5a6db1c25dfb82318ec4bb7051ed47e43a8f3adf2867831d078"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/components/common/SoundEffectBtn/BiquadFilter.vue"}, "region": {"startLine": 129}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88739, "scanner": "repobility-ai-code-hygiene", "fingerprint": "ee7f402e565289960f6fa56530e4dcecaf6fbacd3adfbcd72e3f5e97e8f4f3b2", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "src/renderer/components/common/SoundEffectBtn/AudioConvolution.vue", "duplicate_line": 126, "correlation_key": "fp|ee7f402e565289960f6fa56530e4dcecaf6fbacd3adfbcd72e3f5e97e8f4f3b2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/components/common/SoundEffectBtn/AudioPanner.vue"}, "region": {"startLine": 78}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88738, "scanner": "repobility-ai-code-hygiene", "fingerprint": "cc5ab79f92716caedda93308cce157fd9df823636ed6b865245bc3f3da5e5089", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "src/renderer/components/common/SoundEffectBtn/AddConvolutionPresetBtn.vue", "duplicate_line": 17, "correlation_key": "fp|cc5ab79f92716caedda93308cce157fd9df823636ed6b865245bc3f3da5e5089"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/components/common/SoundEffectBtn/AddEQPresetBtn.vue"}, "region": {"startLine": 11}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88737, "scanner": "repobility-ai-code-hygiene", "fingerprint": "4d025467e84d548d56d22ad3a8c6a8a9a7510f5cc7bbc44f8b26c1eed9ad7fc6", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "src/renderer/components/common/ListAddModal.vue", "duplicate_line": 7, "correlation_key": "fp|4d025467e84d548d56d22ad3a8c6a8a9a7510f5cc7bbc44f8b26c1eed9ad7fc6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/components/common/ListAddMultipleModal.vue"}, "region": {"startLine": 7}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88736, "scanner": "repobility-ai-code-hygiene", "fingerprint": "6a4ece4658e0ba70428b3f476741993e1af1c5e5195eaa7d28121e5dd4aa6d9f", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "src/renderer/components/common/DownloadModal.vue", "duplicate_line": 79, "correlation_key": "fp|6a4ece4658e0ba70428b3f476741993e1af1c5e5195eaa7d28121e5dd4aa6d9f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/components/common/DownloadMultipleModal.vue"}, "region": {"startLine": 48}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88735, "scanner": "repobility-ai-code-hygiene", "fingerprint": "5a2743425ebb35f55583a70553b81fae2e88be0f09a215a25988dbd08f0aa0b5", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "src/renderer-lyric/components/common/AudioVisualizer.vue", "duplicate_line": 22, "correlation_key": "fp|5a2743425ebb35f55583a70553b81fae2e88be0f09a215a25988dbd08f0aa0b5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/components/common/AudioVisualizer.vue"}, "region": {"startLine": 25}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88734, "scanner": "repobility-ai-code-hygiene", "fingerprint": "a09367de8c97f08b25064a6d6a21b647178823b8f20b6334adfd7d36e1f2918d", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "src/renderer/components/base/MusicList.vue", "duplicate_line": 7, "correlation_key": "fp|a09367de8c97f08b25064a6d6a21b647178823b8f20b6334adfd7d36e1f2918d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/components/base/VirtualizedList.vue"}, "region": {"startLine": 13}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88733, "scanner": "repobility-ai-code-hygiene", "fingerprint": "bbc53a7db8e4c86efc701bb49959a9a2e10e089b471e93d9c0ed81526d43f296", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "src/renderer-lyric/components/layout/LyricHorizontal/useLyric.js", "duplicate_line": 108, "correlation_key": "fp|bbc53a7db8e4c86efc701bb49959a9a2e10e089b471e93d9c0ed81526d43f296"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer-lyric/components/layout/useDrag.js"}, "region": {"startLine": 38}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88732, "scanner": "repobility-ai-code-hygiene", "fingerprint": "57aaa26efd33ba168126eb5765444eebb4af3fa7b2eb8e6a57107b850ddc9489", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "src/renderer-lyric/components/layout/LyricHorizontal/useLyric.js", "duplicate_line": 46, "correlation_key": "fp|57aaa26efd33ba168126eb5765444eebb4af3fa7b2eb8e6a57107b850ddc9489"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer-lyric/components/layout/LyricVertical/useLyric.js"}, "region": {"startLine": 46}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88731, "scanner": "repobility-ai-code-hygiene", "fingerprint": "20c35d2a1c94e35455135a86ef0ca28292fac032f62b97db30f8bf5a632f5ec7", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "src/renderer-lyric/components/layout/LyricHorizontal/index.vue", "duplicate_line": 1, "correlation_key": "fp|20c35d2a1c94e35455135a86ef0ca28292fac032f62b97db30f8bf5a632f5ec7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer-lyric/components/layout/LyricVertical/index.vue"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88730, "scanner": "repobility-ai-code-hygiene", "fingerprint": "885de00c33c25f951366e5cc00aeacffe95e8abe9a1e11c02723b14a21f06182", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "src/main/modules/sync/server/utils/tools.ts", "duplicate_line": 23, "correlation_key": "fp|885de00c33c25f951366e5cc00aeacffe95e8abe9a1e11c02723b14a21f06182"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/main/modules/sync/utils.ts"}, "region": {"startLine": 25}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88729, "scanner": "repobility-ai-code-hygiene", "fingerprint": "e75591714d21d59b2854668e302467ff1990f4f51e562c50542e5af6f86015f8", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "src/main/modules/sync/server/modules/dislike/sync/sync.ts", "duplicate_line": 170, "correlation_key": "fp|e75591714d21d59b2854668e302467ff1990f4f51e562c50542e5af6f86015f8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/main/modules/sync/server/modules/list/sync/sync.ts"}, "region": {"startLine": 359}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88728, "scanner": "repobility-ai-code-hygiene", "fingerprint": "cbd1eebe3b17ea7561aa45c9fc24c48f4ed49a4500e9e04ed700a6b0f0398b94", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "src/main/modules/sync/server/modules/dislike/snapshotDataManage.ts", "duplicate_line": 17, "correlation_key": "fp|cbd1eebe3b17ea7561aa45c9fc24c48f4ed49a4500e9e04ed700a6b0f0398b94"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/main/modules/sync/server/modules/list/snapshotDataManage.ts"}, "region": {"startLine": 17}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88727, "scanner": "repobility-ai-code-hygiene", "fingerprint": "a264c4f8d5da2cd19bbb929c062a9c264c45b4209573f0359787dcf529dff318", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "src/main/modules/sync/server/modules/dislike/manage.ts", "duplicate_line": 13, "correlation_key": "fp|a264c4f8d5da2cd19bbb929c062a9c264c45b4209573f0359787dcf529dff318"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/main/modules/sync/server/modules/list/manage.ts"}, "region": {"startLine": 13}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88726, "scanner": "repobility-ai-code-hygiene", "fingerprint": "3421d1a68e7f31c1b6843c6edb3d0e0ecd8d0a63151b669bde70658533144af5", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "src/common/utils/request.ts", "duplicate_line": 6, "correlation_key": "fp|3421d1a68e7f31c1b6843c6edb3d0e0ecd8d0a63151b669bde70658533144af5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/common/utils/request_node16.ts"}, "region": {"startLine": 5}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88725, "scanner": "repobility-ai-code-hygiene", "fingerprint": "369839a14440b101eeeeb01ca837ec3a36f266f2441fd5885082a4acdde74441", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "src/common/utils/musicMeta/flac-metadata/lib/MetaDataBlockPicture.js", "duplicate_line": 46, "correlation_key": "fp|369839a14440b101eeeeb01ca837ec3a36f266f2441fd5885082a4acdde74441"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/common/utils/musicMeta/flac-metadata/lib/MetaDataBlockVorbisComment.js"}, "region": {"startLine": 30}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88724, "scanner": "repobility-ai-code-hygiene", "fingerprint": "8770f64e7c4883a78d7e7b078dc60ecca60ef16489122d3c91d8d603eca98490", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "build-config/renderer-lyric/webpack.config.dev.js", "duplicate_line": 5, "correlation_key": "fp|8770f64e7c4883a78d7e7b078dc60ecca60ef16489122d3c91d8d603eca98490"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "build-config/renderer/webpack.config.dev.js"}, "region": {"startLine": 9}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88723, "scanner": "repobility-ai-code-hygiene", "fingerprint": "883709f400b7b6a5453c4b04b78150ef9533d8a04f343436eea508de37605e46", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "build-config/renderer-lyric/webpack.config.base.js", "duplicate_line": 13, "correlation_key": "fp|883709f400b7b6a5453c4b04b78150ef9533d8a04f343436eea508de37605e46"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "build-config/renderer/webpack.config.base.js"}, "region": {"startLine": 13}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88722, "scanner": "repobility-ai-code-hygiene", "fingerprint": "270564f769ab6d2c3517474fd3994996464f24c8801ac87dda8234cff135cd78", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "build-config/renderer-lyric/webpack.config.prod.js", "duplicate_line": 3, "correlation_key": "fp|270564f769ab6d2c3517474fd3994996464f24c8801ac87dda8234cff135cd78"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "build-config/renderer-scripts/webpack.config.prod.js"}, "region": {"startLine": 2}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88721, "scanner": "repobility-ai-code-hygiene", "fingerprint": "1f7fa1a3a9fa1315a14d6663b9ce25132c46b00e0e77eddba98092cb459492b3", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "build-config/renderer-lyric/webpack.config.dev.js", "duplicate_line": 1, "correlation_key": "fp|1f7fa1a3a9fa1315a14d6663b9ce25132c46b00e0e77eddba98092cb459492b3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "build-config/renderer-scripts/webpack.config.dev.js"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 88720, "scanner": "repobility-ai-code-hygiene", "fingerprint": "355c3adaddcef6f2bae5e4aa3e69a19b3f5336c87cd05149e3777edf0bf09bde", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "build-config/renderer-lyric/webpack.config.base.js", "duplicate_line": 13, "correlation_key": "fp|355c3adaddcef6f2bae5e4aa3e69a19b3f5336c87cd05149e3777edf0bf09bde"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "build-config/renderer-scripts/webpack.config.base.js"}, "region": {"startLine": 7}}}]}, {"ruleId": "AIC002", "level": "note", "message": {"text": "Source file name looks like an AI patch artifact"}, "properties": {"repobilityId": 88719, "scanner": "repobility-ai-code-hygiene", "fingerprint": "5d880be3d0c1151af82d2a4347099102d916d944eb92d6073eea1ba25bb5d1be", "category": "quality", "severity": "low", "confidence": 0.62, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Source filename contains a temporary or patch-style suffix.", "evidence": {"suffix": "old", "rule_id": "AIC002", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195"], "correlation_key": "fp|5d880be3d0c1151af82d2a4347099102d916d944eb92d6073eea1ba25bb5d1be"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/utils/musicSdk/mg/temp/leaderboard-old.js"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC002", "level": "note", "message": {"text": "Source file name looks like an AI patch artifact"}, "properties": {"repobilityId": 88718, "scanner": "repobility-ai-code-hygiene", "fingerprint": "3426753ce8881439130b35b59daa69689807d47707686a017e70a071ad246296", "category": "quality", "severity": "low", "confidence": 0.62, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Source filename contains a temporary or patch-style suffix.", "evidence": {"suffix": "temp", "rule_id": "AIC002", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195"], "correlation_key": "fp|3426753ce8881439130b35b59daa69689807d47707686a017e70a071ad246296"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/utils/musicSdk/kw/api-temp.js"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC002", "level": "note", "message": {"text": "Source file name looks like an AI patch artifact"}, "properties": {"repobilityId": 88717, "scanner": "repobility-ai-code-hygiene", "fingerprint": "8bfb3059f853a8ea189293ac0e65f38952c262a4d4b0695220edbeeb822beb9a", "category": "quality", "severity": "low", "confidence": 0.62, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Source filename contains a temporary or patch-style suffix.", "evidence": {"suffix": "new", "rule_id": "AIC002", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195"], "correlation_key": "fp|8bfb3059f853a8ea189293ac0e65f38952c262a4d4b0695220edbeeb822beb9a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/utils/musicSdk/kg/temp/songList-new.js"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC002", "level": "note", "message": {"text": "Source file name looks like an AI patch artifact"}, "properties": {"repobilityId": 88716, "scanner": "repobility-ai-code-hygiene", "fingerprint": "cfbe2e61ce74f8428b0f50cac336f3a22a1f773be26da08f8a8410fefccbc5df", "category": "quality", "severity": "low", "confidence": 0.62, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Source filename contains a temporary or patch-style suffix.", "evidence": {"suffix": "new", "rule_id": "AIC002", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195"], "correlation_key": "fp|cfbe2e61ce74f8428b0f50cac336f3a22a1f773be26da08f8a8410fefccbc5df"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/utils/musicSdk/kg/temp/musicSearch-new.js"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC002", "level": "note", "message": {"text": "Source file name looks like an AI patch artifact"}, "properties": {"repobilityId": 88715, "scanner": "repobility-ai-code-hygiene", "fingerprint": "26741d089a56a913e7deb9413a2ad13cf6c11afd4ccb733dce052d2ce775773f", "category": "quality", "severity": "low", "confidence": 0.62, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Source filename contains a temporary or patch-style suffix.", "evidence": {"suffix": "update", "rule_id": "AIC002", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195"], "correlation_key": "fp|26741d089a56a913e7deb9413a2ad13cf6c11afd4ccb733dce052d2ce775773f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "build-config/lib-update.js"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion (and 8 more): Same pattern found in 8 additional files. Review if needed."}, "properties": {"repobilityId": 88854, "scanner": "repobility-threat-engine", "fingerprint": "3fe8d33e128ffadbccce73f2652100ccfed6103ba34fda2f795c803e2dd7cf38", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 8 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "ts-non-null-assertion", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348005+00:00", "triaged_in_corpus": 12, "observations_count": 1810954, "ai_coder_pattern_id": 105}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|3fe8d33e128ffadbccce73f2652100ccfed6103ba34fda2f795c803e2dd7cf38", "aggregated_count": 8}}}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 88853, "scanner": "repobility-threat-engine", "fingerprint": "02565d2a5c7db38d489e63afa2eaf36751cb2f60c4bc52c04faea4019fc2f554", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-non-null-assertion", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348005+00:00", "triaged_in_corpus": 12, "observations_count": 1810954, "ai_coder_pattern_id": 105}, "scanner": "repobility-threat-engine", "correlation_key": "fp|02565d2a5c7db38d489e63afa2eaf36751cb2f60c4bc52c04faea4019fc2f554"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/main/modules/userApi/utils.ts"}, "region": {"startLine": 10}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 88852, "scanner": "repobility-threat-engine", "fingerprint": "4f1a58bd3bf0cfb80918eab765baf1de91165f10b8478f00c22eea20aa342aaf", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-non-null-assertion", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348005+00:00", "triaged_in_corpus": 12, "observations_count": 1810954, "ai_coder_pattern_id": 105}, "scanner": "repobility-threat-engine", "correlation_key": "fp|4f1a58bd3bf0cfb80918eab765baf1de91165f10b8478f00c22eea20aa342aaf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/main/modules/sync/server/server/server.ts"}, "region": {"startLine": 48}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 88851, "scanner": "repobility-threat-engine", "fingerprint": "e6eb96a32c068a93cfdff34d71b0640de5d63d555aca4f098a77b6b68e502c16", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-non-null-assertion", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348005+00:00", "triaged_in_corpus": 12, "observations_count": 1810954, "ai_coder_pattern_id": 105}, "scanner": "repobility-threat-engine", "correlation_key": "fp|e6eb96a32c068a93cfdff34d71b0640de5d63d555aca4f098a77b6b68e502c16"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/main/modules/sync/client/client.ts"}, "region": {"startLine": 169}}}]}, {"ruleId": "MINED054", "level": "none", "message": {"text": "[MINED054] Ts As Any (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "properties": {"repobilityId": 88849, "scanner": "repobility-threat-engine", "fingerprint": "9538f1e64abc06611cb760d4cf74131bb8d1179208b0f6494ae6336a088ba74b", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 2 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "ts-as-any", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348028+00:00", "triaged_in_corpus": 12, "observations_count": 341218, "ai_coder_pattern_id": 98}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|9538f1e64abc06611cb760d4cf74131bb8d1179208b0f6494ae6336a088ba74b", "aggregated_count": 2}}}, {"ruleId": "MINED054", "level": "none", "message": {"text": "[MINED054] Ts As Any: Casting to any (as any) bypasses type checking entirely."}, "properties": {"repobilityId": 88848, "scanner": "repobility-threat-engine", "fingerprint": "f48ab18ed2e1dc8909487fad135b60235484d5f23f7a70d4f691e9820e48c8be", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-as-any", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348028+00:00", "triaged_in_corpus": 12, "observations_count": 341218, "ai_coder_pattern_id": 98}, "scanner": "repobility-threat-engine", "correlation_key": "fp|f48ab18ed2e1dc8909487fad135b60235484d5f23f7a70d4f691e9820e48c8be"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/core/useApp/useDeeplink/index.ts"}, "region": {"startLine": 47}}}]}, {"ruleId": "MINED054", "level": "none", "message": {"text": "[MINED054] Ts As Any: Casting to any (as any) bypasses type checking entirely."}, "properties": {"repobilityId": 88847, "scanner": "repobility-threat-engine", "fingerprint": "14c46afda3c92060085f56d31c666f86a2d7c50ff830e220bf401c06b1baf032", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-as-any", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348028+00:00", "triaged_in_corpus": 12, "observations_count": 341218, "ai_coder_pattern_id": 98}, "scanner": "repobility-threat-engine", "correlation_key": "fp|14c46afda3c92060085f56d31c666f86a2d7c50ff830e220bf401c06b1baf032"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/main/modules/winMain/rendererEvent/data.ts"}, "region": {"startLine": 8}}}]}, {"ruleId": "MINED054", "level": "none", "message": {"text": "[MINED054] Ts As Any: Casting to any (as any) bypasses type checking entirely."}, "properties": {"repobilityId": 88846, "scanner": "repobility-threat-engine", "fingerprint": "b4ed1bf5c1f533dab43c9c3cc346e2a19b47d4339b218edfcd771b1b3a2ed7bd", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-as-any", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348028+00:00", "triaged_in_corpus": 12, "observations_count": 341218, "ai_coder_pattern_id": 98}, "scanner": "repobility-threat-engine", "correlation_key": "fp|b4ed1bf5c1f533dab43c9c3cc346e2a19b47d4339b218edfcd771b1b3a2ed7bd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/common/utils/tools.ts"}, "region": {"startLine": 29}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https (and 40 more): Same pattern found in 40 additional files. Review if needed."}, "properties": {"repobilityId": 88845, "scanner": "repobility-threat-engine", "fingerprint": "66e658aa908d93209562eccc7e123840be761cea4501faa7edb1d5b67800eb93", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 40 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "http-not-https", "owasp": "A02:2021", "cwe_ids": ["CWE-319"], "precision": 0.917, "promoted_at": "2026-05-18T14:01:32.347999+00:00", "triaged_in_corpus": 12, "observations_count": 4113831, "ai_coder_pattern_id": 15}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|66e658aa908d93209562eccc7e123840be761cea4501faa7edb1d5b67800eb93", "aggregated_count": 40}}}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 88844, "scanner": "repobility-threat-engine", "fingerprint": "f5a22013410255de0334a947c80ed8da3011791e027d970ce4a70b4a0d62e1a3", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "http-not-https", "owasp": "A02:2021", "cwe_ids": ["CWE-319"], "precision": 0.917, "promoted_at": "2026-05-18T14:01:32.347999+00:00", "triaged_in_corpus": 12, "observations_count": 4113831, "ai_coder_pattern_id": 15}, "scanner": "repobility-threat-engine", "correlation_key": "fp|f5a22013410255de0334a947c80ed8da3011791e027d970ce4a70b4a0d62e1a3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/main/modules/sync/server/server/server.ts"}, "region": {"startLine": 315}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 88843, "scanner": "repobility-threat-engine", "fingerprint": "5e06e7a5acc5302bbf86e9fa03f60b0864955c8a04df0a48ca392e1042e5091c", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "http-not-https", "owasp": "A02:2021", "cwe_ids": ["CWE-319"], "precision": 0.917, "promoted_at": "2026-05-18T14:01:32.347999+00:00", "triaged_in_corpus": 12, "observations_count": 4113831, "ai_coder_pattern_id": 15}, "scanner": "repobility-threat-engine", "correlation_key": "fp|5e06e7a5acc5302bbf86e9fa03f60b0864955c8a04df0a48ca392e1042e5091c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/common/utils/request_node16.ts"}, "region": {"startLine": 33}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 88842, "scanner": "repobility-threat-engine", "fingerprint": "dd275ac7a6611d65985fca4d77b646992c0303e57fed19ada667573611bf93e6", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "http-not-https", "owasp": "A02:2021", "cwe_ids": ["CWE-319"], "precision": 0.917, "promoted_at": "2026-05-18T14:01:32.347999+00:00", "triaged_in_corpus": 12, "observations_count": 4113831, "ai_coder_pattern_id": 15}, "scanner": "repobility-threat-engine", "correlation_key": "fp|dd275ac7a6611d65985fca4d77b646992c0303e57fed19ada667573611bf93e6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/common/utils/request.ts"}, "region": {"startLine": 59}}}]}, {"ruleId": "MINED004", "level": "none", "message": {"text": "[MINED004] Weak Crypto (and 4 more): Same pattern found in 4 additional files. Review if needed."}, "properties": {"repobilityId": 88837, "scanner": "repobility-threat-engine", "fingerprint": "c99e84751a1f49acb2a05f8e16365a1ec0085c51b7a83f3c71cbd43d21478817", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 4 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "weak-crypto", "owasp": "A02:2021", "cwe_ids": ["CWE-327"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347906+00:00", "triaged_in_corpus": 15, "observations_count": 303181, "ai_coder_pattern_id": 13}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|c99e84751a1f49acb2a05f8e16365a1ec0085c51b7a83f3c71cbd43d21478817", "aggregated_count": 4}}}, {"ruleId": "SEC085", "level": "none", "message": {"text": "[SEC085] JS: child_process.exec with non-literal (and 9 more): Same pattern found in 9 additional files. Review if needed."}, "properties": {"repobilityId": 88833, "scanner": "repobility-threat-engine", "fingerprint": "5523e60b1dc8a944defadff18fd27285ca7823b9184972b5126e133bf66244aa", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 9 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 9 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|5523e60b1dc8a944defadff18fd27285ca7823b9184972b5126e133bf66244aa"}}}, {"ruleId": "SEC045", "level": "none", "message": {"text": "[SEC045] eval()/exec() on stored or user-supplied data (and 10 more): Same pattern found in 10 additional files. Review if needed."}, "properties": {"repobilityId": 88829, "scanner": "repobility-threat-engine", "fingerprint": "4888a7f2d95e1334850750ba0611e2c2a23c368ce50109969c246a2c925d3677", "category": "injection", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 10 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 10 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC045", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|4888a7f2d95e1334850750ba0611e2c2a23c368ce50109969c246a2c925d3677"}}}, {"ruleId": "SEC029", "level": "none", "message": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 41 more): Same pattern found in 41 additional files. Review if needed."}, "properties": {"repobilityId": 88825, "scanner": "repobility-threat-engine", "fingerprint": "d7607273fe5f14fcf46e7f8983176d1b193e6925004b1a1c1ea7f0f836f04911", "category": "ssrf", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 41 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 41 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|d7607273fe5f14fcf46e7f8983176d1b193e6925004b1a1c1ea7f0f836f04911"}}}, {"ruleId": "MINED052", "level": "none", "message": {"text": "[MINED052] Ts Any Typed (and 32 more): Same pattern found in 32 additional files. Review if needed."}, "properties": {"repobilityId": 88821, "scanner": "repobility-threat-engine", "fingerprint": "92f81e899475c4425d3b49083778c10df56cab7df4aad94a15b99ba7fa9719b0", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 32 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "ts-any-typed", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348022+00:00", "triaged_in_corpus": 12, "observations_count": 496002, "ai_coder_pattern_id": 97}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|92f81e899475c4425d3b49083778c10df56cab7df4aad94a15b99ba7fa9719b0", "aggregated_count": 32}}}, {"ruleId": "MINED052", "level": "none", "message": {"text": "[MINED052] Ts Any Typed: : any used as type annotation. Defeats TypeScript type safety."}, "properties": {"repobilityId": 88820, "scanner": "repobility-threat-engine", "fingerprint": "2b42d021ef97212f65f2f7fe6178369f7adcf01f43eb9dd8b0f1b012c362f6a3", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-any-typed", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348022+00:00", "triaged_in_corpus": 12, "observations_count": 496002, "ai_coder_pattern_id": 97}, "scanner": "repobility-threat-engine", "correlation_key": "fp|2b42d021ef97212f65f2f7fe6178369f7adcf01f43eb9dd8b0f1b012c362f6a3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/common/utils/migrateSetting.ts"}, "region": {"startLine": 20}}}]}, {"ruleId": "MINED052", "level": "none", "message": {"text": "[MINED052] Ts Any Typed: : any used as type annotation. Defeats TypeScript type safety."}, "properties": {"repobilityId": 88819, "scanner": "repobility-threat-engine", "fingerprint": "27b3034e1de5460febddddcc3e27d825b79e5e1381b5424586bec753d7ffb893", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-any-typed", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348022+00:00", "triaged_in_corpus": 12, "observations_count": 496002, "ai_coder_pattern_id": 97}, "scanner": "repobility-threat-engine", "correlation_key": "fp|27b3034e1de5460febddddcc3e27d825b79e5e1381b5424586bec753d7ffb893"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/common/utils/download/index.ts"}, "region": {"startLine": 64}}}]}, {"ruleId": "MINED052", "level": "none", "message": {"text": "[MINED052] Ts Any Typed: : any used as type annotation. Defeats TypeScript type safety."}, "properties": {"repobilityId": 88818, "scanner": "repobility-threat-engine", "fingerprint": "65400118a246a875078635f8004e672855d860c446abad629be0bc356833c558", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-any-typed", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348022+00:00", "triaged_in_corpus": 12, "observations_count": 496002, "ai_coder_pattern_id": 97}, "scanner": "repobility-threat-engine", "correlation_key": "fp|65400118a246a875078635f8004e672855d860c446abad629be0bc356833c558"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/common/utils/common.ts"}, "region": {"startLine": 24}}}]}, {"ruleId": "SEC128", "level": "none", "message": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 25 more): Same pattern found in 25 additional files. Review if needed."}, "properties": {"repobilityId": 88817, "scanner": "repobility-threat-engine", "fingerprint": "53bf8a87e25814ffe2ca4fb2b663efa0ec5d19c7b351535829863994b9f832b3", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 25 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 25 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|53bf8a87e25814ffe2ca4fb2b663efa0ec5d19c7b351535829863994b9f832b3"}}}, {"ruleId": "MINED044", "level": "none", "message": {"text": "[MINED044] Js Console Log Prod (and 90 more): Same pattern found in 90 additional files. Review if needed."}, "properties": {"repobilityId": 88811, "scanner": "repobility-threat-engine", "fingerprint": "2dcbe5dbad7727a08f176e5fa639255eb5daf77a79a9afa7ada5823c3d353612", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 90 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "js-console-log-prod", "owasp": null, "cwe_ids": ["CWE-532"], "languages": ["javascript", "typescript", "tsx", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348003+00:00", "triaged_in_corpus": 10, "observations_count": 1940833, "ai_coder_pattern_id": 102}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|2dcbe5dbad7727a08f176e5fa639255eb5daf77a79a9afa7ada5823c3d353612", "aggregated_count": 90}}}, {"ruleId": "MINED044", "level": "none", "message": {"text": "[MINED044] Js Console Log Prod: console.log left in code. Should be replaced with logger or removed."}, "properties": {"repobilityId": 88810, "scanner": "repobility-threat-engine", "fingerprint": "8a49fe2462a042af37251c818aa2082aff7a53afe58f1f6747a7c35bce462f5a", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "js-console-log-prod", "owasp": null, "cwe_ids": ["CWE-532"], "languages": ["javascript", "typescript", "tsx", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348003+00:00", "triaged_in_corpus": 10, "observations_count": 1940833, "ai_coder_pattern_id": 102}, "scanner": "repobility-threat-engine", "correlation_key": "fp|8a49fe2462a042af37251c818aa2082aff7a53afe58f1f6747a7c35bce462f5a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "build-config/dependencies-patch.js"}, "region": {"startLine": 28}}}]}, {"ruleId": "MINED044", "level": "none", "message": {"text": "[MINED044] Js Console Log Prod: console.log left in code. Should be replaced with logger or removed."}, "properties": {"repobilityId": 88809, "scanner": "repobility-threat-engine", "fingerprint": "5288b898cff7559e76cc360fe98b0425b81c27ae97a91d8edd7baf9b7744ea4c", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "js-console-log-prod", "owasp": null, "cwe_ids": ["CWE-532"], "languages": ["javascript", "typescript", "tsx", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348003+00:00", "triaged_in_corpus": 10, "observations_count": 1940833, "ai_coder_pattern_id": 102}, "scanner": "repobility-threat-engine", "correlation_key": "fp|5288b898cff7559e76cc360fe98b0425b81c27ae97a91d8edd7baf9b7744ea4c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "build-config/build-pack.js"}, "region": {"startLine": 308}}}]}, {"ruleId": "MINED044", "level": "none", "message": {"text": "[MINED044] Js Console Log Prod: console.log left in code. Should be replaced with logger or removed."}, "properties": {"repobilityId": 88808, "scanner": "repobility-threat-engine", "fingerprint": "4e12364a509daf063a3f33e8b86a484f0b7e47118c8c9bc4d0fe965f362311e6", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "js-console-log-prod", "owasp": null, "cwe_ids": ["CWE-532"], "languages": ["javascript", "typescript", "tsx", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348003+00:00", "triaged_in_corpus": 10, "observations_count": 1940833, "ai_coder_pattern_id": 102}, "scanner": "repobility-threat-engine", "correlation_key": "fp|4e12364a509daf063a3f33e8b86a484f0b7e47118c8c9bc4d0fe965f362311e6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "build-config/build-before-pack.js"}, "region": {"startLine": 35}}}]}, {"ruleId": "SEC040", "level": "none", "message": {"text": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "properties": {"repobilityId": 88807, "scanner": "repobility-threat-engine", "fingerprint": "3dd4caf8fa81c20f9eace7ffa5194145968292c35b4d876b17652877ff96f545", "category": "xss", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 2 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 2 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|3dd4caf8fa81c20f9eace7ffa5194145968292c35b4d876b17652877ff96f545"}}}, {"ruleId": "DEPCUR-NPM", "level": "none", "message": {"text": "npm package `postcss` is patch version(s) behind (8.5.13 -> 8.5.15)"}, "properties": {"repobilityId": 88798, "scanner": "repobility-dependency-currency", "fingerprint": "bdd14d17c40d91b8ac1d5f2e9b3d0fc6fafbfacf6237c3ea32e937e74758d04e", "category": "dependency", "severity": "info", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "patch version(s) behind", "signal": "currency", "cwe_ids": [], "package": "postcss", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "8.5.15", "correlation_key": "fp|bdd14d17c40d91b8ac1d5f2e9b3d0fc6fafbfacf6237c3ea32e937e74758d04e", "current_version": "8.5.13"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "none", "message": {"text": "npm package `electron-log` is patch version(s) behind (5.4.3 -> 5.4.4)"}, "properties": {"repobilityId": 88781, "scanner": "repobility-dependency-currency", "fingerprint": "286f0e39cc08a7c15136aea9097fca55746913c0b1b876e8293cf6862fbc313e", "category": "dependency", "severity": "info", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "patch version(s) behind", "signal": "currency", "cwe_ids": [], "package": "electron-log", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "5.4.4", "correlation_key": "fp|286f0e39cc08a7c15136aea9097fca55746913c0b1b876e8293cf6862fbc313e", "current_version": "5.4.3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-ph9p-34f9-6g65", "level": "error", "message": {"text": "tmp: GHSA-ph9p-34f9-6g65"}, "properties": {"repobilityId": 88877, "scanner": "osv-scanner", "fingerprint": "98d9d97f3f550caba1f6df39b82415945caad2b866cb40a32a12f4041deb865a", "category": "dependency", "severity": "high", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-44705"], "package": "tmp", "rule_id": "GHSA-ph9p-34f9-6g65", "scanner": "osv-scanner", "correlation_key": "vuln|tmp|CVE-2026-44705|package-lock.json"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package-lock.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-v39h-62p7-jpjc", "level": "error", "message": {"text": "fast-uri: GHSA-v39h-62p7-jpjc"}, "properties": {"repobilityId": 88875, "scanner": "osv-scanner", "fingerprint": "d9e8ef847898100d4370c43984678fe5fed930d5324ab88248c2d2156d522d84", "category": "dependency", "severity": "high", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-6322"], "package": "fast-uri", "rule_id": "GHSA-v39h-62p7-jpjc", "scanner": "osv-scanner", "correlation_key": "vuln|fast-uri|CVE-2026-6322|package-lock.json"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package-lock.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-q3j6-qgpj-74h6", "level": "error", "message": {"text": "fast-uri: GHSA-q3j6-qgpj-74h6"}, "properties": {"repobilityId": 88874, "scanner": "osv-scanner", "fingerprint": "bbadb454e2f0de5491c967e3dd8f97119c293cd0aafbefed77d3b3e72652865f", "category": "dependency", "severity": "high", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-6321"], "package": "fast-uri", "rule_id": "GHSA-q3j6-qgpj-74h6", "scanner": "osv-scanner", "correlation_key": "vuln|fast-uri|CVE-2026-6321|package-lock.json"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package-lock.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "SEC083", "level": "error", "message": {"text": "[SEC083] JS: new RegExp() with non-literal: new RegExp(<variable>) \u2014 variable input can craft a ReDoS pattern. Ported from eslint-plugin-security detect-non-literal-regexp (Apache-2.0)."}, "properties": {"repobilityId": 88860, "scanner": "repobility-threat-engine", "fingerprint": "a65b5d48be0356854c5e40491955e9698b11b542e40f6bd82c73635620938a20", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "new RegExp(item", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC083", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|a65b5d48be0356854c5e40491955e9698b11b542e40f6bd82c73635620938a20"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/utils/musicSdk/tx/comment.js"}, "region": {"startLine": 275}}}]}, {"ruleId": "SEC103", "level": "error", "message": {"text": "[SEC103] LDAP injection \u2014 non-constant search filter: User input concatenated into an LDAP search filter. Attackers inject `*)(uid=*` style payloads to bypass auth or enumerate accounts."}, "properties": {"repobilityId": 88859, "scanner": "repobility-threat-engine", "fingerprint": "1fda9cfcad83a2d2083c376d81e40e2f76c0cf73c18cba6be92df4ae4b00fc67", "category": "injection", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".search(text, page, limit, ++retryNum)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC103", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|injection|token|301|sec103"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/utils/musicSdk/tx/songList.js"}, "region": {"startLine": 301}}}]}, {"ruleId": "SEC103", "level": "error", "message": {"text": "[SEC103] LDAP injection \u2014 non-constant search filter: User input concatenated into an LDAP search filter. Attackers inject `*)(uid=*` style payloads to bypass auth or enumerate accounts."}, "properties": {"repobilityId": 88858, "scanner": "repobility-threat-engine", "fingerprint": "b6d007c194891f54fe8eae882fdee6e5c8ce9e89f5dce982be95dd247f8d37c2", "category": "injection", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".search(str, page, limit, ++retryNum)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC103", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|injection|token|108|sec103"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/utils/musicSdk/kw/musicSearch.js"}, "region": {"startLine": 108}}}]}, {"ruleId": "SEC100", "level": "error", "message": {"text": "[SEC100] CORS permissive Access-Control-Allow-Origin: *: Permissive CORS policy (`*` origin) allows any website to make authenticated cross-origin requests. Especially dangerous when combined with `Access-Control-Allow-Credentials: true`."}, "properties": {"repobilityId": 88850, "scanner": "repobility-threat-engine", "fingerprint": "55848433d75c046301c1a9adc03262f4f5a7a4c9b6a39fbc2c2acf1a9df7c519", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "'Access-Control-Allow-Origin': '*'", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC100", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|55848433d75c046301c1a9adc03262f4f5a7a4c9b6a39fbc2c2acf1a9df7c519"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/main/modules/openApi/index.ts"}, "region": {"startLine": 10}}}]}, {"ruleId": "MINED004", "level": "error", "message": {"text": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums)."}, "properties": {"repobilityId": 88836, "scanner": "repobility-threat-engine", "fingerprint": "24b3b6b4402f70e81dfc2fd2c0c25e4050ff1d99480d7a332367612493ce7124", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "weak-crypto", "owasp": "A02:2021", "cwe_ids": ["CWE-327"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347906+00:00", "triaged_in_corpus": 15, "observations_count": 303181, "ai_coder_pattern_id": 13}, "scanner": "repobility-threat-engine", "correlation_key": "fp|24b3b6b4402f70e81dfc2fd2c0c25e4050ff1d99480d7a332367612493ce7124"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/main/modules/sync/server/modules/list/manage.ts"}, "region": {"startLine": 15}}}]}, {"ruleId": "MINED004", "level": "error", "message": {"text": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums)."}, "properties": {"repobilityId": 88835, "scanner": "repobility-threat-engine", "fingerprint": "3410ea6c70aba6255491aa955bb53906c0cc78eb3960e49752c1c6a6f491d120", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "weak-crypto", "owasp": "A02:2021", "cwe_ids": ["CWE-327"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347906+00:00", "triaged_in_corpus": 15, "observations_count": 303181, "ai_coder_pattern_id": 13}, "scanner": "repobility-threat-engine", "correlation_key": "fp|3410ea6c70aba6255491aa955bb53906c0cc78eb3960e49752c1c6a6f491d120"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/main/modules/sync/server/modules/dislike/manage.ts"}, "region": {"startLine": 15}}}]}, {"ruleId": "MINED004", "level": "error", "message": {"text": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums)."}, "properties": {"repobilityId": 88834, "scanner": "repobility-threat-engine", "fingerprint": "02271965683caa9197b5e503c72e3c59e814a483ee7d5b972d718e0fd40f3ff9", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "weak-crypto", "owasp": "A02:2021", "cwe_ids": ["CWE-327"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347906+00:00", "triaged_in_corpus": 15, "observations_count": 303181, "ai_coder_pattern_id": 13}, "scanner": "repobility-threat-engine", "correlation_key": "fp|02271965683caa9197b5e503c72e3c59e814a483ee7d5b972d718e0fd40f3ff9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/common/utils/nodejs.ts"}, "region": {"startLine": 117}}}]}, {"ruleId": "SEC085", "level": "error", "message": {"text": "[SEC085] JS: child_process.exec with non-literal: child_process.exec with user-derived input enables command injection. Ported from eslint-plugin-security detect-child-process (Apache-2.0)."}, "properties": {"repobilityId": 88832, "scanner": "repobility-threat-engine", "fingerprint": "220f02ea32cc00efb9c57caf1e9d22870d469b20dc32d4897c8dcb37d02138dd", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "exec(info", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|220f02ea32cc00efb9c57caf1e9d22870d469b20dc32d4897c8dcb37d02138dd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/main/modules/userApi/utils.ts"}, "region": {"startLine": 66}}}]}, {"ruleId": "SEC085", "level": "error", "message": {"text": "[SEC085] JS: child_process.exec with non-literal: child_process.exec with user-derived input enables command injection. Ported from eslint-plugin-security detect-child-process (Apache-2.0)."}, "properties": {"repobilityId": 88831, "scanner": "repobility-threat-engine", "fingerprint": "cc2dee3dbff271a656883f13697df2d035fcfa3bf18ada85de2755dd7fd26aed", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "exec(meta", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|cc2dee3dbff271a656883f13697df2d035fcfa3bf18ada85de2755dd7fd26aed"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/common/utils/tools.ts"}, "region": {"startLine": 20}}}]}, {"ruleId": "SEC085", "level": "error", "message": {"text": "[SEC085] JS: child_process.exec with non-literal: child_process.exec with user-derived input enables command injection. Ported from eslint-plugin-security detect-child-process (Apache-2.0)."}, "properties": {"repobilityId": 88830, "scanner": "repobility-threat-engine", "fingerprint": "91c6a239b64ff4aaf02fa15d8ceda09d6f8dbbd8a4ae9abd73cc212760040551", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "exec(line", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|91c6a239b64ff4aaf02fa15d8ceda09d6f8dbbd8a4ae9abd73cc212760040551"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/common/utils/lyric-font-player/line-player.js"}, "region": {"startLine": 28}}}]}, {"ruleId": "SEC029", "level": "error", "message": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input: Outbound HTTP request to a user-controlled URL without allowlist validation. Attackers can probe internal services (169.254.169.254 metadata, internal Kubernetes endpoints, file:// URIs), exfiltrate data, or pivot through your network. SSRF is OWASP A10:2021 and a frequent foothold in cloud breaches."}, "properties": {"repobilityId": 88824, "scanner": "repobility-threat-engine", "fingerprint": "92aaa2982b962312e165f3a36e6cc5fb770eb5fbb30b8a97d864d66cd6e7b56d", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "Url(h", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|92aaa2982b962312e165f3a36e6cc5fb770eb5fbb30b8a97d864d66cd6e7b56d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/main/modules/sync/client/index.ts"}, "region": {"startLine": 16}}}]}, {"ruleId": "SEC029", "level": "error", "message": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input: Outbound HTTP request to a user-controlled URL without allowlist validation. Attackers can probe internal services (169.254.169.254 metadata, internal Kubernetes endpoints, file:// URIs), exfiltrate data, or pivot through your network. SSRF is OWASP A10:2021 and a frequent foothold in cloud breaches."}, "properties": {"repobilityId": 88823, "scanner": "repobility-threat-engine", "fingerprint": "d8d139c7d25c2bb6750882ac15d7c1436229a05f6583b06e064012ccdd59856a", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "URL(u", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|d8d139c7d25c2bb6750882ac15d7c1436229a05f6583b06e064012ccdd59856a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/common/utils/musicMeta/downloader.js"}, "region": {"startLine": 12}}}]}, {"ruleId": "SEC029", "level": "error", "message": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input: Outbound HTTP request to a user-controlled URL without allowlist validation. Attackers can probe internal services (169.254.169.254 metadata, internal Kubernetes endpoints, file:// URIs), exfiltrate data, or pivot through your network. SSRF is OWASP A10:2021 and a frequent foothold in cloud breaches."}, "properties": {"repobilityId": 88822, "scanner": "repobility-threat-engine", "fingerprint": "77acb0a24bc5478de8f09c303e3b3bfbfc1e4bab775678dd84bcff66f673cec5", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "URL(u", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|77acb0a24bc5478de8f09c303e3b3bfbfc1e4bab775678dd84bcff66f673cec5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/common/utils/download/request.ts"}, "region": {"startLine": 21}}}]}, {"ruleId": "SEC128", "level": "error", "message": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake): Async call invoked without `await` returns an unhandled Promise. The outer function resolves before the inner work completes \u2014 DB writes lost, emails not sent, race conditions. This is one of the top-3 errors AI coders make: they understand async-shape but drop the await keyword when chaining multiple ops. Surfaces as flaky tests or silently dropped data in production."}, "properties": {"repobilityId": 88816, "scanner": "repobility-threat-engine", "fingerprint": "7908991d83b8a94a736d350fc4ab601c9fc7b7a1f1e25721861af23ae816c13e", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "responses.delete(res)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|7908991d83b8a94a736d350fc4ab601c9fc7b7a1f1e25721861af23ae816c13e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/main/modules/openApi/index.ts"}, "region": {"startLine": 74}}}]}, {"ruleId": "SEC128", "level": "error", "message": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake): Async call invoked without `await` returns an unhandled Promise. The outer function resolves before the inner work completes \u2014 DB writes lost, emails not sent, race conditions. This is one of the top-3 errors AI coders make: they understand async-shape but drop the await keyword when chaining multiple ops. Surfaces as flaky tests or silently dropped data in production."}, "properties": {"repobilityId": 88815, "scanner": "repobility-threat-engine", "fingerprint": "90121acfa929428fe416bdd81e2ac1d8921c5efe8dc24dadc222ce72962ca227", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "Promise.all(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|90121acfa929428fe416bdd81e2ac1d8921c5efe8dc24dadc222ce72962ca227"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "build-config/runner-dev.js"}, "region": {"startLine": 233}}}]}, {"ruleId": "SEC128", "level": "error", "message": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake): Async call invoked without `await` returns an unhandled Promise. The outer function resolves before the inner work completes \u2014 DB writes lost, emails not sent, race conditions. This is one of the top-3 errors AI coders make: they understand async-shape but drop the await keyword when chaining multiple ops. Surfaces as flaky tests or silently dropped data in production."}, "properties": {"repobilityId": 88814, "scanner": "repobility-threat-engine", "fingerprint": "acfef0d1d8f35a5b3c53683b1cdd431f86cfb9da4ae454bc83e5ef3f54542848", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "Promise.all(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|acfef0d1d8f35a5b3c53683b1cdd431f86cfb9da4ae454bc83e5ef3f54542848"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "build-config/pack.js"}, "region": {"startLine": 43}}}]}, {"ruleId": "SEC040", "level": "error", "message": {"text": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data: Setting .innerHTML with a template literal that interpolates server-supplied or user-supplied data is the canonical stored/reflected XSS vector. The browser parses the HTML and executes any <script> or event-handler attributes in the data. CWE-79. Especially dangerous when the data comes from a CV parser, profile field, or any user-input pipeline."}, "properties": {"repobilityId": 88806, "scanner": "repobility-threat-engine", "fingerprint": "de31617b7c9478b6b4aeab0e6067c9bb25c175a2d12c356f61fb3b8f9ca0e093", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "map((time, index) => `${time}${wordArr[index]}", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|de31617b7c9478b6b4aeab0e6067c9bb25c175a2d12c356f61fb3b8f9ca0e093"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/utils/musicSdk/mg/lyric.js"}, "region": {"startLine": 42}}}]}, {"ruleId": "SEC040", "level": "error", "message": {"text": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data: Setting .innerHTML with a template literal that interpolates server-supplied or user-supplied data is the canonical stored/reflected XSS vector. The browser parses the HTML and executes any <script> or event-handler attributes in the data. CWE-79. Especially dangerous when the data comes from a CV parser, profile field, or any user-input pipeline."}, "properties": {"repobilityId": 88805, "scanner": "repobility-threat-engine", "fingerprint": "509f80a5214832749c5ad0a3c1083ad5f3dcd4ae840db6af2b94662e4872846f", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "map(([key, value]) => `${key}=${encodeURIComponent(value)}", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|509f80a5214832749c5ad0a3c1083ad5f3dcd4ae840db6af2b94662e4872846f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/common/utils/download/request.ts"}, "region": {"startLine": 31}}}]}, {"ruleId": "SEC040", "level": "error", "message": {"text": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data: Setting .innerHTML with a template literal that interpolates server-supplied or user-supplied data is the canonical stored/reflected XSS vector. The browser parses the HTML and executes any <script> or event-handler attributes in the data. CWE-79. Especially dangerous when the data comes from a CV parser, profile field, or any user-input pipeline."}, "properties": {"repobilityId": 88804, "scanner": "repobility-threat-engine", "fingerprint": "8a61946e107a23cdd4c83940f9e50afa1269530b20c270feb461842e7f3cb5cd", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "map(([k, v]) => `\"${k}\" = \"${v}", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|8a61946e107a23cdd4c83940f9e50afa1269530b20c270feb461842e7f3cb5cd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "build-config/build-after-pack.js"}, "region": {"startLine": 21}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 88778, "scanner": "repobility-supply-chain", "fingerprint": "71c588bf7b7cc05802aacd864038e7df1aac2a4f659c25f9076e1446efe92931", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|71c588bf7b7cc05802aacd864038e7df1aac2a4f659c25f9076e1446efe92931"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/build-test.yml"}, "region": {"startLine": 14}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `peter-evans/repository-dispatch` pinned to mutable ref `@v4`"}, "properties": {"repobilityId": 88777, "scanner": "repobility-supply-chain", "fingerprint": "6c71cc3d1d8c11f2ca285e624e68032d1c31a7ab28cd59b1a6e90e015ecb568a", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|6c71cc3d1d8c11f2ca285e624e68032d1c31a7ab28cd59b1a6e90e015ecb568a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/publish-version-info.yml"}, "region": {"startLine": 12}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 88776, "scanner": "repobility-supply-chain", "fingerprint": "f417ce0bec09af9f9ec6e251ff3aea523be2c5a58fe30b1bb63fa5195f934155", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|f417ce0bec09af9f9ec6e251ff3aea523be2c5a58fe30b1bb63fa5195f934155"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release.yml"}, "region": {"startLine": 181}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 88775, "scanner": "repobility-supply-chain", "fingerprint": "ffb5fe74789d6ce79615d60152e051508111e156f2b9be23aa4dd01cf1f28b9f", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|ffb5fe74789d6ce79615d60152e051508111e156f2b9be23aa4dd01cf1f28b9f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release.yml"}, "region": {"startLine": 138}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 88774, "scanner": "repobility-supply-chain", "fingerprint": "edd643a698f53e296611a8b1bab545dfefd9caebd6a0705018dd6e86fdfe731c", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|edd643a698f53e296611a8b1bab545dfefd9caebd6a0705018dd6e86fdfe731c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release.yml"}, "region": {"startLine": 90}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 88773, "scanner": "repobility-supply-chain", "fingerprint": "426aa28d7fcf9d8746b586b06d2bda00c3365a8935419798a568a062b5f8aee1", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|426aa28d7fcf9d8746b586b06d2bda00c3365a8935419798a568a062b5f8aee1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release.yml"}, "region": {"startLine": 49}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/upload-artifact` pinned to mutable ref `@v7`"}, "properties": {"repobilityId": 88772, "scanner": "repobility-supply-chain", "fingerprint": "27851a234c8a015f305c850aef94b1e64e5dee0b57ec817de84f72d2a8e2693b", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|27851a234c8a015f305c850aef94b1e64e5dee0b57ec817de84f72d2a8e2693b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/beta-pack.yml"}, "region": {"startLine": 283}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/upload-artifact` pinned to mutable ref `@v7`"}, "properties": {"repobilityId": 88771, "scanner": "repobility-supply-chain", "fingerprint": "f1bd69a459ca1354b1839c615a3b4b3b8b1fbe78c1bfc3cf6fd2bc4c1aa44dba", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|f1bd69a459ca1354b1839c615a3b4b3b8b1fbe78c1bfc3cf6fd2bc4c1aa44dba"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/beta-pack.yml"}, "region": {"startLine": 275}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/upload-artifact` pinned to mutable ref `@v7`"}, "properties": {"repobilityId": 88770, "scanner": "repobility-supply-chain", "fingerprint": "447b85fed32fcc0e36a56e1e57f0e3bf7ef412c433b0dd82be58d7b9c71d766f", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|447b85fed32fcc0e36a56e1e57f0e3bf7ef412c433b0dd82be58d7b9c71d766f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/beta-pack.yml"}, "region": {"startLine": 267}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/upload-artifact` pinned to mutable ref `@v7`"}, "properties": {"repobilityId": 88769, "scanner": "repobility-supply-chain", "fingerprint": "e82dda16ffff34076a4553ef2cb0f02b53ea77b137162dc0e43156311ca5c8af", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|e82dda16ffff34076a4553ef2cb0f02b53ea77b137162dc0e43156311ca5c8af"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/beta-pack.yml"}, "region": {"startLine": 259}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/upload-artifact` pinned to mutable ref `@v7`"}, "properties": {"repobilityId": 88768, "scanner": "repobility-supply-chain", "fingerprint": "d5f6bce02b5ac7309adad8a665a352b3ac315f1352f2647d9df76a04df839783", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|d5f6bce02b5ac7309adad8a665a352b3ac315f1352f2647d9df76a04df839783"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/beta-pack.yml"}, "region": {"startLine": 251}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/upload-artifact` pinned to mutable ref `@v7`"}, "properties": {"repobilityId": 88767, "scanner": "repobility-supply-chain", "fingerprint": "1e0e1b54bdaf4d74ced1164cb6386293dd76441fc85edebcc324110370ac1ed5", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|1e0e1b54bdaf4d74ced1164cb6386293dd76441fc85edebcc324110370ac1ed5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/beta-pack.yml"}, "region": {"startLine": 243}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 88766, "scanner": "repobility-supply-chain", "fingerprint": "9ef5962f3cfe75d094a9f6534681cbc8efa93ca18e97eb984426212779068ebd", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|9ef5962f3cfe75d094a9f6534681cbc8efa93ca18e97eb984426212779068ebd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/beta-pack.yml"}, "region": {"startLine": 224}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/upload-artifact` pinned to mutable ref `@v7`"}, "properties": {"repobilityId": 88765, "scanner": "repobility-supply-chain", "fingerprint": "5b2bec04e2d6bde284d00e55680114e7abefdff1643b1f48f222c16f802435c1", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|5b2bec04e2d6bde284d00e55680114e7abefdff1643b1f48f222c16f802435c1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/beta-pack.yml"}, "region": {"startLine": 205}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/upload-artifact` pinned to mutable ref `@v7`"}, "properties": {"repobilityId": 88764, "scanner": "repobility-supply-chain", "fingerprint": "9b3d79b87c3bc915b81690c91a9df8bc4e276fa1e3db2b2d953a1fca0a7765e4", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|9b3d79b87c3bc915b81690c91a9df8bc4e276fa1e3db2b2d953a1fca0a7765e4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/beta-pack.yml"}, "region": {"startLine": 198}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 88763, "scanner": "repobility-supply-chain", "fingerprint": "47ae5382495b1650b05ba77bebf923bfa4258ae98ea07572d001e210516f8cc1", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|47ae5382495b1650b05ba77bebf923bfa4258ae98ea07572d001e210516f8cc1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/beta-pack.yml"}, "region": {"startLine": 173}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/upload-artifact` pinned to mutable ref `@v7`"}, "properties": {"repobilityId": 88762, "scanner": "repobility-supply-chain", "fingerprint": "df6e8e2731d7f2d5cab20fcb502254704bd0cca0934c1fc859e85f8049ba3e12", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|df6e8e2731d7f2d5cab20fcb502254704bd0cca0934c1fc859e85f8049ba3e12"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/beta-pack.yml"}, "region": {"startLine": 157}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/upload-artifact` pinned to mutable ref `@v7`"}, "properties": {"repobilityId": 88761, "scanner": "repobility-supply-chain", "fingerprint": "db0eac1948d3cdca458792997b395189d26f4056a7dd1a423125a4677d8091bf", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|db0eac1948d3cdca458792997b395189d26f4056a7dd1a423125a4677d8091bf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/beta-pack.yml"}, "region": {"startLine": 149}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/upload-artifact` pinned to mutable ref `@v7`"}, "properties": {"repobilityId": 88760, "scanner": "repobility-supply-chain", "fingerprint": "4dfe9813c5ce49033da46506a64dd3750b9a287d3878fd8c87bb3a910e3ebdd5", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|4dfe9813c5ce49033da46506a64dd3750b9a287d3878fd8c87bb3a910e3ebdd5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/beta-pack.yml"}, "region": {"startLine": 141}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 88759, "scanner": "repobility-supply-chain", "fingerprint": "1712b046be2fa72bad36e53a86b77b5a864f8476a86378800706f644192acc50", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|1712b046be2fa72bad36e53a86b77b5a864f8476a86378800706f644192acc50"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/beta-pack.yml"}, "region": {"startLine": 110}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/upload-artifact` pinned to mutable ref `@v7`"}, "properties": {"repobilityId": 88758, "scanner": "repobility-supply-chain", "fingerprint": "4ec4fffde587c49ac998234de5df7d930249cb9eceebcd41775e92bde34ce23c", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|4ec4fffde587c49ac998234de5df7d930249cb9eceebcd41775e92bde34ce23c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/beta-pack.yml"}, "region": {"startLine": 92}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/upload-artifact` pinned to mutable ref `@v7`"}, "properties": {"repobilityId": 88757, "scanner": "repobility-supply-chain", "fingerprint": "58b2da10cda7591615ddb4906c2b99dd3a86c7919d7d7219dc91ef31d56720eb", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|58b2da10cda7591615ddb4906c2b99dd3a86c7919d7d7219dc91ef31d56720eb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/beta-pack.yml"}, "region": {"startLine": 84}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/upload-artifact` pinned to mutable ref `@v7`"}, "properties": {"repobilityId": 88756, "scanner": "repobility-supply-chain", "fingerprint": "a58136db89cb9da517054dc694cd5a2eb42cb4366ba7e59e87dd9068f40ae741", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|a58136db89cb9da517054dc694cd5a2eb42cb4366ba7e59e87dd9068f40ae741"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/beta-pack.yml"}, "region": {"startLine": 76}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/upload-artifact` pinned to mutable ref `@v7`"}, "properties": {"repobilityId": 88755, "scanner": "repobility-supply-chain", "fingerprint": "60a5eb0b75064cc64c3949c067173bae99b94f2f115c1f7ba7bc43857a4cd1ad", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|60a5eb0b75064cc64c3949c067173bae99b94f2f115c1f7ba7bc43857a4cd1ad"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/beta-pack.yml"}, "region": {"startLine": 68}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 88754, "scanner": "repobility-supply-chain", "fingerprint": "78dae9490c2bb8f91179f0fd513e6562b55b55604ce3c123fd79dd7b2625deaf", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|78dae9490c2bb8f91179f0fd513e6562b55b55604ce3c123fd79dd7b2625deaf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/beta-pack.yml"}, "region": {"startLine": 49}}}]}, {"ruleId": "MINED122", "level": "error", "message": {"text": "package.json dep `webpack-hot-middleware` pulled from URL/Git"}, "properties": {"repobilityId": 88753, "scanner": "repobility-supply-chain", "fingerprint": "691bbbd6ce97616302314d065db80b91086fd3b9981766469fe0ccb96bb6f21c", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "npm-dep-git-or-tarball-url", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["javascript"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|691bbbd6ce97616302314d065db80b91086fd3b9981766469fe0ccb96bb6f21c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED122", "level": "error", "message": {"text": "package.json dep `spinnies` pulled from URL/Git"}, "properties": {"repobilityId": 88752, "scanner": "repobility-supply-chain", "fingerprint": "a778a943569dcd8240dcea3dca87cfe178b918577074386d760eda60e2d1dd7b", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "npm-dep-git-or-tarball-url", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["javascript"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|a778a943569dcd8240dcea3dca87cfe178b918577074386d760eda60e2d1dd7b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED122", "level": "error", "message": {"text": "package.json dep `eslint-formatter-friendly` pulled from URL/Git"}, "properties": {"repobilityId": 88751, "scanner": "repobility-supply-chain", "fingerprint": "ab9d703839c3a9102b51a2edf9af3522049dd189b107b453b67b8357ea9a6907", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "npm-dep-git-or-tarball-url", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["javascript"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|ab9d703839c3a9102b51a2edf9af3522049dd189b107b453b67b8357ea9a6907"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED122", "level": "error", "message": {"text": "package.json dep `needle` pulled from URL/Git"}, "properties": {"repobilityId": 88750, "scanner": "repobility-supply-chain", "fingerprint": "048adc476adda5a32003d5512204ab8f3e3d28db1122893618cfe86e3f632bfa", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "npm-dep-git-or-tarball-url", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["javascript"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|048adc476adda5a32003d5512204ab8f3e3d28db1122893618cfe86e3f632bfa"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "CORE_NO_TESTS", "level": "error", "message": {"text": "No test files found"}, "properties": {"repobilityId": 88714, "scanner": "repobility-core", "fingerprint": "0200e9918bc2a7bf9c116d0907e50ac3df640c758b93852cf1890ec6e14d870d", "category": "testing", "severity": "high", "confidence": null, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"rule_id": "CORE_NO_TESTS", "scanner": "repobility-core", "correlation_key": "repo|testing|core_no_tests"}}}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 88872, "scanner": "gitleaks", "fingerprint": "898e4b1753010a3dbace6722969e7a996a538395e474034456e1c4450c672492", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "key: 'REDACTED'", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|token|35|key: redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/utils/musicSdk/kg/songList.js"}, "region": {"startLine": 359}}}]}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 88871, "scanner": "gitleaks", "fingerprint": "24977cbb0d689894ed72105293e051a7c401a30a5e25dc2e3ae2a3399dbee7ec", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "key: 'REDACTED'", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|token|33|key: redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/utils/musicSdk/kg/songList.js"}, "region": {"startLine": 336}}}]}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 88870, "scanner": "gitleaks", "fingerprint": "448281553c997cceb57d27942022a55298a0cdddbbac6ab740a3e195c7677132", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "key: 'REDACTED'", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|token|29|key: redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/utils/musicSdk/kg/songList.js"}, "region": {"startLine": 294}}}]}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 88869, "scanner": "gitleaks", "fingerprint": "3454392aafd02893e80e02479d1a68d4d892cf4ed9c09720f74faa2c7c1818e2", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "key: 'REDACTED'", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|token|22|key: redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/utils/musicSdk/kg/songList.js"}, "region": {"startLine": 230}}}]}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 88868, "scanner": "gitleaks", "fingerprint": "e3bea46a962e3682bff867d5f5a8ae948ba43a7e1e5686c1c619589da7a64889", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "key: 'REDACTED'", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|token|45|key: redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/utils/musicSdk/kg/temp/songList-new.js"}, "region": {"startLine": 451}}}]}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 88867, "scanner": "gitleaks", "fingerprint": "5e0647ac2a8bdc85fb7852a56c8ca05786938976d0bc48b0531c91a234d5e374", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "key: 'REDACTED'", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|token|42|key: redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/utils/musicSdk/kg/temp/songList-new.js"}, "region": {"startLine": 429}}}]}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 88866, "scanner": "gitleaks", "fingerprint": "848b8cc2befef8fb565a23ee270258c780e985fb488fdf95dc6ed774bc6a1e8d", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "key: 'REDACTED'", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|token|23|key: redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/utils/musicSdk/kg/temp/songList-new.js"}, "region": {"startLine": 233}}}]}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 88865, "scanner": "gitleaks", "fingerprint": "f2fe27e32afaad13770f91def4e25734f5e46481be45c46fa431008a668a8f99", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "Collapsed 1 duplicate scanner signal(s) for the same underlying issue.", "evidence": {"match": "keyparam = 'REDACTED'", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|token|1|keyparam redacted", "duplicate_count": 1, "duplicate_rule_ids": ["generic-api-key"], "duplicate_scanners": ["gitleaks"], "duplicate_fingerprints": ["7732111f56dbe8e445130b6772fb55151bba2f34a1ae430811456cd646cf2ca4", "f2fe27e32afaad13770f91def4e25734f5e46481be45c46fa431008a668a8f99"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/utils/musicSdk/kg/util.js"}, "region": {"startLine": 14}}}]}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 88864, "scanner": "gitleaks", "fingerprint": "933a675ca99be932df807d7a50f0f2588837e4d0722f6e4bd1621f3385f585c8", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "Collapsed 1 duplicate scanner signal(s) for the same underlying issue.", "evidence": {"match": "key: 'REDACTED'", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|token|1|key: redacted", "duplicate_count": 1, "duplicate_rule_ids": ["generic-api-key"], "duplicate_scanners": ["gitleaks"], "duplicate_fingerprints": ["7f58c263b18bf9a77512c2407796dba5109c0943046178c92eb957f6b184a360", "933a675ca99be932df807d7a50f0f2588837e4d0722f6e4bd1621f3385f585c8"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/utils/musicSdk/kg/musicInfo.js"}, "region": {"startLine": 15}}}]}, {"ruleId": "SEC084", "level": "error", "message": {"text": "[SEC084] JS: require() with non-literal: require(<variable>) loads arbitrary modules \u2014 equivalent to eval at module scope. Ported from eslint-plugin-security detect-non-literal-require (Apache-2.0)."}, "properties": {"repobilityId": 88813, "scanner": "repobility-threat-engine", "fingerprint": "fe92594ae2634ca7cc7e4fec7f548c6e4cbed3a67cea3a1e73306d3e3fbedae6", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "require(pkgDir", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC084", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|fe92594ae2634ca7cc7e4fec7f548c6e4cbed3a67cea3a1e73306d3e3fbedae6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "publish/utils/updateChangeLog.js"}, "region": {"startLine": 4}}}]}, {"ruleId": "SEC084", "level": "error", "message": {"text": "[SEC084] JS: require() with non-literal: require(<variable>) loads arbitrary modules \u2014 equivalent to eval at module scope. Ported from eslint-plugin-security detect-non-literal-require (Apache-2.0)."}, "properties": {"repobilityId": 88812, "scanner": "repobility-threat-engine", "fingerprint": "bf629b75dcf25853362485c39ce51bbdcf7b764dddba62d1a95577bba3c8d083", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "require(config", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC084", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|bf629b75dcf25853362485c39ce51bbdcf7b764dddba62d1a95577bba3c8d083"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "build-config/pack.js"}, "region": {"startLine": 100}}}]}]}]}