{"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": "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": "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": "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": "AGT007", "name": "localStorage write failures are swallowed silently", "shortDescription": {"text": "localStorage write failures are swallowed silently"}, "fullDescription": {"text": "localStorage quotas are small and writes can fail. Catching storage errors without a user-visible warning causes silent data loss when notes, images, or snapshots exceed quota."}, "properties": {"scanner": "repobility-agent-runtime", "category": "quality", "severity": "medium", "confidence": 0.8, "cwe": "", "owasp": ""}}, {"id": "AGT015", "name": "Remote install command pipes network code directly to a shell", "shortDescription": {"text": "Remote install command pipes network code directly to a shell"}, "fullDescription": {"text": "Agent helper projects often publish one-line installers. `curl | sh` style commands are convenient, but they bypass review unless the script is pinned, signed, or checksum-verified."}, "properties": {"scanner": "repobility-agent-runtime", "category": "dependency", "severity": "medium", "confidence": 0.7, "cwe": "", "owasp": ""}}, {"id": "DEPCUR-NPM", "name": "npm package `globals` is 1 major version(s) behind (16.5.0 -> 17.6.0)", "shortDescription": {"text": "npm package `globals` is 1 major version(s) behind (16.5.0 -> 17.6.0)"}, "fullDescription": {"text": "`globals` is pinned/resolved at 16.5.0 but the latest stable release on the npm registry is 17.6.0 (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": "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": "SEC134", "name": "[SEC134] AI scaffold leftover \u2014 Lorem ipsum / example.com / John Doe in code: Lorem ipsum / John Doe / example.com left ", "shortDescription": {"text": "[SEC134] AI scaffold leftover \u2014 Lorem ipsum / example.com / John Doe in code: Lorem ipsum / John Doe / example.com left in non-test code. AI agents emit these as 'reasonable defaults' when they don't know real values; the human then forgets"}, "fullDescription": {"text": "Move dummy values to fixtures / seed files. In application code, require these to come from config or fail closed. Add a CI grep that rejects 'lorem ipsum' and 'example.com' outside test files."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.1, "cwe": "", "owasp": ""}}, {"id": "MINED049", "name": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout.", "shortDescription": {"text": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-532 / A09:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED058", "name": "[MINED058] React Dangerously Set Html: dangerouslySetInnerHTML bypasses Reacts JSX escaping. Pair with DOMPurify or neve", "shortDescription": {"text": "[MINED058] React Dangerously Set Html: dangerouslySetInnerHTML bypasses Reacts JSX escaping. Pair with DOMPurify or never use with user data."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-79 / A03:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC118", "name": "[SEC118] UUIDv1 / UUIDv3 used for security-sensitive identifier: UUIDv1 encodes the MAC address and timestamp, making it", "shortDescription": {"text": "[SEC118] UUIDv1 / UUIDv3 used for security-sensitive identifier: UUIDv1 encodes the MAC address and timestamp, making it predictable. Used as a session token or password-reset key, it's enumerable."}, "fullDescription": {"text": "Use `uuid.uuid4()` (random) or `secrets.token_urlsafe()` for tokens. In Go, use `uuid.NewRandom()` (google/uuid)."}, "properties": {"scanner": "repobility-threat-engine", "category": "crypto", "severity": "info", "confidence": 0.1, "cwe": "", "owasp": ""}}, {"id": "MINED056", "name": "[MINED056] React Key As Index: key={index} in map() \u2014 re-renders the wrong elements on re-order.", "shortDescription": {"text": "[MINED056] React Key As Index: key={index} in map() \u2014 re-renders the wrong elements on re-order."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-682 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED052", "name": "[MINED052] Ts Any Typed: : any used as type annotation. Defeats TypeScript type safety.", "shortDescription": {"text": "[MINED052] Ts Any Typed: : any used as type annotation. Defeats TypeScript type safety."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-704 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED044", "name": "[MINED044] Js Console Log Prod (and 32 more): Same pattern found in 32 additional files. Review if needed.", "shortDescription": {"text": "[MINED044] Js Console Log Prod (and 32 more): Same pattern found in 32 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": "MINED045", "name": "[MINED045] Ts Non Null Assertion (and 4 more): Same pattern found in 4 additional files. Review if needed.", "shortDescription": {"text": "[MINED045] Ts Non Null Assertion (and 4 more): Same pattern found in 4 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": "SEC029", "name": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 31 more): Same pattern found in 31 addi", "shortDescription": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 31 more): Same pattern found in 31 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": "SEC040", "name": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data (and 13 more): Same pattern found in 13 additional f", "shortDescription": {"text": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data (and 13 more): Same pattern found in 13 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": "JRN004", "name": "Consent is collected in UI without visible backend audit persistence", "shortDescription": {"text": "Consent is collected in UI without visible backend audit persistence"}, "fullDescription": {"text": "A frontend journey appears to ask for consent to share identity/KYC/biometric data, but backend code does not show a consent audit model with scope, purpose, legal text version, timestamp, IP, or user-agent evidence."}, "properties": {"scanner": "repobility-journey-contract", "category": "auth", "severity": "high", "confidence": 0.78, "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": "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": "SEC128", "name": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake): Async call invoked without `await` returns", "shortDescription": {"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, ra"}, "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": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC085", "name": "[SEC085] JS: child_process.exec with non-literal: child_process.exec with user-derived input enables command injection. ", "shortDescription": {"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)."}, "fullDescription": {"text": "Use execFile / spawn with separate args array; never pass shell strings."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "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": "gitlab-pat", "name": "Identified a GitLab Personal Access Token, risking unauthorized access to GitLab repositories and codebase exposure.", "shortDescription": {"text": "Identified a GitLab Personal Access Token, risking unauthorized access to GitLab repositories and codebase exposure."}, "fullDescription": {"text": "Gitleaks detected a committed secret or credential pattern."}, "properties": {"scanner": "gitleaks", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "cwe": "", "owasp": ""}}, {"id": "curl-auth-header", "name": "Discovered a potential authorization token provided in a curl command header, which could compromise the curl accessed r", "shortDescription": {"text": "Discovered a potential authorization token provided in a curl command header, which could compromise the curl accessed resource."}, "fullDescription": {"text": "Gitleaks detected a committed secret or credential pattern."}, "properties": {"scanner": "gitleaks", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "cwe": "", "owasp": ""}}, {"id": "MINED133", "name": "Hardcoded Discord webhook URL in source", "shortDescription": {"text": "Hardcoded Discord webhook URL in source"}, "fullDescription": {"text": "File contains a hardcoded `Discord` webhook URL: `https://discord.com/api/webhooks/123/token...`. Webhook URLs are unauthenticated POST endpoints \u2014 anyone with the URL can send messages. They are also a common data-exfiltration channel for compromised packages (malicious post-install collects env vars + POSTs them)."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "critical", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED116", "name": "Workflow uses `secrets.TRUNK_ORG_URL_SLUG` on a `pull_request` trigger", "shortDescription": {"text": "Workflow uses `secrets.TRUNK_ORG_URL_SLUG` on a `pull_request` trigger"}, "fullDescription": {"text": "This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.TRUNK_ORG_URL_SLUG }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "critical", "confidence": 0.9, "cwe": "", "owasp": ""}}]}}, "automationDetails": {"id": "repobility/1214"}, "properties": {"repository": "JSONbored/awesome-claude", "repoUrl": "https://github.com/JSONbored/awesome-claude", "branch": "main"}, "results": [{"ruleId": "WEB003", "level": "warning", "message": {"text": "Public web service has no security.txt"}, "properties": {"repobilityId": 122359, "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": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 122335, "scanner": "repobility-threat-engine", "fingerprint": "41fd18127303404f8f1c529164df0c2ae86c6c82c6eacd7ccb3cdefe1656da98", "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|41fd18127303404f8f1c529164df0c2ae86c6c82c6eacd7ccb3cdefe1656da98"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/validate-mcp-package.mjs"}, "region": {"startLine": 243}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 122334, "scanner": "repobility-threat-engine", "fingerprint": "a238355b7676aa909b5bd014d5f8a37d44700c2740070ee46f8da69a7937733a", "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|a238355b7676aa909b5bd014d5f8a37d44700c2740070ee46f8da69a7937733a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/mcp/src/remote-proxy.js"}, "region": {"startLine": 236}}}]}, {"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": 122324, "scanner": "repobility-threat-engine", "fingerprint": "9d67d48a1e66103a63e67fb79a28be209b82a3f325c1ee4fc386c854e8d8852c", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "Math.random().toString(36).slice(2, 18)}`;\n  window.localStorage.setItem(CLIENT_STORAGE_KEY", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC087", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|9d67d48a1e66103a63e67fb79a28be209b82a3f325c1ee4fc386c854e8d8852c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/components/entry-signals-panel.tsx"}, "region": {"startLine": 43}}}]}, {"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": 122309, "scanner": "repobility-threat-engine", "fingerprint": "e1d8f4f9c9871c1bad18d6c539aefbf723cba68e791a19728bb8eaf2362d1eff", "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|99|sec045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/ci/classify-pr-changes.mjs"}, "region": {"startLine": 99}}}]}, {"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": 122308, "scanner": "repobility-threat-engine", "fingerprint": "9735e74cc924adeb1c101184486b1ea65a8e2e20b07712c7c711caa9fa2fdad7", "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|58|sec045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/registry/src/source-repo.js"}, "region": {"startLine": 58}}}]}, {"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": 122307, "scanner": "repobility-threat-engine", "fingerprint": "fb36604ad7ef02f72696a09cc92cad04380021d70ddba6873fff19f7c9d0393b", "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|110|sec045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/submission-gate/src/notifications.ts"}, "region": {"startLine": 110}}}]}, {"ruleId": "AGT007", "level": "warning", "message": {"text": "localStorage write failures are swallowed silently"}, "properties": {"repobilityId": 122298, "scanner": "repobility-agent-runtime", "fingerprint": "e7d131811a760ccc4825456a49c5dcda242bca877b48f2f4b479907d9a0e7fe9", "category": "quality", "severity": "medium", "confidence": 0.8, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "File writes to localStorage and has an empty or ignore-only catch block without QuotaExceededError handling.", "evidence": {"rule_id": "AGT007", "scanner": "repobility-agent-runtime", "references": ["https://developer.mozilla.org/en-US/docs/Web/API/Web_Storage_API"], "correlation_key": "fp|e7d131811a760ccc4825456a49c5dcda242bca877b48f2f4b479907d9a0e7fe9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/routes/browse.tsx"}, "region": {"startLine": 183}}}]}, {"ruleId": "AGT007", "level": "warning", "message": {"text": "localStorage write failures are swallowed silently"}, "properties": {"repobilityId": 122297, "scanner": "repobility-agent-runtime", "fingerprint": "6a59934885660c987346b419de37fbe18cb93e4ca924a461929e9af461ebb0fd", "category": "quality", "severity": "medium", "confidence": 0.8, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "File writes to localStorage and has an empty or ignore-only catch block without QuotaExceededError handling.", "evidence": {"rule_id": "AGT007", "scanner": "repobility-agent-runtime", "references": ["https://developer.mozilla.org/en-US/docs/Web/API/Web_Storage_API"], "correlation_key": "fp|6a59934885660c987346b419de37fbe18cb93e4ca924a461929e9af461ebb0fd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/lib/watch.tsx"}, "region": {"startLine": 62}}}]}, {"ruleId": "AGT007", "level": "warning", "message": {"text": "localStorage write failures are swallowed silently"}, "properties": {"repobilityId": 122296, "scanner": "repobility-agent-runtime", "fingerprint": "7e06ae8108b9dc20b59323f980dd818e571c6cfc1f2b84488e08597052e513f1", "category": "quality", "severity": "medium", "confidence": 0.8, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "File writes to localStorage and has an empty or ignore-only catch block without QuotaExceededError handling.", "evidence": {"rule_id": "AGT007", "scanner": "repobility-agent-runtime", "references": ["https://developer.mozilla.org/en-US/docs/Web/API/Web_Storage_API"], "correlation_key": "fp|7e06ae8108b9dc20b59323f980dd818e571c6cfc1f2b84488e08597052e513f1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/lib/theme.tsx"}, "region": {"startLine": 26}}}]}, {"ruleId": "AGT007", "level": "warning", "message": {"text": "localStorage write failures are swallowed silently"}, "properties": {"repobilityId": 122295, "scanner": "repobility-agent-runtime", "fingerprint": "d2683114fd51b21c341c70c613f093dee0ad060b157bf6cd91c91cb244e8fcad", "category": "quality", "severity": "medium", "confidence": 0.8, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "File writes to localStorage and has an empty or ignore-only catch block without QuotaExceededError handling.", "evidence": {"rule_id": "AGT007", "scanner": "repobility-agent-runtime", "references": ["https://developer.mozilla.org/en-US/docs/Web/API/Web_Storage_API"], "correlation_key": "fp|d2683114fd51b21c341c70c613f093dee0ad060b157bf6cd91c91cb244e8fcad"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/lib/recents.tsx"}, "region": {"startLine": 99}}}]}, {"ruleId": "AGT007", "level": "warning", "message": {"text": "localStorage write failures are swallowed silently"}, "properties": {"repobilityId": 122294, "scanner": "repobility-agent-runtime", "fingerprint": "ac6398a2de58760953c4e4eeb453e85bde05b99eb894833d8f079a1cbbf0368d", "category": "quality", "severity": "medium", "confidence": 0.8, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "File writes to localStorage and has an empty or ignore-only catch block without QuotaExceededError handling.", "evidence": {"rule_id": "AGT007", "scanner": "repobility-agent-runtime", "references": ["https://developer.mozilla.org/en-US/docs/Web/API/Web_Storage_API"], "correlation_key": "fp|ac6398a2de58760953c4e4eeb453e85bde05b99eb894833d8f079a1cbbf0368d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/components/peek-hint.tsx"}, "region": {"startLine": 20}}}]}, {"ruleId": "AGT015", "level": "warning", "message": {"text": "Remote install command pipes network code directly to a shell"}, "properties": {"repobilityId": 122293, "scanner": "repobility-agent-runtime", "fingerprint": "b9db70f2eebbb575431be97eae3b076991ee0770cf4c48c3e83ffb876de52e1f", "category": "dependency", "severity": "medium", "confidence": 0.7, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "File contains a remote download piped directly to a shell without visible checksum or signature verification.", "evidence": {"rule_id": "AGT015", "scanner": "repobility-agent-runtime", "references": [], "correlation_key": "fp|b9db70f2eebbb575431be97eae3b076991ee0770cf4c48c3e83ffb876de52e1f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/raycast-extension.yml"}, "region": {"startLine": 59}}}]}, {"ruleId": "DEPCUR-NPM", "level": "warning", "message": {"text": "npm package `globals` is 1 major version(s) behind (16.5.0 -> 17.6.0)"}, "properties": {"repobilityId": 122289, "scanner": "repobility-dependency-currency", "fingerprint": "f4c275187d62678e53531c7a1392288d4ed921b8e342d2589f01493536694aa9", "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": "globals", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "17.6.0", "correlation_key": "fp|f4c275187d62678e53531c7a1392288d4ed921b8e342d2589f01493536694aa9", "current_version": "16.5.0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "warning", "message": {"text": "npm package `@eslint/js` is 1 major version(s) behind (9.39.4 -> 10.0.1)"}, "properties": {"repobilityId": 122286, "scanner": "repobility-dependency-currency", "fingerprint": "798bbec4b8f3c16d2fc0688258ef9805b4ef46e0e2c1837d61ef0a6501ad498a", "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/js", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "10.0.1", "correlation_key": "fp|798bbec4b8f3c16d2fc0688258ef9805b4ef46e0e2c1837d61ef0a6501ad498a", "current_version": "9.39.4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "warning", "message": {"text": "npm package `recharts` is 1 major version(s) behind (2.15.4 -> 3.8.1)"}, "properties": {"repobilityId": 122284, "scanner": "repobility-dependency-currency", "fingerprint": "7e44bf543a8aad1dc4b8e7372ad869e3d7d0a606093283aaecfd51222a5c71d7", "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": "recharts", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "3.8.1", "correlation_key": "fp|7e44bf543a8aad1dc4b8e7372ad869e3d7d0a606093283aaecfd51222a5c71d7", "current_version": "2.15.4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "warning", "message": {"text": "npm package `react-day-picker` is 1 major version(s) behind (9.14.0 -> 10.0.1)"}, "properties": {"repobilityId": 122283, "scanner": "repobility-dependency-currency", "fingerprint": "0be74c6a63bca14499d95c45e649a28de1c3c44016fdb6298b2342fba637a0eb", "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": "react-day-picker", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "10.0.1", "correlation_key": "fp|0be74c6a63bca14499d95c45e649a28de1c3c44016fdb6298b2342fba637a0eb", "current_version": "9.14.0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "WEB011", "level": "note", "message": {"text": "Public web app has no humans.txt"}, "properties": {"repobilityId": 122358, "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": "DEPCUR-NPM", "level": "note", "message": {"text": "npm package `@cloudflare/workers-types` is minor version(s) behind (4.20260601.1 -> 4.20260605.1)"}, "properties": {"repobilityId": 122292, "scanner": "repobility-dependency-currency", "fingerprint": "197ba0dd5d2eb58b8057a604f814cefb18953cc2f4d69856a507cc990c0cd237", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": [], "package": "@cloudflare/workers-types", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "4.20260605.1", "correlation_key": "fp|197ba0dd5d2eb58b8057a604f814cefb18953cc2f4d69856a507cc990c0cd237", "current_version": "4.20260601.1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/submission-gate/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "note", "message": {"text": "npm package `node-gyp` is minor version(s) behind (12.3.0 -> 12.4.0)"}, "properties": {"repobilityId": 122291, "scanner": "repobility-dependency-currency", "fingerprint": "0d7b0dc6eb0c3b9971d5f68771bc0d29691327ad573f33dc3003524933a65ca3", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": [], "package": "node-gyp", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "12.4.0", "correlation_key": "fp|0d7b0dc6eb0c3b9971d5f68771bc0d29691327ad573f33dc3003524933a65ca3", "current_version": "12.3.0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "note", "message": {"text": "npm package `@lovable.dev/vite-tanstack-config` is minor version(s) behind (2.1.1 -> 2.3.2)"}, "properties": {"repobilityId": 122287, "scanner": "repobility-dependency-currency", "fingerprint": "facf8720f7f6c93c9aaa93499dbd740803d4397bfa82b7f791503fbf718ca5d9", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": [], "package": "@lovable.dev/vite-tanstack-config", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "2.3.2", "correlation_key": "fp|facf8720f7f6c93c9aaa93499dbd740803d4397bfa82b7f791503fbf718ca5d9", "current_version": "2.1.1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "note", "message": {"text": "npm package `svix` is minor version(s) behind (1.94.0 -> 1.95.1)"}, "properties": {"repobilityId": 122285, "scanner": "repobility-dependency-currency", "fingerprint": "8d7fb3207fb70c3a7e7ed2d180ecc867ae8b5e3c4b0140fec3d1ded1a732b638", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": [], "package": "svix", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "1.95.1", "correlation_key": "fp|8d7fb3207fb70c3a7e7ed2d180ecc867ae8b5e3c4b0140fec3d1ded1a732b638", "current_version": "1.94.0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "note", "message": {"text": "npm package `@tanstack/react-query` is minor version(s) behind (5.100.14 -> 5.101.0)"}, "properties": {"repobilityId": 122281, "scanner": "repobility-dependency-currency", "fingerprint": "ac38a1751ee41055bc83a8f5121cb5f29e453cd7e89e20c31f3a316239dfbdf6", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": [], "package": "@tanstack/react-query", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "5.101.0", "correlation_key": "fp|ac38a1751ee41055bc83a8f5121cb5f29e453cd7e89e20c31f3a316239dfbdf6", "current_version": "5.100.14"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "note", "message": {"text": "npm package `@tanstack/query-core` is minor version(s) behind (5.100.14 -> 5.101.0)"}, "properties": {"repobilityId": 122280, "scanner": "repobility-dependency-currency", "fingerprint": "a2bf0e91c99ed241000568d7129dfefabe54f00b34d09c12e7d68da3bb343587", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": [], "package": "@tanstack/query-core", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "5.101.0", "correlation_key": "fp|a2bf0e91c99ed241000568d7129dfefabe54f00b34d09c12e7d68da3bb343587", "current_version": "5.100.14"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 122268, "scanner": "repobility-ai-code-hygiene", "fingerprint": "dc7e4dd27ca0c07ef085d9116ac06316353961d23a9cce9e1076d0a87f01ef4c", "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": "apps/web/src/lib/detail-assembly.ts", "duplicate_line": 7, "correlation_key": "fp|dc7e4dd27ca0c07ef085d9116ac06316353961d23a9cce9e1076d0a87f01ef4c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/registry/src/content-schema.js"}, "region": {"startLine": 217}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 122267, "scanner": "repobility-ai-code-hygiene", "fingerprint": "442ae54f90d3a6ea71937d18a7782eec7ee3480b7955cf8adf99d6212d569b93", "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": "integrations/raycast/src/jobs.tsx", "duplicate_line": 4, "correlation_key": "fp|442ae54f90d3a6ea71937d18a7782eec7ee3480b7955cf8adf99d6212d569b93"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "integrations/raycast/src/registry-command.tsx"}, "region": {"startLine": 4}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 122266, "scanner": "repobility-ai-code-hygiene", "fingerprint": "ba075f7a013a5217acac7139eef82c6e807c736379edf81e33547de01c6d7a92", "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": "integrations/raycast/src/discovery-command.tsx", "duplicate_line": 1, "correlation_key": "fp|ba075f7a013a5217acac7139eef82c6e807c736379edf81e33547de01c6d7a92"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "integrations/raycast/src/registry-command.tsx"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 122265, "scanner": "repobility-ai-code-hygiene", "fingerprint": "0fb5566f9afa50ec9c8ac9a04c280d9fb1b9618840072dc17d59594268dc48e5", "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": "integrations/raycast/src/discovery-command.tsx", "duplicate_line": 1, "correlation_key": "fp|0fb5566f9afa50ec9c8ac9a04c280d9fb1b9618840072dc17d59594268dc48e5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "integrations/raycast/src/jobs.tsx"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 122264, "scanner": "repobility-ai-code-hygiene", "fingerprint": "b447bfd928b5d9db843b2b5eaa7dbcac451e9fe47da93d2a3455fdb678436363", "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": "apps/web/src/lib/jobs.ts", "duplicate_line": 17, "correlation_key": "fp|b447bfd928b5d9db843b2b5eaa7dbcac451e9fe47da93d2a3455fdb678436363"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "integrations/raycast/src/jobs-feed.ts"}, "region": {"startLine": 12}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 122263, "scanner": "repobility-ai-code-hygiene", "fingerprint": "f52a4c39f4c2b748d8053fd9ef267a2609ad5a876061f33a9d32106570e3eb14", "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": "apps/web/src/routes/jobs.$slug.tsx", "duplicate_line": 98, "correlation_key": "fp|f52a4c39f4c2b748d8053fd9ef267a2609ad5a876061f33a9d32106570e3eb14"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/routes/jobs.index.tsx"}, "region": {"startLine": 50}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 122262, "scanner": "repobility-ai-code-hygiene", "fingerprint": "7af8f7fe5fbcb1d55864c7d2faa29d9f2a6713ee9d50aeac850a45d4b735f86e", "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": "apps/web/src/components/compare-drawer.tsx", "duplicate_line": 58, "correlation_key": "fp|7af8f7fe5fbcb1d55864c7d2faa29d9f2a6713ee9d50aeac850a45d4b735f86e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/routes/compare.tsx"}, "region": {"startLine": 79}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 122261, "scanner": "repobility-ai-code-hygiene", "fingerprint": "f0360252c74c5de555004e6db989812ca17b9256c0a57308db1f5da965ace611", "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": "apps/web/src/lib/job-admin.ts", "duplicate_line": 57, "correlation_key": "fp|f0360252c74c5de555004e6db989812ca17b9256c0a57308db1f5da965ace611"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/lib/jobs.ts"}, "region": {"startLine": 260}}}]}, {"ruleId": "SEC134", "level": "none", "message": {"text": "[SEC134] AI scaffold leftover \u2014 Lorem ipsum / example.com / John Doe in code: Lorem ipsum / John Doe / example.com left in non-test code. AI agents emit these as 'reasonable defaults' when they don't know real values; the human then forgets to swap them. In production, these break demo flows, send mail to a real example.com host (it's owned by IANA), and leak that the codebase had an AI scaffolding pass."}, "properties": {"repobilityId": 122341, "scanner": "repobility-threat-engine", "fingerprint": "fd4b2c21709d6841b407cb4b3a088938ff2958ee16c7d2d9d36e9d596d9e6431", "category": "quality", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe pattern 'README|\\.md:|#.*docs?\\b|//.*docs?\\b' detected on same line", "evidence": {"match": "url: \"https://example.com", "reason": "Safe pattern 'README|\\.md:|#.*docs?\\b|//.*docs?\\b' detected on same line", "rule_id": "SEC134", "scanner": "repobility-threat-engine", "confidence": 0.1, "correlation_key": "fp|fd4b2c21709d6841b407cb4b3a088938ff2958ee16c7d2d9d36e9d596d9e6431"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/validate-deployment-artifacts.mjs"}, "region": {"startLine": 295}}}]}, {"ruleId": "MINED049", "level": "none", "message": {"text": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout."}, "properties": {"repobilityId": 122340, "scanner": "repobility-threat-engine", "fingerprint": "6422d0644079b1a3d66c3d2780677c243798aa3797a0c845f79faa1f11b3b7cb", "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": "print-pii", "owasp": "A09:2021", "cwe_ids": ["CWE-532"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348015+00:00", "triaged_in_corpus": 12, "observations_count": 676566, "ai_coder_pattern_id": 26}, "scanner": "repobility-threat-engine", "correlation_key": "fp|6422d0644079b1a3d66c3d2780677c243798aa3797a0c845f79faa1f11b3b7cb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/sync-resend-templates.ts"}, "region": {"startLine": 28}}}]}, {"ruleId": "MINED049", "level": "none", "message": {"text": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout."}, "properties": {"repobilityId": 122339, "scanner": "repobility-threat-engine", "fingerprint": "353934586a1e383a1513034d84c7c61214979e69db1b7ce35580ef86a0a27bea", "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": "print-pii", "owasp": "A09:2021", "cwe_ids": ["CWE-532"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348015+00:00", "triaged_in_corpus": 12, "observations_count": 676566, "ai_coder_pattern_id": 26}, "scanner": "repobility-threat-engine", "correlation_key": "fp|353934586a1e383a1513034d84c7c61214979e69db1b7ce35580ef86a0a27bea"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/manage-d1-jobs.mjs"}, "region": {"startLine": 5}}}]}, {"ruleId": "MINED049", "level": "none", "message": {"text": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout."}, "properties": {"repobilityId": 122338, "scanner": "repobility-threat-engine", "fingerprint": "43d3010cf52f6e4a9daa762fef4afd905954538c33be2047b2bb87e8c0b24ed8", "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": "print-pii", "owasp": "A09:2021", "cwe_ids": ["CWE-532"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348015+00:00", "triaged_in_corpus": 12, "observations_count": 676566, "ai_coder_pattern_id": 26}, "scanner": "repobility-threat-engine", "correlation_key": "fp|43d3010cf52f6e4a9daa762fef4afd905954538c33be2047b2bb87e8c0b24ed8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/check-d1-job-sources.mjs"}, "region": {"startLine": 10}}}]}, {"ruleId": "MINED058", "level": "none", "message": {"text": "[MINED058] React Dangerously Set Html: dangerouslySetInnerHTML bypasses Reacts JSX escaping. Pair with DOMPurify or never use with user data."}, "properties": {"repobilityId": 122330, "scanner": "repobility-threat-engine", "fingerprint": "b45f1729cb4bedc9daa19ce3d5295d5e5bf945a0c3a730bdcd0e230e516fc2f8", "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": "react-dangerously-set-html", "owasp": "A03:2021", "cwe_ids": ["CWE-79"], "languages": ["javascript", "typescript"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348037+00:00", "triaged_in_corpus": 12, "observations_count": 255650, "ai_coder_pattern_id": 49}, "scanner": "repobility-threat-engine", "correlation_key": "fp|b45f1729cb4bedc9daa19ce3d5295d5e5bf945a0c3a730bdcd0e230e516fc2f8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/components/ui/chart.tsx"}, "region": {"startLine": 103}}}]}, {"ruleId": "SEC118", "level": "none", "message": {"text": "[SEC118] UUIDv1 / UUIDv3 used for security-sensitive identifier: UUIDv1 encodes the MAC address and timestamp, making it predictable. Used as a session token or password-reset key, it's enumerable."}, "properties": {"repobilityId": 122326, "scanner": "repobility-threat-engine", "fingerprint": "1b20e36beea6bd2b957e5fb691d4fbec09f98ab626b75f17210599eba2670aef", "category": "crypto", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe pattern 'randomUUID' detected on same line", "evidence": {"match": "crypto.randomUUID", "reason": "Safe pattern 'randomUUID' detected on same line", "rule_id": "SEC118", "scanner": "repobility-threat-engine", "confidence": 0.1, "correlation_key": "code|crypto|token|50|sec118"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/routes/api/public/newsletter/unsubscribe.ts"}, "region": {"startLine": 50}}}]}, {"ruleId": "SEC118", "level": "none", "message": {"text": "[SEC118] UUIDv1 / UUIDv3 used for security-sensitive identifier: UUIDv1 encodes the MAC address and timestamp, making it predictable. Used as a session token or password-reset key, it's enumerable."}, "properties": {"repobilityId": 122325, "scanner": "repobility-threat-engine", "fingerprint": "5c7c26e2c6c3ec89963a571635f273f41a4ad418262989a8eed7d9bc28a492f2", "category": "crypto", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe pattern 'randomUUID' detected on same line", "evidence": {"match": "crypto.randomUUID", "reason": "Safe pattern 'randomUUID' detected on same line", "rule_id": "SEC118", "scanner": "repobility-threat-engine", "confidence": 0.1, "correlation_key": "code|crypto|token|42|sec118"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/components/entry-signals-panel.tsx"}, "region": {"startLine": 42}}}]}, {"ruleId": "MINED056", "level": "none", "message": {"text": "[MINED056] React Key As Index: key={index} in map() \u2014 re-renders the wrong elements on re-order."}, "properties": {"repobilityId": 122323, "scanner": "repobility-threat-engine", "fingerprint": "49171468b59ebd7e182d1b1e3df20658c8609550646a06dd049a93d5dce46e0c", "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": "react-key-as-index", "owasp": null, "cwe_ids": ["CWE-682"], "languages": ["typescript", "tsx", "javascript", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348032+00:00", "triaged_in_corpus": 12, "observations_count": 299917, "ai_coder_pattern_id": 135}, "scanner": "repobility-threat-engine", "correlation_key": "fp|49171468b59ebd7e182d1b1e3df20658c8609550646a06dd049a93d5dce46e0c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/components/shortcuts-dialog.tsx"}, "region": {"startLine": 136}}}]}, {"ruleId": "MINED056", "level": "none", "message": {"text": "[MINED056] React Key As Index: key={index} in map() \u2014 re-renders the wrong elements on re-order."}, "properties": {"repobilityId": 122322, "scanner": "repobility-threat-engine", "fingerprint": "eb7a6b0fe558d7bc5f976b6f755d04f0190812a5bd46a13a5f6edf5852108e60", "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": "react-key-as-index", "owasp": null, "cwe_ids": ["CWE-682"], "languages": ["typescript", "tsx", "javascript", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348032+00:00", "triaged_in_corpus": 12, "observations_count": 299917, "ai_coder_pattern_id": 135}, "scanner": "repobility-threat-engine", "correlation_key": "fp|eb7a6b0fe558d7bc5f976b6f755d04f0190812a5bd46a13a5f6edf5852108e60"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/components/entry-facets.tsx"}, "region": {"startLine": 30}}}]}, {"ruleId": "MINED052", "level": "none", "message": {"text": "[MINED052] Ts Any Typed: : any used as type annotation. Defeats TypeScript type safety."}, "properties": {"repobilityId": 122321, "scanner": "repobility-threat-engine", "fingerprint": "f54e3f8b81c82ea78df186b8dfadb7e2d9e8cf46d2173efe2b42858bf4c480d4", "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|f54e3f8b81c82ea78df186b8dfadb7e2d9e8cf46d2173efe2b42858bf4c480d4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/components/breadcrumbs.tsx"}, "region": {"startLine": 10}}}]}, {"ruleId": "MINED044", "level": "none", "message": {"text": "[MINED044] Js Console Log Prod (and 32 more): Same pattern found in 32 additional files. Review if needed."}, "properties": {"repobilityId": 122320, "scanner": "repobility-threat-engine", "fingerprint": "6f24ae03479eaf66c5fcfabaaf4635274ba539865e41a1e75746fbba02a1dbd6", "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": "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|6f24ae03479eaf66c5fcfabaaf4635274ba539865e41a1e75746fbba02a1dbd6", "aggregated_count": 32}}}, {"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": 122319, "scanner": "repobility-threat-engine", "fingerprint": "8d9f5e2488e1b49a91ff8cde7db34ef6eb0a254eb64b5cb3e6e058bd62112c1a", "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|8d9f5e2488e1b49a91ff8cde7db34ef6eb0a254eb64b5cb3e6e058bd62112c1a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/server.ts"}, "region": {"startLine": 34}}}]}, {"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": 122318, "scanner": "repobility-threat-engine", "fingerprint": "06f88e9188c505acfa562dfa1525670eea80c94c16f83e7072b1b7cd0ae2db63", "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|06f88e9188c505acfa562dfa1525670eea80c94c16f83e7072b1b7cd0ae2db63"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/routes/__root.tsx"}, "region": {"startLine": 60}}}]}, {"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": 122317, "scanner": "repobility-threat-engine", "fingerprint": "e85fdb374d09ba13507e5c40184dd09b358e0a67efb8df8ca816d0ab1ddcdc95", "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|e85fdb374d09ba13507e5c40184dd09b358e0a67efb8df8ca816d0ab1ddcdc95"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/plugins/source-repo-signals-scheduled.ts"}, "region": {"startLine": 21}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion (and 4 more): Same pattern found in 4 additional files. Review if needed."}, "properties": {"repobilityId": 122316, "scanner": "repobility-threat-engine", "fingerprint": "a9290e9308832db1b29e6bdd660fce33b2dfaab9a936cf53d01913e8456ee998", "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": "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|a9290e9308832db1b29e6bdd660fce33b2dfaab9a936cf53d01913e8456ee998", "aggregated_count": 4}}}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 122315, "scanner": "repobility-threat-engine", "fingerprint": "922490fe6e92143c95ffdf2bad87382698cb9717f0b4269c795a0ecc2972e35c", "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|922490fe6e92143c95ffdf2bad87382698cb9717f0b4269c795a0ecc2972e35c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/components/compatibility-matrix.tsx"}, "region": {"startLine": 167}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 122314, "scanner": "repobility-threat-engine", "fingerprint": "e7b7ecfa16264db757524f3cd1ef2e44706697d37c06dbddc00e81fd503e94e0", "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|e7b7ecfa16264db757524f3cd1ef2e44706697d37c06dbddc00e81fd503e94e0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/components/badges.tsx"}, "region": {"startLine": 166}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 122313, "scanner": "repobility-threat-engine", "fingerprint": "7e8df60b081964772a5bdf27d8b71661901114c81d678bb9e961736986124c7c", "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|7e8df60b081964772a5bdf27d8b71661901114c81d678bb9e961736986124c7c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/submission-gate/src/notifications.ts"}, "region": {"startLine": 172}}}]}, {"ruleId": "SEC029", "level": "none", "message": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 31 more): Same pattern found in 31 additional files. Review if needed."}, "properties": {"repobilityId": 122306, "scanner": "repobility-threat-engine", "fingerprint": "03477f3c225ccbb23c6eb223307bb8f56aa610a43b72f18b0967de2c27d05c02", "category": "ssrf", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 31 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 31 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|03477f3c225ccbb23c6eb223307bb8f56aa610a43b72f18b0967de2c27d05c02"}}}, {"ruleId": "SEC040", "level": "none", "message": {"text": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data (and 13 more): Same pattern found in 13 additional files. Review if needed."}, "properties": {"repobilityId": 122302, "scanner": "repobility-threat-engine", "fingerprint": "ac6339dac80830ce14608b318b63964b8089b6c4b3027ad8609b3dc531580abd", "category": "xss", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 13 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 13 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|ac6339dac80830ce14608b318b63964b8089b6c4b3027ad8609b3dc531580abd"}}}, {"ruleId": "DEPCUR-NPM", "level": "none", "message": {"text": "npm package `nitro` is patch version(s) behind (3.0.260429-beta -> 3.0.260603-beta)"}, "properties": {"repobilityId": 122290, "scanner": "repobility-dependency-currency", "fingerprint": "9038fbcb3aeaa3b244565d1bb12929df17760ccdfe27d4cee8f2229842af919e", "category": "dependency", "severity": "info", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "patch version(s) behind", "signal": "currency", "cwe_ids": [], "package": "nitro", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "3.0.260603-beta", "correlation_key": "fp|9038fbcb3aeaa3b244565d1bb12929df17760ccdfe27d4cee8f2229842af919e", "current_version": "3.0.260429-beta"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "none", "message": {"text": "npm package `eslint-plugin-prettier` is patch version(s) behind (5.5.5 -> 5.5.6)"}, "properties": {"repobilityId": 122288, "scanner": "repobility-dependency-currency", "fingerprint": "21ec8c7aa1a3865fb6ccbe062af4830844ba98b0b3d95ebfe990ef85b881a5a2", "category": "dependency", "severity": "info", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "patch version(s) behind", "signal": "currency", "cwe_ids": [], "package": "eslint-plugin-prettier", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "5.5.6", "correlation_key": "fp|21ec8c7aa1a3865fb6ccbe062af4830844ba98b0b3d95ebfe990ef85b881a5a2", "current_version": "5.5.5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "none", "message": {"text": "npm package `marked` is patch version(s) behind (18.0.4 -> 18.0.5)"}, "properties": {"repobilityId": 122282, "scanner": "repobility-dependency-currency", "fingerprint": "b7447e5a28b223b01df9c9f7a413bf13e5af9f81669f18ec35b921715e7cec3f", "category": "dependency", "severity": "info", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "patch version(s) behind", "signal": "currency", "cwe_ids": [], "package": "marked", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "18.0.5", "correlation_key": "fp|b7447e5a28b223b01df9c9f7a413bf13e5af9f81669f18ec35b921715e7cec3f", "current_version": "18.0.4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "none", "message": {"text": "npm package `tsx` is patch version(s) behind (4.22.3 -> 4.22.4)"}, "properties": {"repobilityId": 122279, "scanner": "repobility-dependency-currency", "fingerprint": "34bc92c6ad9d6df2c19f4d9c36a98ebffaa84f2935f2540acee8048b2bb8190b", "category": "dependency", "severity": "info", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "patch version(s) behind", "signal": "currency", "cwe_ids": [], "package": "tsx", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "4.22.4", "correlation_key": "fp|34bc92c6ad9d6df2c19f4d9c36a98ebffaa84f2935f2540acee8048b2bb8190b", "current_version": "4.22.3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "integrations/raycast/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "none", "message": {"text": "npm package `@raycast/utils` is patch version(s) behind (2.2.5 -> 2.2.6)"}, "properties": {"repobilityId": 122278, "scanner": "repobility-dependency-currency", "fingerprint": "277dd396b78f477cc12547b721398fa7924ef4e9d78b03c4f050b8f0e562d118", "category": "dependency", "severity": "info", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "patch version(s) behind", "signal": "currency", "cwe_ids": [], "package": "@raycast/utils", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "2.2.6", "correlation_key": "fp|277dd396b78f477cc12547b721398fa7924ef4e9d78b03c4f050b8f0e562d118", "current_version": "2.2.5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "integrations/raycast/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "none", "message": {"text": "npm package `@raycast/api` is patch version(s) behind (1.104.18 -> 1.104.19)"}, "properties": {"repobilityId": 122277, "scanner": "repobility-dependency-currency", "fingerprint": "2f8bd51bcfccdfaad95bc7ed6b09d6edd33db3f95da7babd3e8854fc8fc75743", "category": "dependency", "severity": "info", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "patch version(s) behind", "signal": "currency", "cwe_ids": [], "package": "@raycast/api", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "1.104.19", "correlation_key": "fp|2f8bd51bcfccdfaad95bc7ed6b09d6edd33db3f95da7babd3e8854fc8fc75743", "current_version": "1.104.18"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "integrations/raycast/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "none", "message": {"text": "npm package `tsx` is patch version(s) behind (4.22.3 -> 4.22.4)"}, "properties": {"repobilityId": 122276, "scanner": "repobility-dependency-currency", "fingerprint": "12a6189888451c002d020d24139798c0eea7d72eb8e0b5dd249ba420e8413566", "category": "dependency", "severity": "info", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "patch version(s) behind", "signal": "currency", "cwe_ids": [], "package": "tsx", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "4.22.4", "correlation_key": "fp|12a6189888451c002d020d24139798c0eea7d72eb8e0b5dd249ba420e8413566", "current_version": "4.22.3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "none", "message": {"text": "npm package `@commitlint/config-conventional` is patch version(s) behind (21.0.1 -> 21.0.2)"}, "properties": {"repobilityId": 122275, "scanner": "repobility-dependency-currency", "fingerprint": "f7c6d7424816b44e62d70940846ec590e81459a8316386309a6b81b8e0dc2d03", "category": "dependency", "severity": "info", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "patch version(s) behind", "signal": "currency", "cwe_ids": [], "package": "@commitlint/config-conventional", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "21.0.2", "correlation_key": "fp|f7c6d7424816b44e62d70940846ec590e81459a8316386309a6b81b8e0dc2d03", "current_version": "21.0.1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "none", "message": {"text": "npm package `@commitlint/cli` is patch version(s) behind (21.0.1 -> 21.0.2)"}, "properties": {"repobilityId": 122274, "scanner": "repobility-dependency-currency", "fingerprint": "a0f255cc8317aae51b2a64f0dfa3c9245057c0b71009da13180b38dc1b08d5df", "category": "dependency", "severity": "info", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "patch version(s) behind", "signal": "currency", "cwe_ids": [], "package": "@commitlint/cli", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "21.0.2", "correlation_key": "fp|a0f255cc8317aae51b2a64f0dfa3c9245057c0b71009da13180b38dc1b08d5df", "current_version": "21.0.1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "JRN004", "level": "error", "message": {"text": "Consent is collected in UI without visible backend audit persistence"}, "properties": {"repobilityId": 122357, "scanner": "repobility-journey-contract", "fingerprint": "c05c7473cd7ebd0794010b792d65a41b34ca05e40b14b8b9af87b0dec3af5d48", "category": "auth", "severity": "high", "confidence": 0.78, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Frontend consent wording was found, but backend consent/audit metadata was not visible.", "evidence": {"rule_id": "JRN004", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "correlation_key": "code|auth|token|642|jrn004", "backend_consent_model": false, "backend_audit_signal_count": 1}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/registry/src/submission-risk.js"}, "region": {"startLine": 642}}}]}, {"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": 122337, "scanner": "repobility-threat-engine", "fingerprint": "5376c50de83064c950873685aa2ffafec74bd1967fa3a98ffce9c6eacd7750cb", "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(\n  `${", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC083", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|5376c50de83064c950873685aa2ffafec74bd1967fa3a98ffce9c6eacd7750cb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/validate-content.mjs"}, "region": {"startLine": 48}}}]}, {"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": 122336, "scanner": "repobility-threat-engine", "fingerprint": "4782fe951ed509e15e4b3d6646208c8901f9a9ed8ac985049dca979d5a1aa51e", "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(\n  `${", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC083", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|4782fe951ed509e15e4b3d6646208c8901f9a9ed8ac985049dca979d5a1aa51e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/audit-content.mjs"}, "region": {"startLine": 55}}}]}, {"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": 122333, "scanner": "repobility-threat-engine", "fingerprint": "419d9fb268c730dc3c2830f892232fb82171bf130ae806fdec2aab5df6c19d88", "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|419d9fb268c730dc3c2830f892232fb82171bf130ae806fdec2aab5df6c19d88"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/routes/api/public/feeds/health.ts"}, "region": {"startLine": 12}}}]}, {"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": 122332, "scanner": "repobility-threat-engine", "fingerprint": "a72ca1f434ca3a163b9b38813252ecc5f3a40f4254ebb14aa1b521925e8aff1d", "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|a72ca1f434ca3a163b9b38813252ecc5f3a40f4254ebb14aa1b521925e8aff1d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/routes/api/public/alerts.ts"}, "region": {"startLine": 14}}}]}, {"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": 122331, "scanner": "repobility-threat-engine", "fingerprint": "5befbde39c4d988ed6068b19e00219394633441ae4d92b1f6dbab7d114bd57e9", "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|5befbde39c4d988ed6068b19e00219394633441ae4d92b1f6dbab7d114bd57e9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/routes/api/mcp.ts"}, "region": {"startLine": 23}}}]}, {"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": 122329, "scanner": "repobility-threat-engine", "fingerprint": "cba5f2aa088b77e516b0ad7b67e987828cc3568eedffb2ea7b9644889738a9f9", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "url.searchParams.delete(key);", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|cba5f2aa088b77e516b0ad7b67e987828cc3568eedffb2ea7b9644889738a9f9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/registry/src/relationships.js"}, "region": {"startLine": 85}}}]}, {"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": 122328, "scanner": "repobility-threat-engine", "fingerprint": "62e5245c9d02c625e1475744b5c28aab680be0cbba252555fddaeb8382ee48e7", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "visible.delete(entry.target.id);", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|62e5245c9d02c625e1475744b5c28aab680be0cbba252555fddaeb8382ee48e7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/hooks/use-scroll-spy.ts"}, "region": {"startLine": 24}}}]}, {"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": 122327, "scanner": "repobility-threat-engine", "fingerprint": "85bb664b478424546fdd8b40d8f33d756b22f731389950c88726a1c1d33bb1bc", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "Promise.allSettled(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|85bb664b478424546fdd8b40d8f33d756b22f731389950c88726a1c1d33bb1bc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/components/entry-signals-panel.tsx"}, "region": {"startLine": 109}}}]}, {"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": 122312, "scanner": "repobility-threat-engine", "fingerprint": "167bcac33fa66e024145d5ae9fcc02d7c97d9a4fd1129d70b6fbeca9d0437d8e", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "exec(file", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|167bcac33fa66e024145d5ae9fcc02d7c97d9a4fd1129d70b6fbeca9d0437d8e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/ci/classify-pr-changes.mjs"}, "region": {"startLine": 99}}}]}, {"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": 122311, "scanner": "repobility-threat-engine", "fingerprint": "a88acff2d79c874d9195b00ffdb8f0f51f6fdfe92570a63aebcdd64f1a281225", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "exec(value", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|a88acff2d79c874d9195b00ffdb8f0f51f6fdfe92570a63aebcdd64f1a281225"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/registry/src/source-repo.js"}, "region": {"startLine": 58}}}]}, {"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": 122310, "scanner": "repobility-threat-engine", "fingerprint": "2bc481aa91a581960954fa1999612500d12fe66078c8cd60b1bc3ffb30b1a28e", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "exec(\n    String", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|2bc481aa91a581960954fa1999612500d12fe66078c8cd60b1bc3ffb30b1a28e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/submission-gate/src/notifications.ts"}, "region": {"startLine": 110}}}]}, {"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": 122305, "scanner": "repobility-threat-engine", "fingerprint": "bbbb71a33fd51b329eb44433ff706cd8279dfaf1e35021d252be9ff20343e11f", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "Url(e", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|bbbb71a33fd51b329eb44433ff706cd8279dfaf1e35021d252be9ff20343e11f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/components/openapi.tsx"}, "region": {"startLine": 148}}}]}, {"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": 122304, "scanner": "repobility-threat-engine", "fingerprint": "78b231592515bca94765007b33bdcc15b8a17e729c7dc7fd5b3c3d5def751bf5", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "URL(b", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|78b231592515bca94765007b33bdcc15b8a17e729c7dc7fd5b3c3d5def751bf5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/components/compatibility-matrix.tsx"}, "region": {"startLine": 78}}}]}, {"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": 122303, "scanner": "repobility-threat-engine", "fingerprint": "fa6c1ad3ae1f5c6eab07edd07bce6f17f96bcc8a0a57b77ab09184fd28e9cf25", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "Url(n", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|fa6c1ad3ae1f5c6eab07edd07bce6f17f96bcc8a0a57b77ab09184fd28e9cf25"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/submission-gate/src/notifications.ts"}, "region": {"startLine": 119}}}]}, {"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": 122301, "scanner": "repobility-threat-engine", "fingerprint": "e6768362d92ee0b4f970636dac7fecd57bf16026f18ca8c7f6ecd83c37a9af67", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "map((e) => `${e.category}/${e.slug}", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|e6768362d92ee0b4f970636dac7fecd57bf16026f18ca8c7f6ecd83c37a9af67"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/components/comparison-tray.tsx"}, "region": {"startLine": 51}}}]}, {"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": 122300, "scanner": "repobility-threat-engine", "fingerprint": "8c57aa0d2eccd246fb6191669ea82571e1a286c549b5ce9d927a2cfcb7cbf12d", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "map((e) => `${e.category}/${e.slug}", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|8c57aa0d2eccd246fb6191669ea82571e1a286c549b5ce9d927a2cfcb7cbf12d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/web/src/components/compare-drawer.tsx"}, "region": {"startLine": 168}}}]}, {"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": 122299, "scanner": "repobility-threat-engine", "fingerprint": "812a01927199314988c8193b0fe64807aca0ad2d69c3d3c36d9862a448bf9da7", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "map((line) => `  ${line}", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|812a01927199314988c8193b0fe64807aca0ad2d69c3d3c36d9862a448bf9da7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/submission-gate/src/drafts.ts"}, "region": {"startLine": 120}}}]}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 122356, "scanner": "gitleaks", "fingerprint": "b48909cc6a024f0225f5df09f4e55fee7827266e2a8acf560d5f6f7f009ed7ab", "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": "api_key=<redacted>\"", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|token|13|api_key redacted", "duplicate_count": 1, "duplicate_rule_ids": ["generic-api-key"], "duplicate_scanners": ["gitleaks"], "duplicate_fingerprints": ["a2fb1296d667f7580c210fe4caa17d0e1d0795658402ca9958186522e6930f07", "b48909cc6a024f0225f5df09f4e55fee7827266e2a8acf560d5f6f7f009ed7ab"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/mcp-config-validator.test.ts"}, "region": {"startLine": 132}}}]}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 122355, "scanner": "gitleaks", "fingerprint": "5db685b39cb49995847960afe068fe072b28bf311bd82f3f34834cedbec7e6d6", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "access_token=<redacted>\"", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|token|11|access_token redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/mcp-config-validator.test.ts"}, "region": {"startLine": 111}}}]}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 122354, "scanner": "gitleaks", "fingerprint": "09c6566e3539a231f7beb56b4c7c237b2a70b9c42bad6e7b1c94d5694fc4294a", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "token=<redacted>\"", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|token|7|token redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/mcp-config-validator.test.ts"}, "region": {"startLine": 78}}}]}, {"ruleId": "gitlab-pat", "level": "error", "message": {"text": "Identified a GitLab Personal Access Token, risking unauthorized access to GitLab repositories and codebase exposure."}, "properties": {"repobilityId": 122353, "scanner": "gitleaks", "fingerprint": "77af3b9df711d2433740711b0e73b8addd6619f20b9704a7d55dbd0d6f5fd498", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "REDACTED", "rule_id": "gitlab-pat", "scanner": "gitleaks", "detector": "gitlab-pat", "correlation_key": "secret|token|23|redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/mcp-config-validator.test.ts"}, "region": {"startLine": 231}}}]}, {"ruleId": "gitlab-pat", "level": "error", "message": {"text": "Identified a GitLab Personal Access Token, risking unauthorized access to GitLab repositories and codebase exposure."}, "properties": {"repobilityId": 122352, "scanner": "gitleaks", "fingerprint": "eaa3932dee1b7fd8d081b9dffbea98b7516ea6d26847b1e5505d06b87c09a3fd", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "REDACTED", "rule_id": "gitlab-pat", "scanner": "gitleaks", "detector": "gitlab-pat", "correlation_key": "secret|token|21|redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/mcp-config-validator.test.ts"}, "region": {"startLine": 218}}}]}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 122351, "scanner": "gitleaks", "fingerprint": "9d01f23ef67985e68c964d4367e26abd1d12c4928052daca3d7b7752da39b254", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "DEFAULT_INDEXNOW_KEY = \"REDACTED\"", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|scripts/lib/indexnow.mjs|1|default_indexnow_key redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/lib/indexnow.mjs"}, "region": {"startLine": 2}}}]}, {"ruleId": "curl-auth-header", "level": "error", "message": {"text": "Discovered a potential authorization token provided in a curl command header, which could compromise the curl accessed resource."}, "properties": {"repobilityId": 122350, "scanner": "gitleaks", "fingerprint": "c9b090e0c4242fc1e88049131964dae7b91fdf0f3ad93eb42aefca7dafa7eca7", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "curl https://api.example.com/users/user_123 \\\n  -H \"Authorization: Bearer <redacted>\"", "rule_id": "curl-auth-header", "scanner": "gitleaks", "detector": "curl-auth-header", "correlation_key": "secret|token|109|curl token -h authorization: bearer redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "content/commands/mintlify-docs.mdx"}, "region": {"startLine": 1093}}}]}, {"ruleId": "curl-auth-header", "level": "error", "message": {"text": "Discovered a potential authorization token provided in a curl command header, which could compromise the curl accessed resource."}, "properties": {"repobilityId": 122349, "scanner": "gitleaks", "fingerprint": "05602819943f9777a24cba5344bbeed6448f5df2ee8f104a6624f63402f50f06", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "curl https://api.example.com/users/user_123 \\\n    -H \"Authorization: Bearer <redacted>\"", "rule_id": "curl-auth-header", "scanner": "gitleaks", "detector": "curl-auth-header", "correlation_key": "secret|token|34|curl token -h authorization: bearer redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "content/commands/mintlify-docs.mdx"}, "region": {"startLine": 348}}}]}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 122348, "scanner": "gitleaks", "fingerprint": "271fcdc017d86d17365050931d3064c09dcbea6bb956045c972299fef2655c07", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "OAuth, REDACTED", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|token|27|oauth redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "content/mcp/datadog-mcp-server.mdx"}, "region": {"startLine": 278}}}]}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 122347, "scanner": "gitleaks", "fingerprint": "00c287e5ac4ddba1a96f551367d46ffc135b309221eb7cbf0789a760e2405e37", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "token\": \"<redacted>\"", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|content/commands/docs.mdx|203|token : redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "content/commands/docs.mdx"}, "region": {"startLine": 2035}}}]}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 122346, "scanner": "gitleaks", "fingerprint": "57344737c92a073aa459540a0e562541e32fad3c3290c6ef5c5c2bc57a51e0df", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "token\": \"<redacted>\"", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|content/commands/docs.mdx|74|token : redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "content/commands/docs.mdx"}, "region": {"startLine": 742}}}]}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 122345, "scanner": "gitleaks", "fingerprint": "7d2a387026045198467fb99ded8a94d455931530f67bafff484982aaff748005", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "JWT_SECRET=<redacted>", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|token|35|jwt_secret redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "content/commands/security.mdx"}, "region": {"startLine": 357}}}]}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 122344, "scanner": "gitleaks", "fingerprint": "9978bcf37710c03d96b39b978db39c52f927b6113cb502b2f1cd5c67a734829f", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "anthropic_api_rate_limit\", \"REDACTED\"", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|token|117|anthropic_api_rate_limit redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "content/agents/production-reliability-engineer.mdx"}, "region": {"startLine": 1172}}}]}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 122343, "scanner": "gitleaks", "fingerprint": "2ebb79bda2178710a1ccdb3c37045883b387d8b4530ef66f8d4aa4bee6a7c321", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "anthropic_api_rate_limit', 'REDACTED'", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|token|53|anthropic_api_rate_limit redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "content/agents/production-reliability-engineer.mdx"}, "region": {"startLine": 539}}}]}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 122342, "scanner": "gitleaks", "fingerprint": "c597dc6817f328f47679840a373f02f51e01c399aa09a49dd20e5d1ec092dc38", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "API impact, REDACTED", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|token|17|api impact redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "content/agents/material-ui-repository-contributor-agent.mdx"}, "region": {"startLine": 173}}}]}, {"ruleId": "MINED133", "level": "error", "message": {"text": "Hardcoded Discord webhook URL in source"}, "properties": {"repobilityId": 122273, "scanner": "repobility-supply-chain", "fingerprint": "34855085997d1744c289d71454720e875534a3b47a51d223153c32c966d886e7", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "exfil-webhook-url", "owasp": null, "cwe_ids": ["CWE-200", "CWE-540"], "languages": ["any"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|34855085997d1744c289d71454720e875534a3b47a51d223153c32c966d886e7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/submission-gate-worker.test.ts"}, "region": {"startLine": 917}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "Workflow uses `secrets.TRUNK_ORG_URL_SLUG` on a `pull_request` trigger"}, "properties": {"repobilityId": 122272, "scanner": "repobility-supply-chain", "fingerprint": "683644db3c6a25f320c3c15cef933e3154aa43f215c58fdc4503b86f403f0adb", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|683644db3c6a25f320c3c15cef933e3154aa43f215c58fdc4503b86f403f0adb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/content-validation.yml"}, "region": {"startLine": 756}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "Workflow uses `secrets.TRUNK_API_TOKEN` on a `pull_request` trigger"}, "properties": {"repobilityId": 122271, "scanner": "repobility-supply-chain", "fingerprint": "bedb3669f84b47409ffeb7c72b82473c65b71802709ddea80ebc8489b8f9edbb", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|bedb3669f84b47409ffeb7c72b82473c65b71802709ddea80ebc8489b8f9edbb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/content-validation.yml"}, "region": {"startLine": 755}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "Workflow uses `secrets.TRUNK_ORG_URL_SLUG` on a `pull_request` trigger"}, "properties": {"repobilityId": 122270, "scanner": "repobility-supply-chain", "fingerprint": "856b468322ac9a2726f27b00744554a635eeba3d0e785eab8a066f3f17ee3309", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|856b468322ac9a2726f27b00744554a635eeba3d0e785eab8a066f3f17ee3309"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/content-validation.yml"}, "region": {"startLine": 606}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "Workflow uses `secrets.TRUNK_API_TOKEN` on a `pull_request` trigger"}, "properties": {"repobilityId": 122269, "scanner": "repobility-supply-chain", "fingerprint": "3993b353921bd5913a326a5cc80fe3370632f113cbae69673583353fc8763fad", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|3993b353921bd5913a326a5cc80fe3370632f113cbae69673583353fc8763fad"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/content-validation.yml"}, "region": {"startLine": 605}}}]}]}]}