{"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": "JRN003", "name": "Frontend API reference is not matched by discovered backend routes", "shortDescription": {"text": "Frontend API reference is not matched by discovered backend routes"}, "fullDescription": {"text": "Add the backend route, update the frontend constant to the implemented endpoint, or document that the route is served by another service and exclude it with .repobilityignore."}, "properties": {"scanner": "repobility-journey-contract", "category": "quality", "severity": "medium", "confidence": 0.74, "cwe": "", "owasp": ""}}, {"id": "AUC009", "name": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function", "shortDescription": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: ANY /[."}, "fullDescription": {"text": "Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml."}, "properties": {"scanner": "repobility-access-control", "category": "auth", "severity": "medium", "confidence": 0.68, "cwe": "", "owasp": ""}}, {"id": "AUC002", "name": "[AUC002] Low visible authorization coverage in route inventory: Only 39.7% of discovered routes show nearby authenticati", "shortDescription": {"text": "[AUC002] Low visible authorization coverage in route inventory: Only 39.7% of discovered routes show nearby authentication, authorization, middleware, or public-route evidence."}, "fullDescription": {"text": "Review the access matrix and add explicit framework auth declarations or policy-file exceptions for intentionally public routes."}, "properties": {"scanner": "repobility-access-control", "category": "auth", "severity": "medium", "confidence": 0.74, "cwe": "", "owasp": ""}}, {"id": "AUC001", "name": "[AUC001] No Repobility access matrix policy found: The repository uses web/API frameworks but does not define .repobilit", "shortDescription": {"text": "[AUC001] No Repobility access matrix policy found: The repository uses web/API frameworks but does not define .repobility/access.yml or equivalent authorization documentation."}, "fullDescription": {"text": "Add .repobility/access.yml mapping routes to anonymous, authenticated, owner, admin, and super_admin. Keep business-specific rules in the repo so CI can enforce them."}, "properties": {"scanner": "repobility-access-control", "category": "auth", "severity": "medium", "confidence": 0.92, "cwe": "", "owasp": ""}}, {"id": "DKR003", "name": "Compose service `nocodb` image uses the latest tag", "shortDescription": {"text": "Compose service `nocodb` image uses the latest tag"}, "fullDescription": {"text": "Pin to a maintained version tag or digest and update it deliberately through dependency automation."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.94, "cwe": "", "owasp": ""}}, {"id": "DKR002", "name": "Compose service `nginx-proxy-manager` image has no explicit tag", "shortDescription": {"text": "Compose service `nginx-proxy-manager` image has no explicit tag"}, "fullDescription": {"text": "Pin the image to a supported version tag or digest, for example python:3.13-slim or image@sha256:..."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "DKC015", "name": "Database service has no healthcheck", "shortDescription": {"text": "Database service has no healthcheck"}, "fullDescription": {"text": "Add a database-native healthcheck such as pg_isready, mysqladmin ping, redis-cli ping, or the vendor's readiness command."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "DKC014", "name": "Database data bind mount is inside the Docker build context", "shortDescription": {"text": "Database data bind mount is inside the Docker build context"}, "fullDescription": {"text": "Prefer a named volume or a host path outside the build context. If a repo-local path is required, add it to .dockerignore and .gitignore and verify backups separately."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.84, "cwe": "", "owasp": ""}}, {"id": "DKR018", "name": "Database dump or local database file is included in Docker build context", "shortDescription": {"text": "Database dump or local database file is included in Docker build context"}, "fullDescription": {"text": "Move database dumps outside the Docker build context or exclude them with .dockerignore. Keep backup and restore artifacts in private object storage or a dedicated backup workflow."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.86, "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": "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": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC091", "name": "[SEC091] Go: net/http server without timeouts: HTTP server without ReadHeaderTimeout/ReadTimeout/WriteTimeout is vulnera", "shortDescription": {"text": "[SEC091] Go: net/http server without timeouts: HTTP server without ReadHeaderTimeout/ReadTimeout/WriteTimeout is vulnerable to Slowloris. Ported from gosec G112 + G114 (Apache-2.0)."}, "fullDescription": {"text": "Construct `&http.Server{Addr: ..., ReadHeaderTimeout: 5*time.Second, ReadTimeout: 10*time.Second, WriteTimeout: 30*time.Second}`."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC001", "name": "[SEC001] Hardcoded Password: Hardcoded password found in source code.", "shortDescription": {"text": "[SEC001] Hardcoded Password: Hardcoded password found in source code."}, "fullDescription": {"text": "Use environment variables or a secrets manager."}, "properties": {"scanner": "repobility-threat-engine", "category": "credential_exposure", "severity": "medium", "confidence": 0.3, "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": "SEC136", "name": "[SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns ", "shortDescription": {"text": "[SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns success or no-ops. AI agents reach for this pattern when a flaky test or an unfamiliar API throws \u2014 wrap, swallow, retur"}, "fullDescription": {"text": "Catch the specific exception type, log at error level with full exception info, and return a failure-shaped result. If the operation is genuinely best-effort, log at warning and document why in a comment so the next reader (or scanner) knows."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "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": "SEC041", "name": "[SEC041] Tabnabbing \u2014 target=\"_blank\" without rel=\"noopener noreferrer\": <a target=\"_blank\"> without rel=\"noopener noref", "shortDescription": {"text": "[SEC041] Tabnabbing \u2014 target=\"_blank\" without rel=\"noopener noreferrer\": <a target=\"_blank\"> without rel=\"noopener noreferrer\" leaks window.opener to the opened page. The opened page can then run window.opener.location = 'phishing-site' and"}, "fullDescription": {"text": "Add rel=\"noopener noreferrer\" to every <a target=\"_blank\">:\n  <a href=\"...\" target=\"_blank\" rel=\"noopener noreferrer\">link</a>\nFor dynamically generated links from JS, set rel on the element before appending. Even safe-looking subdomains should harden \u2014 costs nothing."}, "properties": {"scanner": "repobility-threat-engine", "category": "security", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "AUC005", "name": "[AUC005] No authorization-focused tests detected: No test files with common authorization, ownership, 403, admin, or sup", "shortDescription": {"text": "[AUC005] No authorization-focused tests detected: No test files with common authorization, ownership, 403, admin, or super_admin assertions were found."}, "fullDescription": {"text": "Add regression tests for anonymous denial, cross-user object denial, admin role limits, and super_admin-only behavior."}, "properties": {"scanner": "repobility-access-control", "category": "auth", "severity": "low", "confidence": 0.76, "cwe": "", "owasp": ""}}, {"id": "DKC017", "name": "Database password is wired through an environment variable placeholder", "shortDescription": {"text": "Database password is wired through an environment variable placeholder"}, "fullDescription": {"text": "Prefer Compose secrets or your platform secret manager with *_FILE variables where the image supports them. Rotate only if a real value was committed."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.58, "cwe": "", "owasp": ""}}, {"id": "DKC010", "name": "Compose service lacks no-new-privileges hardening", "shortDescription": {"text": "Compose service lacks no-new-privileges hardening"}, "fullDescription": {"text": "Add `security_opt: [\"no-new-privileges:true\"]` unless the service has a documented need for privilege escalation."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.62, "cwe": "", "owasp": ""}}, {"id": "DKC006", "name": "Compose service does not declare a runtime user", "shortDescription": {"text": "Compose service does not declare a runtime user"}, "fullDescription": {"text": "Set a non-root `user:` in Compose or ensure the final image stage has a non-root USER directive."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.56, "cwe": "", "owasp": ""}}, {"id": "SEC132", "name": "[SEC132] String concat where the language has interpolation (AI style drift): String built by concatenation where the la", "shortDescription": {"text": "[SEC132] String concat where the language has interpolation (AI style drift): String built by concatenation where the language has cleaner interpolation (Python f-strings since 3.6, JS template literals since ES6). Not a vulnerability on it"}, "fullDescription": {"text": "Python: `f\"prefix {var} suffix\"`. JS/TS: `` `prefix ${var} suffix` ``. Add a lint rule (pyupgrade UP032, eslint prefer-template) so future PRs catch this automatically."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "low", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC006", "name": "[SEC006] XSS Risk: Direct HTML injection without sanitization.", "shortDescription": {"text": "[SEC006] XSS Risk: Direct HTML injection without sanitization."}, "fullDescription": {"text": "Use textContent instead of innerHTML. Sanitize with DOMPurify."}, "properties": {"scanner": "repobility-threat-engine", "category": "injection", "severity": "low", "confidence": 0.4, "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": "MINED057", "name": "[MINED057] Todo Bomb: Code path with a TODO/FIXME/HACK comment that gates correctness \u2014 left for later but never resolve", "shortDescription": {"text": "[MINED057] Todo Bomb: Code path with a TODO/FIXME/HACK comment that gates correctness \u2014 left for later but never resolved."}, "fullDescription": {"text": "Review and fix per the pattern semantics."}, "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": "MINED053", "name": "[MINED053] Placeholder Default Username: foo@bar.com / john.doe@example.com / admin/admin / changeme \u2014 typical AI placeh", "shortDescription": {"text": "[MINED053] Placeholder Default Username: foo@bar.com / john.doe@example.com / admin/admin / changeme \u2014 typical AI placeholder credentials."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-1392,CWE-798 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC020", "name": "[SEC020] Secret Printed to Logs (and 3 more): Same pattern found in 3 additional files. Review if needed.", "shortDescription": {"text": "[SEC020] Secret Printed to Logs (and 3 more): Same pattern found in 3 additional files. Review if needed."}, "fullDescription": {"text": "Log only redacted, hashed, or last-four-style metadata. Rotate any secret that may have reached logs."}, "properties": {"scanner": "repobility-threat-engine", "category": "credential_exposure", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED043", "name": "[MINED043] Http Not Https (and 7 more): Same pattern found in 7 additional files. Review if needed.", "shortDescription": {"text": "[MINED043] Http Not Https (and 7 more): Same pattern found in 7 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-319 / A02:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC083", "name": "[SEC083] JS: new RegExp() with non-literal (and 1 more): Same pattern found in 1 additional files. Review if needed.", "shortDescription": {"text": "[SEC083] JS: new RegExp() with non-literal (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "fullDescription": {"text": "Use a literal RegExp or whitelist-validate user input before constructing patterns."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED044", "name": "[MINED044] Js Console Log Prod (and 100 more): Same pattern found in 100 additional files. Review if needed.", "shortDescription": {"text": "[MINED044] Js Console Log Prod (and 100 more): Same pattern found in 100 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": "SEC029", "name": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 41 more): Same pattern found in 41 addi", "shortDescription": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 41 more): Same pattern found in 41 additional files. Review if needed."}, "fullDescription": {"text": "Validate the URL against an allowlist BEFORE fetching:\n  ALLOWED = {'images.example.com', 'cdn.example.com'}\n  host = urlparse(url).hostname\n  if host not in ALLOWED: abort(400)\nOr use a server-side proxy (Imgproxy / serve-files-only-from-S3) that isolates outbound network access from the request handler.\nBlock private CIDRs explicitly: 10/8, 172.16/12, 192.168/16, 169.254/16."}, "properties": {"scanner": "repobility-threat-engine", "category": "ssrf", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC128", "name": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 20 more): Same pattern found in 20 add", "shortDescription": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 20 more): Same pattern found in 20 additional files. Review if needed."}, "fullDescription": {"text": "Add `await` before each async call, or chain with `.then`. If you intentionally want fire-and-forget, prefix with `void` (TS) or assign to `_` (Python with `asyncio.create_task`) to make the intent explicit and survive lint."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED054", "name": "[MINED054] Ts As Any (and 120 more): Same pattern found in 120 additional files. Review if needed.", "shortDescription": {"text": "[MINED054] Ts As Any (and 120 more): Same pattern found in 120 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-704 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED052", "name": "[MINED052] Ts Any Typed (and 362 more): Same pattern found in 362 additional files. Review if needed.", "shortDescription": {"text": "[MINED052] Ts Any Typed (and 362 more): Same pattern found in 362 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-704 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED045", "name": "[MINED045] Ts Non Null Assertion (and 91 more): Same pattern found in 91 additional files. Review if needed.", "shortDescription": {"text": "[MINED045] Ts Non Null Assertion (and 91 more): Same pattern found in 91 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": "SEC040", "name": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data (and 12 more): Same pattern found in 12 additional f", "shortDescription": {"text": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data (and 12 more): Same pattern found in 12 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": "MINED115", "name": "[MINED115] Action `peter-evans/dockerhub-description` pinned to mutable ref `@v2`: `uses: peter-evans/dockerhub-descript", "shortDescription": {"text": "[MINED115] Action `peter-evans/dockerhub-description` pinned to mutable ref `@v2`: `uses: peter-evans/dockerhub-description@v2` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/"}, "fullDescription": {"text": "Replace with: `uses: peter-evans/dockerhub-description@<40-char-sha>  # v2` and let Dependabot bump it on a scheduled cadence."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED122", "name": "[MINED122] package.json dep `nocodb-sdk` pulled from URL/Git: `dependencies.nocodb-sdk` = `file:../../nocodb-sdk` bypass", "shortDescription": {"text": "[MINED122] package.json dep `nocodb-sdk` pulled from URL/Git: `dependencies.nocodb-sdk` = `file:../../nocodb-sdk` bypasses the npm registry. No integrity hash, no version locking, no registry-side scanning. If the URL or git host is comprom"}, "fullDescription": {"text": "Publish the dependency to npm (or your private registry) and reference it by `^x.y.z`. If that's not possible, lock by commit SHA: `git+https://...#<full-sha>` AND verify the SHA in CI."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "AUC003", "name": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby a", "shortDescription": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: ANY /data/:viewId/:rowId/hm/:colId"}, "fullDescription": {"text": "Add ownership, tenant, relationship, or policy checks before reading or mutating the target object."}, "properties": {"scanner": "repobility-access-control", "category": "auth", "severity": "high", "confidence": 0.7, "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": "SEC030", "name": "[SEC030] Open Redirect \u2014 user-controlled redirect target: Redirect target is taken directly from user input without vali", "shortDescription": {"text": "[SEC030] Open Redirect \u2014 user-controlled redirect target: Redirect target is taken directly from user input without validating that the destination is local to the site. Attackers craft phishing URLs that appear to come from your domain but"}, "fullDescription": {"text": "Validate the redirect URL against an allowlist of safe destinations:\n  # Django:\n  from django.utils.http import url_has_allowed_host_and_scheme\n  if not url_has_allowed_host_and_scheme(url, allowed_hosts={request.get_host()}):\n      url = '/'  # safe default\nOr restrict to relative paths only: `if not url.startswith('/'): abort(400)`. Never accept external schemes without verification."}, "properties": {"scanner": "repobility-threat-engine", "category": "open_redirect", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC036", "name": "[SEC036] HTTP Header Injection / CRLF Injection: Setting an HTTP response header from user input without stripping CRLF ", "shortDescription": {"text": "[SEC036] HTTP Header Injection / CRLF Injection: Setting an HTTP response header from user input without stripping CRLF lets attackers inject extra headers (Set-Cookie, etc.) or split the response. Real CVEs: CVE-2017-15193 (Mahara), CVE-20"}, "fullDescription": {"text": "Strip `\\r\\n` before setting headers:\n  safe = value.replace('\\r','').replace('\\n','')\n  response.headers['X-Custom'] = safe\nMost modern frameworks (Django 3+, Express 4.10+) already do this \u2014 but custom header-setting code often doesn't. Prefer framework methods (`response.set_cookie`) over manual header dict assignment."}, "properties": {"scanner": "repobility-threat-engine", "category": "injection", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC027", "name": "[SEC027] XML External Entity (XXE) \u2014 Node.js xml parsers: Node.js XML parsers can expand external entities if not config", "shortDescription": {"text": "[SEC027] XML External Entity (XXE) \u2014 Node.js xml parsers: Node.js XML parsers can expand external entities if not configured. libxmljs in particular has had XXE CVEs."}, "fullDescription": {"text": "Pass `noent: false` to libxmljs. Avoid xml2js or pass explicit secure config. Prefer parsers that don't expand external entities at all."}, "properties": {"scanner": "repobility-threat-engine", "category": "xxe", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED004", "name": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums).", "shortDescription": {"text": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums)."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-327 / A02:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED014", "name": "[MINED014] Disabled Tls Verify: verify=False in requests, rejectUnauthorized:false in node, InsecureSkipVerify:true in G", "shortDescription": {"text": "[MINED014] Disabled Tls Verify: verify=False in requests, rejectUnauthorized:false in node, InsecureSkipVerify:true in Go."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-295 / A02:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC033", "name": "[SEC033] Prototype Pollution \u2014 unfiltered merge of user object: Merging user-controlled object into a target without fil", "shortDescription": {"text": "[SEC033] Prototype Pollution \u2014 unfiltered merge of user object: Merging user-controlled object into a target without filtering `__proto__`/`constructor`/`prototype` keys lets attackers inject properties onto Object.prototype, affecting ever"}, "fullDescription": {"text": "Sanitize keys BEFORE merge:\n  function sanitize(obj) {\n    delete obj.__proto__;\n    delete obj.constructor;\n    delete obj.prototype;\n    return obj;\n  }\nOr use Object.create(null) for the target. Or use Map() for user-key-indexed data. Upgrade lodash >= 4.17.21 for partial mitigation."}, "properties": {"scanner": "repobility-threat-engine", "category": "prototype_pollution", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED123", "name": "[MINED123] Trojan Source bidi character (LRM) in source: Line 414 contains a Unicode bidirectional override character (U", "shortDescription": {"text": "[MINED123] Trojan Source bidi character (LRM) in source: Line 414 contains a Unicode bidirectional override character (U+200E LRM). This is the 'Trojan Source' attack (CVE-2021-42574): the character makes the compiler / interpreter see diff"}, "fullDescription": {"text": "Audit the line manually. If the character is not intentional (it almost never is in code), remove it. Configure your editor / pre-commit hook to reject bidi controls in source."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "critical", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "JRN001", "name": "Token handoff appears to use a callback URL or fragment", "shortDescription": {"text": "Token handoff appears to use a callback URL or fragment"}, "fullDescription": {"text": "Use a server-side one-time authorization code tied to a registered callback allowlist. Do not append access tokens to callback URLs or fragments."}, "properties": {"scanner": "repobility-journey-contract", "category": "auth", "severity": "critical", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "DKC007", "name": "Compose service contains a literal secret environment value", "shortDescription": {"text": "Compose service contains a literal secret environment value"}, "fullDescription": {"text": "Rotate the value if real. Move it to Docker Compose secrets, a platform secret manager, or an uncommitted environment file."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "critical", "confidence": 0.96, "cwe": "", "owasp": ""}}, {"id": "DKC008", "name": "Compose service mounts the Docker socket", "shortDescription": {"text": "Compose service mounts the Docker socket"}, "fullDescription": {"text": "Avoid mounting docker.sock. Use a narrow proxy, rootless build service, or provider-native deployment credentials."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "critical", "confidence": 0.98, "cwe": "", "owasp": ""}}, {"id": "SEC084", "name": "[SEC084] JS: require() with non-literal: require(<variable>) loads arbitrary modules \u2014 equivalent to eval at module scop", "shortDescription": {"text": "[SEC084] JS: require() with non-literal: require(<variable>) loads arbitrary modules \u2014 equivalent to eval at module scope. Ported from eslint-plugin-security detect-non-literal-require (Apache-2.0)."}, "fullDescription": {"text": "Use static imports or a static mapping `const modules = { foo: require('./foo') }`."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "critical", "confidence": 1.0, "cwe": "", "owasp": ""}}]}}, "automationDetails": {"id": "repobility/864"}, "properties": {"repository": "nocodb/nocodb", "repoUrl": "https://github.com/nocodb/nocodb", "branch": "develop"}, "results": [{"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 78238, "scanner": "repobility-journey-contract", "fingerprint": "4bd65d75037647d9e815bb95019c9611d5257da37062ae64a47a5451a5bce2fc", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/v1/user/profile", "correlation_key": "fp|4bd65d75037647d9e815bb95019c9611d5257da37062ae64a47a5451a5bce2fc", "backend_endpoint_count": 340}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-secret-mgr/src/nocodb/cli.js"}, "region": {"startLine": 2}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 78237, "scanner": "repobility-journey-contract", "fingerprint": "11c265ad107ccf1dc23b1e01290185dd041e9ed862b58c2081938d8bef9855c8", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/v3/data/${base.value", "correlation_key": "fp|11c265ad107ccf1dc23b1e01290185dd041e9ed862b58c2081938d8bef9855c8", "backend_endpoint_count": 340}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/smartsheet/details/Api.vue"}, "region": {"startLine": 77}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 78236, "scanner": "repobility-journey-contract", "fingerprint": "34da79d968068d26f0a8919b6dd86a0b0b3a2601b8abe3dba9f2b5f0449bad33", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/v1/db/data-import/upload", "correlation_key": "fp|34da79d968068d26f0a8919b6dd86a0b0b3a2601b8abe3dba9f2b5f0449bad33", "backend_endpoint_count": 340}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/dlg/QuickImport.vue"}, "region": {"startLine": 252}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 78235, "scanner": "repobility-journey-contract", "fingerprint": "5685d86954ee4fcae739ee5a3cbafb062cc9bc42bfae421cf97a9ee3ae49d728", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/v2/meta/migrate/{param}", "correlation_key": "fp|5685d86954ee4fcae739ee5a3cbafb062cc9bc42bfae421cf97a9ee3ae49d728", "backend_endpoint_count": 340}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/dashboard/settings/base/Migrate.vue"}, "region": {"startLine": 25}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 78234, "scanner": "repobility-journey-contract", "fingerprint": "0e73e9cc7365139a4a301cb95ecb5f721b992de6c8791a9a96109fbf845b9e23", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/v3/meta/bases/{param}/swagger", "correlation_key": "fp|0e73e9cc7365139a4a301cb95ecb5f721b992de6c8791a9a96109fbf845b9e23", "backend_endpoint_count": 340}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/dashboard/TreeView/Project/ActionMenu.vue"}, "region": {"startLine": 142}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 78233, "scanner": "repobility-journey-contract", "fingerprint": "18bd4d5a2c859febe112fde67ad5eeae8d04dcf1d3e442da36d8dfc98bf31c64", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/v2/meta/bases/{param}/swagger", "correlation_key": "fp|18bd4d5a2c859febe112fde67ad5eeae8d04dcf1d3e442da36d8dfc98bf31c64", "backend_endpoint_count": 340}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/dashboard/TreeView/Project/ActionMenu.vue"}, "region": {"startLine": 134}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 78232, "scanner": "repobility-journey-contract", "fingerprint": "256a61709356a09759073f9033adb8e4b21eb113108654b478cc4a4495a2ed26", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/v1/orgs/{param}/users/{param}", "correlation_key": "fp|256a61709356a09759073f9033adb8e4b21eb113108654b478cc4a4495a2ed26", "backend_endpoint_count": 340}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/account/UsersModal.vue"}, "region": {"startLine": 151}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 78231, "scanner": "repobility-journey-contract", "fingerprint": "de76a96adf173ab2b05ce251e661b38676e0bc0bdbbb0093b331e27a6c4450f1", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/v1/orgs/{param}/users/${deletemodalinfo.value", "correlation_key": "fp|de76a96adf173ab2b05ce251e661b38676e0bc0bdbbb0093b331e27a6c4450f1", "backend_endpoint_count": 340}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/account/UserList.vue"}, "region": {"startLine": 100}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 78230, "scanner": "repobility-journey-contract", "fingerprint": "178091b621fd56f3283a11ba2ac020c4385287a22cfbef9ebb66e5769165a61b", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/v1/orgs/{param}/users/{param}", "correlation_key": "fp|178091b621fd56f3283a11ba2ac020c4385287a22cfbef9ebb66e5769165a61b", "backend_endpoint_count": 340}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/account/UserList.vue"}, "region": {"startLine": 29}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: ANY /[."}, "properties": {"repobilityId": 78227, "scanner": "repobility-access-control", "fingerprint": "9a17df2509c5bdeea75de6e3e7ce5f8df4bf2604d1886ad2ef6a37716768369b", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/[", "method": "ANY", "scanner": "repobility-access-control", "framework": "NestJS", "correlation_key": "code|auth|token|76|auc009", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/controllers/extensions.controller.ts"}, "region": {"startLine": 76}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: ANY /[."}, "properties": {"repobilityId": 78226, "scanner": "repobility-access-control", "fingerprint": "09938a539b0a3e0e7b27fb3e31d2b84686696921f20827126490d92b02b9b922", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/[", "method": "ANY", "scanner": "repobility-access-control", "framework": "NestJS", "correlation_key": "code|auth|token|26|auc009", "identity_targets": ["authenticated"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/controllers/extensions.controller.ts"}, "region": {"startLine": 26}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: ANY /[."}, "properties": {"repobilityId": 78225, "scanner": "repobility-access-control", "fingerprint": "f11c5575bfb241858451c9c04d62ff857ae1541886beeb495051a298421e40d6", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/[", "method": "ANY", "scanner": "repobility-access-control", "framework": "NestJS", "correlation_key": "code|auth|token|33|auc009", "identity_targets": ["authenticated"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/controllers/view-columns.controller.ts"}, "region": {"startLine": 33}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: ANY /[."}, "properties": {"repobilityId": 78224, "scanner": "repobility-access-control", "fingerprint": "424905fba3163d5e10be633a507a22e4461eb838ab375a696ad013c85f8cb442", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/[", "method": "ANY", "scanner": "repobility-access-control", "framework": "NestJS", "correlation_key": "code|auth|token|82|auc009", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/controllers/integrations.controller.ts"}, "region": {"startLine": 82}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: ANY /[."}, "properties": {"repobilityId": 78223, "scanner": "repobility-access-control", "fingerprint": "486c75d1da2222f42162667caa49257158f3d219cb54652e7d7d904f3f92568c", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/[", "method": "ANY", "scanner": "repobility-access-control", "framework": "NestJS", "correlation_key": "code|auth|token|31|auc009", "identity_targets": ["authenticated"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/controllers/integrations.controller.ts"}, "region": {"startLine": 31}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: ANY /[."}, "properties": {"repobilityId": 78222, "scanner": "repobility-access-control", "fingerprint": "f5a383ec6cc0a78a3c12207567efc5af522bae5abd463c83fed91c45bae9e36e", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/[", "method": "ANY", "scanner": "repobility-access-control", "framework": "NestJS", "correlation_key": "code|auth|token|25|auc009", "identity_targets": ["authenticated"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/controllers/kanbans.controller.ts"}, "region": {"startLine": 25}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: ANY /[."}, "properties": {"repobilityId": 78221, "scanner": "repobility-access-control", "fingerprint": "021c910d9360d9ff0e3f3208235c1d64598080570a95ad3efc90db5a3d8ec438", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/[", "method": "ANY", "scanner": "repobility-access-control", "framework": "NestJS", "correlation_key": "code|auth|token|193|auc009", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/controllers/views.controller.ts"}, "region": {"startLine": 193}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: ANY /[."}, "properties": {"repobilityId": 78220, "scanner": "repobility-access-control", "fingerprint": "6c071ee671859360bb4e8c2dde749a1f3bc92cacb876680b54039b5a5128e526", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/[", "method": "ANY", "scanner": "repobility-access-control", "framework": "NestJS", "correlation_key": "code|auth|token|90|auc009", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/controllers/views.controller.ts"}, "region": {"startLine": 90}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: ANY /[."}, "properties": {"repobilityId": 78219, "scanner": "repobility-access-control", "fingerprint": "89e990ac3fbea2f02292a7310e90f1272846ea46573c9a825482e2791f6683ee", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/[", "method": "ANY", "scanner": "repobility-access-control", "framework": "NestJS", "correlation_key": "code|auth|token|61|auc009", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/controllers/views.controller.ts"}, "region": {"startLine": 61}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: ANY /[."}, "properties": {"repobilityId": 78218, "scanner": "repobility-access-control", "fingerprint": "7e453a323aa5baf54423832c6708567301d08329acd1075104614f53af240d65", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/[", "method": "ANY", "scanner": "repobility-access-control", "framework": "NestJS", "correlation_key": "code|auth|token|32|auc009", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/controllers/views.controller.ts"}, "region": {"startLine": 32}}}]}, {"ruleId": "AUC002", "level": "warning", "message": {"text": "[AUC002] Low visible authorization coverage in route inventory: Only 39.7% of discovered routes show nearby authentication, authorization, middleware, or public-route evidence."}, "properties": {"repobilityId": 78207, "scanner": "repobility-access-control", "fingerprint": "7ff1dd74a525384c7e42e05cdac0c90bb7b2352f4c4bb5e7baee19e72787d08e", "category": "auth", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"scanner": "repobility-access-control", "endpoint_count": 340, "correlation_key": "fp|7ff1dd74a525384c7e42e05cdac0c90bb7b2352f4c4bb5e7baee19e72787d08e", "auth_visible_percent": 39.7}}}, {"ruleId": "AUC001", "level": "warning", "message": {"text": "[AUC001] No Repobility access matrix policy found: The repository uses web/API frameworks but does not define .repobility/access.yml or equivalent authorization documentation."}, "properties": {"repobilityId": 78206, "scanner": "repobility-access-control", "fingerprint": "f1305052c3ba1e6c1cdb5dccc19e58a8168cf78b176658f32b1fc823df3e9d10", "category": "auth", "severity": "medium", "confidence": 0.92, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"scanner": "repobility-access-control", "frameworks": ["NestJS", "Next.js"], "expected_files": [".repobility/access.yml", ".repobility/access.yaml", ".repobility/access.json", ".repobility/authorization.yml"], "correlation_key": "fp|f1305052c3ba1e6c1cdb5dccc19e58a8168cf78b176658f32b1fc823df3e9d10"}}}, {"ruleId": "DKR003", "level": "warning", "message": {"text": "Compose service `nocodb` image uses the latest tag"}, "properties": {"repobilityId": 78204, "scanner": "repobility-docker", "fingerprint": "aea5104cbeacc6c59de97d0ee96ebac714585a0c1bd720771ea288c716f4a32c", "category": "docker", "severity": "medium", "confidence": 0.94, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Image tag is latest.", "evidence": {"image": "nocodb/nocodb:latest", "rule_id": "DKR003", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|aea5104cbeacc6c59de97d0ee96ebac714585a0c1bd720771ea288c716f4a32c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose/nginx-proxy-manager/docker-compose.yml"}, "region": {"startLine": 20}}}]}, {"ruleId": "DKR002", "level": "warning", "message": {"text": "Compose service `nginx-proxy-manager` image has no explicit tag"}, "properties": {"repobilityId": 78203, "scanner": "repobility-docker", "fingerprint": "128488379f4d2cf6ba3a7a46a17e407fdd08661594ac7c03add2e2172cfbe189", "category": "docker", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Image reference has no tag or digest.", "evidence": {"image": "jlesage/nginx-proxy-manager", "rule_id": "DKR002", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|128488379f4d2cf6ba3a7a46a17e407fdd08661594ac7c03add2e2172cfbe189"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose/nginx-proxy-manager/docker-compose.yml"}, "region": {"startLine": 5}}}]}, {"ruleId": "DKC015", "level": "warning", "message": {"text": "Database service has no healthcheck"}, "properties": {"repobilityId": 78201, "scanner": "repobility-docker", "fingerprint": "4aa342f52661cfd8b07a73114b4a353c8fcc0fee80c99cb2974011c6dfdec575", "category": "docker", "severity": "medium", "confidence": 0.88, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Database-like service has no Compose healthcheck.", "evidence": {"rule_id": "DKC015", "scanner": "repobility-docker", "service": "nocodb_database", "references": ["https://docs.docker.com/compose/how-tos/startup-order/"], "correlation_key": "fp|4aa342f52661cfd8b07a73114b4a353c8fcc0fee80c99cb2974011c6dfdec575"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose/nginx/docker-compose.yml"}, "region": {"startLine": 37}}}]}, {"ruleId": "DKC014", "level": "warning", "message": {"text": "Database data bind mount is inside the Docker build context"}, "properties": {"repobilityId": 78200, "scanner": "repobility-docker", "fingerprint": "e15c8c645f8d96549f5ad8627cb95d3469345b5681f46f6c4348d69d0293b19e", "category": "docker", "severity": "medium", "confidence": 0.84, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Database data directory is mounted from a relative path that is not excluded by .dockerignore.", "evidence": {"source": "./mariadb/data", "target": "/var/lib/mysql", "rule_id": "DKC014", "scanner": "repobility-docker", "service": "nocodb_database", "references": ["https://docs.docker.com/engine/storage/volumes/", "https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|e15c8c645f8d96549f5ad8627cb95d3469345b5681f46f6c4348d69d0293b19e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose/nginx/docker-compose.yml"}, "region": {"startLine": 37}}}]}, {"ruleId": "DKR003", "level": "warning", "message": {"text": "Compose service `nocodb_app` image uses the latest tag"}, "properties": {"repobilityId": 78199, "scanner": "repobility-docker", "fingerprint": "f63e1deed4a3ad01511a7c8a71e503e3207545c5912ce43c7e1ffd3aae65c798", "category": "docker", "severity": "medium", "confidence": 0.94, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Image tag is latest.", "evidence": {"image": "nocodb/nocodb:latest", "rule_id": "DKR003", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|f63e1deed4a3ad01511a7c8a71e503e3207545c5912ce43c7e1ffd3aae65c798"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose/nginx/docker-compose.yml"}, "region": {"startLine": 20}}}]}, {"ruleId": "DKR002", "level": "warning", "message": {"text": "Compose service `certbot` image has no explicit tag"}, "properties": {"repobilityId": 78198, "scanner": "repobility-docker", "fingerprint": "501d5c3a9b675af47de12ddd07edec3c6b977a109d0fe2f39dea2c21cd462314", "category": "docker", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Image reference has no tag or digest.", "evidence": {"image": "certbot/certbot", "rule_id": "DKR002", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|501d5c3a9b675af47de12ddd07edec3c6b977a109d0fe2f39dea2c21cd462314"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose/nginx/docker-compose.yml"}, "region": {"startLine": 11}}}]}, {"ruleId": "DKR002", "level": "warning", "message": {"text": "Compose service `watchtower` image has no explicit tag"}, "properties": {"repobilityId": 78196, "scanner": "repobility-docker", "fingerprint": "fa107c8bef65d4d9590346b9120e8d8aaf1bdb5a13754024343afa2db2b4191e", "category": "docker", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Image reference has no tag or digest.", "evidence": {"image": "containrrr/watchtower", "rule_id": "DKR002", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|fa107c8bef65d4d9590346b9120e8d8aaf1bdb5a13754024343afa2db2b4191e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose/3_traefik/docker-compose.yml"}, "region": {"startLine": 84}}}]}, {"ruleId": "DKR003", "level": "warning", "message": {"text": "Compose service `nocodb` image uses the latest tag"}, "properties": {"repobilityId": 78193, "scanner": "repobility-docker", "fingerprint": "d51eac67e90ca4a69ea195298bc8d42fe61385b918642f970412124087c6488f", "category": "docker", "severity": "medium", "confidence": 0.94, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Image tag is latest.", "evidence": {"image": "nocodb/nocodb:latest", "rule_id": "DKR003", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|d51eac67e90ca4a69ea195298bc8d42fe61385b918642f970412124087c6488f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose/3_traefik/docker-compose.yml"}, "region": {"startLine": 5}}}]}, {"ruleId": "DKR003", "level": "warning", "message": {"text": "Compose service `nocodb` image uses the latest tag"}, "properties": {"repobilityId": 78189, "scanner": "repobility-docker", "fingerprint": "233a482638780da8135728ecd63fa7703233d1cd562b622d8a1b3b9036858f7f", "category": "docker", "severity": "medium", "confidence": 0.94, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Image tag is latest.", "evidence": {"image": "nocodb/nocodb:latest", "rule_id": "DKR003", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|233a482638780da8135728ecd63fa7703233d1cd562b622d8a1b3b9036858f7f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose/2_pg/docker-compose.yml"}, "region": {"startLine": 2}}}]}, {"ruleId": "DKR018", "level": "warning", "message": {"text": "Database dump or local database file is included in Docker build context"}, "properties": {"repobilityId": 78188, "scanner": "repobility-docker", "fingerprint": "655485f8d8d660f19955b099504360fbf5ff0f88b2be2fc7d9501b5ab7e7369f", "category": "docker", "severity": "medium", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Database-like artifacts are reachable from the Docker build context and are not ignored.", "evidence": {"rule_id": "DKR018", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/engine/storage/volumes/"], "correlation_key": "fp|655485f8d8d660f19955b099504360fbf5ff0f88b2be2fc7d9501b5ab7e7369f", "database_artifacts": [{"path": "packages/nocodb/tests/mysql-dump/mysql-sakila-insert-data.sql", "size_mb": 8.7}, {"path": "packages/nocodb/tests/sql-server-sakila-db/02-sql-server-sakila-insert-data.sql", "size_mb": 8.1}, {"path": "packages/nocodb/tests/sqlite-dump/sqlite-sakila-insert-data.sql", "size_mb": 8.1}, {"path": "packages/nocodb/tests/sqlite-sakila-db/02-sqlite-sakila-insert-data.sql", "size_mb": 7.8}, {"path": "packages/nocodb/tests/pg-sakila-db/02-postgres-sakila-insert-data.sql", "size_mb": 7.6}]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".dockerignore"}, "region": {"startLine": 1}}}]}, {"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": 78186, "scanner": "repobility-threat-engine", "fingerprint": "029ecf3c2fc9db97c6509fa444a315e027d3809812d642135d38e54563b98611", "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|scripts/installlocalsdk.js|6|sec045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/installLocalSdk.js"}, "region": {"startLine": 6}}}]}, {"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": 78185, "scanner": "repobility-threat-engine", "fingerprint": "eb5bf5899a863670b248c2cab3354cd47e75c36079effb9d6d3daf93cdec69ec", "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|76|sec045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/utils/richTextHelper.ts"}, "region": {"startLine": 76}}}]}, {"ruleId": "SEC134", "level": "warning", "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": 78181, "scanner": "repobility-threat-engine", "fingerprint": "2814626f1a69f7bd8628e48c8b44ef4cf81836829891e5f21628abb9aa4b1399", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "'John Doe'", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC134", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|2814626f1a69f7bd8628e48c8b44ef4cf81836829891e5f21628abb9aa4b1399"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/services/mail/templates/base-role-update.tsx"}, "region": {"startLine": 90}}}]}, {"ruleId": "SEC134", "level": "warning", "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": 78180, "scanner": "repobility-threat-engine", "fingerprint": "637a46a6eac2dc87323fd0b6031a32b69474372b5abe215ac13c10ffa7715238", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "'John Doe'", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC134", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|637a46a6eac2dc87323fd0b6031a32b69474372b5abe215ac13c10ffa7715238"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/services/mail/templates/base-invite.tsx"}, "region": {"startLine": 63}}}]}, {"ruleId": "SEC134", "level": "warning", "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": 78179, "scanner": "repobility-threat-engine", "fingerprint": "1612cb67c535a50a2c5b8741b85211ffa98f1377ea6b2acdda80e0377a8c0b95", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "'user@example.com'", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC134", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|1612cb67c535a50a2c5b8741b85211ffa98f1377ea6b2acdda80e0377a8c0b95"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/helpers/populateSamplePayload.ts"}, "region": {"startLine": 93}}}]}, {"ruleId": "SEC091", "level": "warning", "message": {"text": "[SEC091] Go: net/http server without timeouts: HTTP server without ReadHeaderTimeout/ReadTimeout/WriteTimeout is vulnerable to Slowloris. Ported from gosec G112 + G114 (Apache-2.0)."}, "properties": {"repobilityId": 78175, "scanner": "repobility-threat-engine", "fingerprint": "f1109341e7c2423d5ac2fe70df21639783d3816c0ad9c95118b83220e6a78198", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "http.Server {\n    return this._httpServer;\n  }", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC091", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|f1109341e7c2423d5ac2fe70df21639783d3816c0ad9c95118b83220e6a78198"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/Noco.ts"}, "region": {"startLine": 254}}}]}, {"ruleId": "SEC001", "level": "warning", "message": {"text": "[SEC001] Hardcoded Password: Hardcoded password found in source code."}, "properties": {"repobilityId": 78172, "scanner": "repobility-threat-engine", "fingerprint": "3eabea4e7d24c03addedfab2bbcead43b5ce975b507af24fe7f6f9229b90aca6", "category": "credential_exposure", "severity": "medium", "confidence": 0.3, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Low entropy value (3.2 bits) \u2014 may be placeholder or common string", "evidence": {"match": "PASSWORD = '<redacted>'", "reason": "Low entropy value (3.2 bits) \u2014 may be placeholder or common string", "rule_id": "SEC001", "scanner": "repobility-threat-engine", "confidence": 0.3, "correlation_key": "secret|token|2|password redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/interface/Mail.ts"}, "region": {"startLine": 21}}}]}, {"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": 78159, "scanner": "repobility-threat-engine", "fingerprint": "3fd5845fa5241ece268511bddee8cb1573e261099b37264a16ef5e2dee7d01c7", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "ives, animals]][Math.floor(Math.random(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC087", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|3fd5845fa5241ece268511bddee8cb1573e261099b37264a16ef5e2dee7d01c7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/utils/generateName.ts"}, "region": {"startLine": 7}}}]}, {"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": 78158, "scanner": "repobility-threat-engine", "fingerprint": "3b8bc92ba3e6f944fe17df95c51350d7df3449537f57d7a7ffd2e2946999536f", "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).substring(2, 15)\n    this.aliasMap.set(alias, key", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC087", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|3b8bc92ba3e6f944fe17df95c51350d7df3449537f57d7a7ffd2e2946999536f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/utils/aliasUtils.ts"}, "region": {"startLine": 5}}}]}, {"ruleId": "SEC136", "level": "warning", "message": {"text": "[SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns success or no-ops. AI agents reach for this pattern when a flaky test or an unfamiliar API throws \u2014 wrap, swallow, return success. Real bugs are masked, observability is destroyed, and callers think the operation worked. CWE-396 (improperly-generalized exception). Distinct from intentional fallback because there's no log line and the success value is fabricated."}, "properties": {"repobilityId": 78153, "scanner": "repobility-threat-engine", "fingerprint": "909e5b5dd2fc848921855ea55fa6ce5921015d09232fd3703409f50a0bc572e4", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "} catch (error) {\n      return null\n    }", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC136", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|909e5b5dd2fc848921855ea55fa6ce5921015d09232fd3703409f50a0bc572e4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/composables/useUserSync.ts"}, "region": {"startLine": 33}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 78141, "scanner": "repobility-threat-engine", "fingerprint": "1127ceb1ca3979b3aaee4e5ce8a72112883e1e09ea0458dd793d6f7e1a26c556", "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 (ex) {}", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR002", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|1127ceb1ca3979b3aaee4e5ce8a72112883e1e09ea0458dd793d6f7e1a26c556"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/utils/validation.ts"}, "region": {"startLine": 359}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 78140, "scanner": "repobility-threat-engine", "fingerprint": "336292f11c19b717db4515278e9f8f4940d1dcc693218daf603dfba8ccc01b24", "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 (e) {}", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR002", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|336292f11c19b717db4515278e9f8f4940d1dcc693218daf603dfba8ccc01b24"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/composables/useProvideChatwoot.ts"}, "region": {"startLine": 55}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 78139, "scanner": "repobility-threat-engine", "fingerprint": "d890032785321b13a63d2eb3543abffd251c4383ffa58865ae32ff64b8406fcd", "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 (e) {}", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR002", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|d890032785321b13a63d2eb3543abffd251c4383ffa58865ae32ff64b8406fcd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/composables/useDialog/index.ts"}, "region": {"startLine": 111}}}]}, {"ruleId": "SEC041", "level": "warning", "message": {"text": "[SEC041] Tabnabbing \u2014 target=\"_blank\" without rel=\"noopener noreferrer\": <a target=\"_blank\"> without rel=\"noopener noreferrer\" leaks window.opener to the opened page. The opened page can then run window.opener.location = 'phishing-site' and the parent tab quietly navigates to attacker-controlled content (reverse tabnabbing). OWASP-classic; modern browsers default rel='noopener' for new windows but explicit attribute is still required for compatibility."}, "properties": {"repobilityId": 78129, "scanner": "repobility-threat-engine", "fingerprint": "bc5e4f56efd3c93636450a7ee2c10d4976c904ec600983c681e185503a5bfba2", "category": "security", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "window.open(`${window.location.origin}#${path}`, '_blank')", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC041", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|security|token|188|sec041"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/composables/useGlobal/actions.ts"}, "region": {"startLine": 188}}}]}, {"ruleId": "SEC041", "level": "warning", "message": {"text": "[SEC041] Tabnabbing \u2014 target=\"_blank\" without rel=\"noopener noreferrer\": <a target=\"_blank\"> without rel=\"noopener noreferrer\" leaks window.opener to the opened page. The opened page can then run window.opener.location = 'phishing-site' and the parent tab quietly navigates to attacker-controlled content (reverse tabnabbing). OWASP-classic; modern browsers default rel='noopener' for new windows but explicit attribute is still required for compatibility."}, "properties": {"repobilityId": 78128, "scanner": "repobility-threat-engine", "fingerprint": "d2991e750d24c65de7a802e93e38c6d42655750d2dd63576a9c1b03d2c1edff9", "category": "security", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found Collapsed 1 duplicate scanner signal(s) for the same underlying issue.", "evidence": {"match": "window.open(`mailto:${text}`, '_blank')", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC041", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|security|token|97|sec041", "duplicate_count": 1, "duplicate_rule_ids": ["SEC041"], "duplicate_scanners": ["repobility-threat-engine"], "duplicate_fingerprints": ["1490ab472543198b252595e506fb99b389e12f0e750503e0fb2fab3ca9bfd827", "d2991e750d24c65de7a802e93e38c6d42655750d2dd63576a9c1b03d2c1edff9"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/smartsheet/grid/canvas/cells/Email.ts"}, "region": {"startLine": 97}}}]}, {"ruleId": "AUC005", "level": "note", "message": {"text": "[AUC005] No authorization-focused tests detected: No test files with common authorization, ownership, 403, admin, or super_admin assertions were found."}, "properties": {"repobilityId": 78228, "scanner": "repobility-access-control", "fingerprint": "c58bb88e6682225dc480b3036f30153044953a3d94f500396678a77324e8d30e", "category": "auth", "severity": "low", "confidence": 0.76, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"scanner": "repobility-access-control", "frameworks": ["NestJS", "Next.js"], "correlation_key": "fp|c58bb88e6682225dc480b3036f30153044953a3d94f500396678a77324e8d30e"}}}, {"ruleId": "DKC017", "level": "note", "message": {"text": "Database password is wired through an environment variable placeholder"}, "properties": {"repobilityId": 78202, "scanner": "repobility-docker", "fingerprint": "f071d5c400f77275b8494ccc5e5db1661b667e2cd5a17b65ae6d973b7b56e5cd", "category": "docker", "severity": "low", "confidence": 0.58, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Database image supports file-based secret variables, but only placeholder environment variables were found.", "evidence": {"rule_id": "DKC017", "scanner": "repobility-docker", "service": "nocodb_database", "variables": ["MYSQL_ROOT_PASSWORD", "MYSQL_PASSWORD"], "references": ["https://docs.docker.com/compose/how-tos/use-secrets/"], "correlation_key": "fp|f071d5c400f77275b8494ccc5e5db1661b667e2cd5a17b65ae6d973b7b56e5cd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose/nginx/docker-compose.yml"}, "region": {"startLine": 37}}}]}, {"ruleId": "DKC017", "level": "note", "message": {"text": "Database password is wired through an environment variable placeholder"}, "properties": {"repobilityId": 78194, "scanner": "repobility-docker", "fingerprint": "6b864ec75e07b3dc00ecc2208c3bc1ae81b737f4f9f99dd9c84e452250b18e2b", "category": "docker", "severity": "low", "confidence": 0.58, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Database image supports file-based secret variables, but only placeholder environment variables were found.", "evidence": {"rule_id": "DKC017", "scanner": "repobility-docker", "service": "nocodb-db", "variables": ["POSTGRES_PASSWORD"], "references": ["https://docs.docker.com/compose/how-tos/use-secrets/"], "correlation_key": "fp|6b864ec75e07b3dc00ecc2208c3bc1ae81b737f4f9f99dd9c84e452250b18e2b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose/3_traefik/docker-compose.yml"}, "region": {"startLine": 100}}}]}, {"ruleId": "DKC010", "level": "note", "message": {"text": "Compose service lacks no-new-privileges hardening"}, "properties": {"repobilityId": 78191, "scanner": "repobility-docker", "fingerprint": "019e0c58b876010642ffe908b8149789cc583ad8092d7ddca51e05ec09cee287", "category": "docker", "severity": "low", "confidence": 0.62, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "App-like service has no security_opt no-new-privileges setting.", "evidence": {"rule_id": "DKC010", "scanner": "repobility-docker", "service": "nocodb", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|019e0c58b876010642ffe908b8149789cc583ad8092d7ddca51e05ec09cee287"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose/2_pg/docker-compose.yml"}, "region": {"startLine": 2}}}]}, {"ruleId": "DKC006", "level": "note", "message": {"text": "Compose service does not declare a runtime user"}, "properties": {"repobilityId": 78190, "scanner": "repobility-docker", "fingerprint": "ca25c28e5d53207e3458ce56157d9d127df3564aff08b91a7ed23a74ec707fef", "category": "docker", "severity": "low", "confidence": 0.56, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Service has no user setting and Repobility could not prove the image runs non-root.", "evidence": {"rule_id": "DKC006", "scanner": "repobility-docker", "service": "nocodb", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|ca25c28e5d53207e3458ce56157d9d127df3564aff08b91a7ed23a74ec707fef"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose/2_pg/docker-compose.yml"}, "region": {"startLine": 2}}}]}, {"ruleId": "SEC132", "level": "note", "message": {"text": "[SEC132] String concat where the language has interpolation (AI style drift): String built by concatenation where the language has cleaner interpolation (Python f-strings since 3.6, JS template literals since ES6). Not a vulnerability on its own, but a style signature of cross-language AI rewrites \u2014 the model wrote idiomatic Java/C# and then translated mechanically. When this style appears in only *some* files of a repo, it's a strong indicator of an AI-driven rewrite that needs a human review p"}, "properties": {"repobilityId": 78178, "scanner": "repobility-threat-engine", "fingerprint": "73d4ecbc9f3c73dc126183f299dd1135dcb7790c8859dc971385f996b68c7e5c", "category": "quality", "severity": "low", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "'filterByOperation ' +\n          operation +\n          ' anchorDate '", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC132", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|73d4ecbc9f3c73dc126183f299dd1135dcb7790c8859dc971385f996b68c7e5c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/db/field-handler/handlers/date/date.general.handler.ts"}, "region": {"startLine": 157}}}]}, {"ruleId": "SEC006", "level": "note", "message": {"text": "[SEC006] XSS Risk: Direct HTML injection without sanitization."}, "properties": {"repobilityId": 78156, "scanner": "repobility-threat-engine", "fingerprint": "e2a57ac7a08127ba8d50a24ea9601ed29a2d5f6d35c5eaaa9c1551b50f48dd7c", "category": "injection", "severity": "low", "confidence": 0.4, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "No user-input source (request/query/fetch/URL) found \u2014 may be static content", "evidence": {"match": ".innerHTML = h", "reason": "No user-input source (request/query/fetch/URL) found \u2014 may be static content", "rule_id": "SEC006", "scanner": "repobility-threat-engine", "confidence": 0.4, "correlation_key": "code|injection|token|33|sec006"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/helpers/tiptap-markdown/parse/MarkdownParser.ts"}, "region": {"startLine": 33}}}]}, {"ruleId": "SEC006", "level": "note", "message": {"text": "[SEC006] XSS Risk: Direct HTML injection without sanitization."}, "properties": {"repobilityId": 78155, "scanner": "repobility-threat-engine", "fingerprint": "9918db1da7d79e31559a200687e58fdc9d409e7244c1b9443314676588ca4b3f", "category": "injection", "severity": "low", "confidence": 0.4, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "No user-input source (request/query/fetch/URL) found \u2014 may be static content", "evidence": {"match": ".innerHTML = e", "reason": "No user-input source (request/query/fetch/URL) found \u2014 may be static content", "rule_id": "SEC006", "scanner": "repobility-threat-engine", "confidence": 0.4, "correlation_key": "code|injection|token|48|sec006"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/helpers/tiptap-markdown/extensions/nodes/html.ts"}, "region": {"startLine": 48}}}]}, {"ruleId": "SEC006", "level": "note", "message": {"text": "[SEC006] XSS Risk: Direct HTML injection without sanitization."}, "properties": {"repobilityId": 78154, "scanner": "repobility-threat-engine", "fingerprint": "c196b5915704980c40261a41ce5fdf10e805d0bca0d57ea48003f7dda8399b17", "category": "injection", "severity": "low", "confidence": 0.4, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "No user-input source (request/query/fetch/URL) found \u2014 may be static content", "evidence": {"match": ".innerHTML = e", "reason": "No user-input source (request/query/fetch/URL) found \u2014 may be static content", "rule_id": "SEC006", "scanner": "repobility-threat-engine", "confidence": 0.4, "correlation_key": "code|injection|token|25|sec006"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/helpers/tiptap-markdown/extensions/nodes/code-block.ts"}, "region": {"startLine": 25}}}]}, {"ruleId": "SEC134", "level": "none", "message": {"text": "[SEC134] AI scaffold leftover \u2014 Lorem ipsum / example.com / John Doe in code (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "properties": {"repobilityId": 78182, "scanner": "repobility-threat-engine", "fingerprint": "2fc2352ee79a239983bde3b99e3e602f191c3f964939343206bb75ac755d22c0", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC134", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|2fc2352ee79a239983bde3b99e3e602f191c3f964939343206bb75ac755d22c0"}}}, {"ruleId": "SEC001", "level": "none", "message": {"text": "[SEC001] Hardcoded Password: Hardcoded password found in source code."}, "properties": {"repobilityId": 78173, "scanner": "repobility-threat-engine", "fingerprint": "ebf6d4c1d538cdab97d0b5b23eca271f9ce5cb48f3765316d61b69acef939c6f", "category": "credential_exposure", "severity": "info", "confidence": 0.15, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Value looks like a development placeholder, not a live credential", "evidence": {"match": "Password = '<redacted>'", "reason": "Value looks like a development placeholder, not a live credential", "rule_id": "SEC001", "scanner": "repobility-threat-engine", "confidence": 0.15, "correlation_key": "secret|token|4|password redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/types/nc-plugin/common/XcUIBuilder.ts"}, "region": {"startLine": 46}}}]}, {"ruleId": "SEC001", "level": "none", "message": {"text": "[SEC001] Hardcoded Password: Hardcoded password found in source code."}, "properties": {"repobilityId": 78171, "scanner": "repobility-threat-engine", "fingerprint": "0266aafb35649890f249fd8b4830bcad687a39da21d6422a9fe457440adcacdf", "category": "credential_exposure", "severity": "info", "confidence": 0.15, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Value looks like a development placeholder, not a live credential", "evidence": {"match": "Password = '<redacted>'", "reason": "Value looks like a development placeholder, not a live credential", "rule_id": "SEC001", "scanner": "repobility-threat-engine", "confidence": 0.15, "correlation_key": "secret|token|14|password redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/noco-integrations/nocodb-sdk-reference.ts"}, "region": {"startLine": 145}}}]}, {"ruleId": "MINED049", "level": "none", "message": {"text": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout."}, "properties": {"repobilityId": 78170, "scanner": "repobility-threat-engine", "fingerprint": "ba878e87d3a9353b8b5704b77be0190390e2232ab66ed7a7adbf3dac8ce94721", "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|ba878e87d3a9353b8b5704b77be0190390e2232ab66ed7a7adbf3dac8ce94721"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/helpers/initAdminFromEnv.ts"}, "region": {"startLine": 45}}}]}, {"ruleId": "MINED049", "level": "none", "message": {"text": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout."}, "properties": {"repobilityId": 78169, "scanner": "repobility-threat-engine", "fingerprint": "2f1a035506da62337efb6f8c958ddd9da62b056cd37ce3559aa6d419b9fb7a02", "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|2f1a035506da62337efb6f8c958ddd9da62b056cd37ce3559aa6d419b9fb7a02"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-secret-mgr/src/index.ts"}, "region": {"startLine": 8}}}]}, {"ruleId": "MINED057", "level": "none", "message": {"text": "[MINED057] Todo Bomb: Code path with a TODO/FIXME/HACK comment that gates correctness \u2014 left for later but never resolved."}, "properties": {"repobilityId": 78168, "scanner": "repobility-threat-engine", "fingerprint": "dfbc563dd094ac8195d75463c69626d3438c411c570859e49b83c55d82d5a894", "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": "todo-bomb", "owasp": null, "cwe_ids": [], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348035+00:00", "triaged_in_corpus": 10, "observations_count": 255662, "ai_coder_pattern_id": 4}, "scanner": "repobility-threat-engine", "correlation_key": "fp|dfbc563dd094ac8195d75463c69626d3438c411c570859e49b83c55d82d5a894"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-integration-scaffolder/src/index.ts"}, "region": {"startLine": 170}}}]}, {"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": 78167, "scanner": "repobility-threat-engine", "fingerprint": "9a8d3d442aba1537601b3d2bb0181d5f5956b5e0070581b501be60cd91d846b6", "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|25|sec118"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/utils/tabId.ts"}, "region": {"startLine": 25}}}]}, {"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": 78166, "scanner": "repobility-threat-engine", "fingerprint": "7a90adfa287fb37be7679a005860c7cb464496dc59ec9f03d8fe9da7577afeea", "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|61|sec118"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/utils/generateName.ts"}, "region": {"startLine": 61}}}]}, {"ruleId": "MINED053", "level": "none", "message": {"text": "[MINED053] Placeholder Default Username: foo@bar.com / john.doe@example.com / admin/admin / changeme \u2014 typical AI placeholder credentials."}, "properties": {"repobilityId": 78162, "scanner": "repobility-threat-engine", "fingerprint": "ac1f0d6ff90144ea6f5011f3fde868a6953e9d79ed4c028b85d96ab45d5cd1e9", "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": "placeholder-default-username", "owasp": null, "cwe_ids": ["CWE-1392", "CWE-798"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348025+00:00", "triaged_in_corpus": 10, "observations_count": 456953, "ai_coder_pattern_id": 44}, "scanner": "repobility-threat-engine", "correlation_key": "fp|ac1f0d6ff90144ea6f5011f3fde868a6953e9d79ed4c028b85d96ab45d5cd1e9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/run/testDocker.ts"}, "region": {"startLine": 49}}}]}, {"ruleId": "MINED053", "level": "none", "message": {"text": "[MINED053] Placeholder Default Username: foo@bar.com / john.doe@example.com / admin/admin / changeme \u2014 typical AI placeholder credentials."}, "properties": {"repobilityId": 78161, "scanner": "repobility-threat-engine", "fingerprint": "de306145b98148117001b7f9864a1a529c599b0c9b737217e5a051c66f41042c", "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": "placeholder-default-username", "owasp": null, "cwe_ids": ["CWE-1392", "CWE-798"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348025+00:00", "triaged_in_corpus": 10, "observations_count": 456953, "ai_coder_pattern_id": 44}, "scanner": "repobility-threat-engine", "correlation_key": "fp|de306145b98148117001b7f9864a1a529c599b0c9b737217e5a051c66f41042c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/utils/baseCreateUtils.ts"}, "region": {"startLine": 140}}}]}, {"ruleId": "SEC006", "level": "none", "message": {"text": "[SEC006] XSS Risk (and 3 more): Same pattern found in 3 additional files. Review if needed."}, "properties": {"repobilityId": 78157, "scanner": "repobility-threat-engine", "fingerprint": "d9f1affcacb96541cb9dfea69fa7d055adaca1abde44138d49cbaaea5562cb22", "category": "injection", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 3 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 3 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC006", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|d9f1affcacb96541cb9dfea69fa7d055adaca1abde44138d49cbaaea5562cb22"}}}, {"ruleId": "SEC020", "level": "none", "message": {"text": "[SEC020] Secret Printed to Logs (and 3 more): Same pattern found in 3 additional files. Review if needed."}, "properties": {"repobilityId": 78150, "scanner": "repobility-threat-engine", "fingerprint": "501876d43fbaf15c6d4055194dcce53c187c4dbbef78a664b67e46162788cb51", "category": "credential_exposure", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 3 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 3 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|501876d43fbaf15c6d4055194dcce53c187c4dbbef78a664b67e46162788cb51"}}}, {"ruleId": "SEC020", "level": "none", "message": {"text": "[SEC020] Secret Printed to Logs: Debug or diagnostic code appears to print a credential-bearing value. This is a frequent AI-assisted coding failure: the helper exposes the exact value needed for troubleshooting."}, "properties": {"repobilityId": 78149, "scanner": "repobility-threat-engine", "fingerprint": "7a4056255021d96c9e4d314ed9a8c1cbc58caf7bdea1052fab9739caf3b43317", "category": "credential_exposure", "severity": "info", "confidence": 0.15, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Log message mentions credential-related metadata but does not print a credential-bearing value", "evidence": {"match": "console.log(figlet.textSync(\"NocoDB Secret CLI\")", "reason": "Log message mentions credential-related metadata but does not print a credential-bearing value", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.15, "correlation_key": "secret|token|1|console.log figlet.textsync nocodb secret cli"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-secret-mgr/src/index.ts"}, "region": {"startLine": 8}}}]}, {"ruleId": "SEC020", "level": "none", "message": {"text": "[SEC020] Secret Printed to Logs: Debug or diagnostic code appears to print a credential-bearing value. This is a frequent AI-assisted coding failure: the helper exposes the exact value needed for troubleshooting."}, "properties": {"repobilityId": 78148, "scanner": "repobility-threat-engine", "fingerprint": "a94604cd10e9e9082746f8cb29041161ca3f137c0c41c576c989299f6cb21519", "category": "credential_exposure", "severity": "info", "confidence": 0.15, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Log message mentions credential-related metadata but does not print a credential-bearing value", "evidence": {"match": "console.info('Refresh token failed', (e as Error)", "reason": "Log message mentions credential-related metadata but does not print a credential-bearing value", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.15, "correlation_key": "secret|token|9|console.info refresh token failed e as error"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/middleware/03.auth.global.ts"}, "region": {"startLine": 93}}}]}, {"ruleId": "SEC020", "level": "none", "message": {"text": "[SEC020] Secret Printed to Logs: Debug or diagnostic code appears to print a credential-bearing value. This is a frequent AI-assisted coding failure: the helper exposes the exact value needed for troubleshooting."}, "properties": {"repobilityId": 78147, "scanner": "repobility-threat-engine", "fingerprint": "a5dae793d4d76a81c1b35ac21b6e51f592eee1b8d496e5113334f8946763ecad", "category": "credential_exposure", "severity": "info", "confidence": 0.15, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Log message mentions credential-related metadata but does not print a credential-bearing value", "evidence": {"match": "console.error('Error deleting MCP token:', error)", "reason": "Log message mentions credential-related metadata but does not print a credential-bearing value", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.15, "correlation_key": "secret|token|19|console.error error deleting mcp token: error"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/composables/useMcpSettings.ts"}, "region": {"startLine": 196}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https (and 7 more): Same pattern found in 7 additional files. Review if needed."}, "properties": {"repobilityId": 78146, "scanner": "repobility-threat-engine", "fingerprint": "e973c240dbc4f89f3ed23634248c27c341c4e2b97022c76d007ae21bef62c680", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 7 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "http-not-https", "owasp": "A02:2021", "cwe_ids": ["CWE-319"], "precision": 0.917, "promoted_at": "2026-05-18T14:01:32.347999+00:00", "triaged_in_corpus": 12, "observations_count": 4113831, "ai_coder_pattern_id": 15}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|e973c240dbc4f89f3ed23634248c27c341c4e2b97022c76d007ae21bef62c680", "aggregated_count": 7}}}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 78145, "scanner": "repobility-threat-engine", "fingerprint": "e3e246bfb5b779ce765d047c9bcd1721fd3f41c334d2fde91b59f91e5360919b", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "http-not-https", "owasp": "A02:2021", "cwe_ids": ["CWE-319"], "precision": 0.917, "promoted_at": "2026-05-18T14:01:32.347999+00:00", "triaged_in_corpus": 12, "observations_count": 4113831, "ai_coder_pattern_id": 15}, "scanner": "repobility-threat-engine", "correlation_key": "fp|e3e246bfb5b779ce765d047c9bcd1721fd3f41c334d2fde91b59f91e5360919b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/controllers/api-docs/template/redocHtml.ts"}, "region": {"startLine": 63}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 78144, "scanner": "repobility-threat-engine", "fingerprint": "320014799764c1e65b1245dfc4db012af42c3e13ef12ac75f88c55dc268aaddd", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "http-not-https", "owasp": "A02:2021", "cwe_ids": ["CWE-319"], "precision": 0.917, "promoted_at": "2026-05-18T14:01:32.347999+00:00", "triaged_in_corpus": 12, "observations_count": 4113831, "ai_coder_pattern_id": 15}, "scanner": "repobility-threat-engine", "correlation_key": "fp|320014799764c1e65b1245dfc4db012af42c3e13ef12ac75f88c55dc268aaddd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/composables/useMapConfig.ts"}, "region": {"startLine": 55}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 78143, "scanner": "repobility-threat-engine", "fingerprint": "19769c8ce15bb5db3882de15671fa770acdcbb00fa4558388d8fd0f45627ff5d", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "http-not-https", "owasp": "A02:2021", "cwe_ids": ["CWE-319"], "precision": 0.917, "promoted_at": "2026-05-18T14:01:32.347999+00:00", "triaged_in_corpus": 12, "observations_count": 4113831, "ai_coder_pattern_id": 15}, "scanner": "repobility-threat-engine", "correlation_key": "fp|19769c8ce15bb5db3882de15671fa770acdcbb00fa4558388d8fd0f45627ff5d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/composables/useFormViewStore.ts"}, "region": {"startLine": 169}}}]}, {"ruleId": "ERR002", "level": "none", "message": {"text": "[ERR002] Empty Catch Block (and 6 more): Same pattern found in 6 additional files. Review if needed."}, "properties": {"repobilityId": 78142, "scanner": "repobility-threat-engine", "fingerprint": "79beb8c79c8fe2afad3d97b1aaa69b9e44070a54ac39178f92cc366b51132c53", "category": "error_handling", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 6 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 6 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "ERR002", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|79beb8c79c8fe2afad3d97b1aaa69b9e44070a54ac39178f92cc366b51132c53"}}}, {"ruleId": "SEC083", "level": "none", "message": {"text": "[SEC083] JS: new RegExp() with non-literal (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "properties": {"repobilityId": 78138, "scanner": "repobility-threat-engine", "fingerprint": "a1bb6273fbdc514ec53143946386dbdf16802c8fad0fe59f75dea80ba84c286d", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC083", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|a1bb6273fbdc514ec53143946386dbdf16802c8fad0fe59f75dea80ba84c286d"}}}, {"ruleId": "MINED044", "level": "none", "message": {"text": "[MINED044] Js Console Log Prod (and 100 more): Same pattern found in 100 additional files. Review if needed."}, "properties": {"repobilityId": 78134, "scanner": "repobility-threat-engine", "fingerprint": "d4b4186a6c190dd28c6e99383294aec5fc52d49341c63a3805abc77fcaeae687", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 100 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|d4b4186a6c190dd28c6e99383294aec5fc52d49341c63a3805abc77fcaeae687", "aggregated_count": 100}}}, {"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": 78133, "scanner": "repobility-threat-engine", "fingerprint": "998e358fd0eecb5bb8e01cf520ce95de9173b30dc250a7a7dfa7e8a039593b5d", "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|998e358fd0eecb5bb8e01cf520ce95de9173b30dc250a7a7dfa7e8a039593b5d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/smartsheet/grid/canvas/loaders/TableMetaLoader.ts"}, "region": {"startLine": 23}}}]}, {"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": 78132, "scanner": "repobility-threat-engine", "fingerprint": "3c22ef39cfed5b777fb9283ff0c691b5d3adf2cd85b60076a2e822184294dfe1", "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|3c22ef39cfed5b777fb9283ff0c691b5d3adf2cd85b60076a2e822184294dfe1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/smartsheet/grid/canvas/composables/useDataFetch.ts"}, "region": {"startLine": 81}}}]}, {"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": 78131, "scanner": "repobility-threat-engine", "fingerprint": "931f41ba5ebf5692618dab828f3616fbef73cfef278b05e283bad5bc80a2f242", "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|931f41ba5ebf5692618dab828f3616fbef73cfef278b05e283bad5bc80a2f242"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/smartsheet/grid/canvas/composables/useColumnResize.ts"}, "region": {"startLine": 96}}}]}, {"ruleId": "SEC041", "level": "none", "message": {"text": "[SEC041] Tabnabbing \u2014 target=\"_blank\" without rel=\"noopener noreferrer\" (and 4 more): Same pattern found in 4 additional files. Review if needed."}, "properties": {"repobilityId": 78130, "scanner": "repobility-threat-engine", "fingerprint": "a97c7de41c6b2c7d1727e9699cae690457bf784eba999a96e493342f63dadd13", "category": "security", "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": {"reason": "Deduplicated summary only: 4 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC041", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|a97c7de41c6b2c7d1727e9699cae690457bf784eba999a96e493342f63dadd13"}}}, {"ruleId": "SEC029", "level": "none", "message": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 41 more): Same pattern found in 41 additional files. Review if needed."}, "properties": {"repobilityId": 78127, "scanner": "repobility-threat-engine", "fingerprint": "d7607273fe5f14fcf46e7f8983176d1b193e6925004b1a1c1ea7f0f836f04911", "category": "ssrf", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 41 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 41 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|d7607273fe5f14fcf46e7f8983176d1b193e6925004b1a1c1ea7f0f836f04911"}}}, {"ruleId": "SEC128", "level": "none", "message": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 20 more): Same pattern found in 20 additional files. Review if needed."}, "properties": {"repobilityId": 78123, "scanner": "repobility-threat-engine", "fingerprint": "cab71e3e0d858a3b16cef86155b5a70720336ed5d7b2fcc3b519bb449894bd76", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 20 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 20 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|cab71e3e0d858a3b16cef86155b5a70720336ed5d7b2fcc3b519bb449894bd76"}}}, {"ruleId": "MINED054", "level": "none", "message": {"text": "[MINED054] Ts As Any (and 120 more): Same pattern found in 120 additional files. Review if needed."}, "properties": {"repobilityId": 78119, "scanner": "repobility-threat-engine", "fingerprint": "4bcfbcad3f2db7b8d7050ca92887716e708429fa625c23a77c6147a66895aa50", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 120 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "ts-as-any", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348028+00:00", "triaged_in_corpus": 12, "observations_count": 341218, "ai_coder_pattern_id": 98}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|4bcfbcad3f2db7b8d7050ca92887716e708429fa625c23a77c6147a66895aa50", "aggregated_count": 120}}}, {"ruleId": "MINED054", "level": "none", "message": {"text": "[MINED054] Ts As Any: Casting to any (as any) bypasses type checking entirely."}, "properties": {"repobilityId": 78118, "scanner": "repobility-threat-engine", "fingerprint": "dfee68931f78223752215e1f0b70bc2086fedfc745f693f6dcc0f8f42120fa77", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-as-any", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348028+00:00", "triaged_in_corpus": 12, "observations_count": 341218, "ai_coder_pattern_id": 98}, "scanner": "repobility-threat-engine", "correlation_key": "fp|dfee68931f78223752215e1f0b70bc2086fedfc745f693f6dcc0f8f42120fa77"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/smartsheet/grid/canvas/utils/cell.ts"}, "region": {"startLine": 220}}}]}, {"ruleId": "MINED054", "level": "none", "message": {"text": "[MINED054] Ts As Any: Casting to any (as any) bypasses type checking entirely."}, "properties": {"repobilityId": 78117, "scanner": "repobility-threat-engine", "fingerprint": "810780f342c266c1bb9817ffebe456687cb600db2c7eee3f70a0cf7583779650", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-as-any", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348028+00:00", "triaged_in_corpus": 12, "observations_count": 341218, "ai_coder_pattern_id": 98}, "scanner": "repobility-threat-engine", "correlation_key": "fp|810780f342c266c1bb9817ffebe456687cb600db2c7eee3f70a0cf7583779650"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/smartsheet/grid/canvas/cells/Null.ts"}, "region": {"startLine": 10}}}]}, {"ruleId": "MINED054", "level": "none", "message": {"text": "[MINED054] Ts As Any: Casting to any (as any) bypasses type checking entirely."}, "properties": {"repobilityId": 78116, "scanner": "repobility-threat-engine", "fingerprint": "d09c6e463b7523ce9a61ce8352eabce9488610539db5bd9605bd67fcd20b654d", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-as-any", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348028+00:00", "triaged_in_corpus": 12, "observations_count": 341218, "ai_coder_pattern_id": 98}, "scanner": "repobility-threat-engine", "correlation_key": "fp|d09c6e463b7523ce9a61ce8352eabce9488610539db5bd9605bd67fcd20b654d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/cell/SingleSelect/utils.ts"}, "region": {"startLine": 15}}}]}, {"ruleId": "MINED052", "level": "none", "message": {"text": "[MINED052] Ts Any Typed (and 362 more): Same pattern found in 362 additional files. Review if needed."}, "properties": {"repobilityId": 78115, "scanner": "repobility-threat-engine", "fingerprint": "c48b536b5e9da3374d65cc04b758e0bb9a5e4af51164adf155d1d5a0f92f0525", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 362 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "ts-any-typed", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348022+00:00", "triaged_in_corpus": 12, "observations_count": 496002, "ai_coder_pattern_id": 97}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|c48b536b5e9da3374d65cc04b758e0bb9a5e4af51164adf155d1d5a0f92f0525", "aggregated_count": 362}}}, {"ruleId": "MINED052", "level": "none", "message": {"text": "[MINED052] Ts Any Typed: : any used as type annotation. Defeats TypeScript type safety."}, "properties": {"repobilityId": 78114, "scanner": "repobility-threat-engine", "fingerprint": "6490bf980ae36597d3725ed77758bc1bc76931d0f3709ad58e4f9a875712ec10", "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|6490bf980ae36597d3725ed77758bc1bc76931d0f3709ad58e4f9a875712ec10"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/cell/User/utils.ts"}, "region": {"startLine": 35}}}]}, {"ruleId": "MINED052", "level": "none", "message": {"text": "[MINED052] Ts Any Typed: : any used as type annotation. Defeats TypeScript type safety."}, "properties": {"repobilityId": 78113, "scanner": "repobility-threat-engine", "fingerprint": "26366c9eb12858a8ea54ae4582a96ca803e646d17958e551b7f5f323190a8eb4", "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|26366c9eb12858a8ea54ae4582a96ca803e646d17958e551b7f5f323190a8eb4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/cell/SingleSelect/utils.ts"}, "region": {"startLine": 18}}}]}, {"ruleId": "MINED052", "level": "none", "message": {"text": "[MINED052] Ts Any Typed: : any used as type annotation. Defeats TypeScript type safety."}, "properties": {"repobilityId": 78112, "scanner": "repobility-threat-engine", "fingerprint": "72192547aff3e18c603501775da3eabc80379575c8163652df37a57819225e09", "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|72192547aff3e18c603501775da3eabc80379575c8163652df37a57819225e09"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/ai/Erd/utils.ts"}, "region": {"startLine": 20}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion (and 91 more): Same pattern found in 91 additional files. Review if needed."}, "properties": {"repobilityId": 78111, "scanner": "repobility-threat-engine", "fingerprint": "266d8452efc783193bfe933bf1c613085db8609f293a0146b83f58031d9fa379", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 91 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|266d8452efc783193bfe933bf1c613085db8609f293a0146b83f58031d9fa379", "aggregated_count": 91}}}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 78110, "scanner": "repobility-threat-engine", "fingerprint": "8c261bb415aea0fab90d746515216f7b62b9db2d8d68914290942ec925befa6e", "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|8c261bb415aea0fab90d746515216f7b62b9db2d8d68914290942ec925befa6e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/smartsheet/grid/canvas/cells/Button/index.ts"}, "region": {"startLine": 69}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 78109, "scanner": "repobility-threat-engine", "fingerprint": "35cbe883dcdc16a2a56587a5bfef7fa8782d3af96c28c8de861ca41c4c17290b", "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|35cbe883dcdc16a2a56587a5bfef7fa8782d3af96c28c8de861ca41c4c17290b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/smartsheet/grid/canvas/cells/AILongText.ts"}, "region": {"startLine": 177}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 78108, "scanner": "repobility-threat-engine", "fingerprint": "ddd9cd0c1d77d9ee8925ca66c771b657c7b7e0402dc1b01ef4e7244b0aa2d99d", "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|ddd9cd0c1d77d9ee8925ca66c771b657c7b7e0402dc1b01ef4e7244b0aa2d99d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/ai/Erd/utils.ts"}, "region": {"startLine": 220}}}]}, {"ruleId": "SEC040", "level": "none", "message": {"text": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data (and 12 more): Same pattern found in 12 additional files. Review if needed."}, "properties": {"repobilityId": 78107, "scanner": "repobility-threat-engine", "fingerprint": "2454a821dca7e8b7eee4ad624534d3bf4f2d3ba2c05a9af5a0018158e97617f7", "category": "xss", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 12 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 12 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|2454a821dca7e8b7eee4ad624534d3bf4f2d3ba2c05a9af5a0018158e97617f7"}}}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `peter-evans/dockerhub-description` pinned to mutable ref `@v2`: `uses: peter-evans/dockerhub-description@v2` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 78257, "scanner": "repobility-supply-chain", "fingerprint": "284aebd51006e3e622da74524d164610c53b6f48646eeb326fc91d6c50868d82", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|284aebd51006e3e622da74524d164610c53b6f48646eeb326fc91d6c50868d82"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/docker-readme-publish.yml"}, "region": {"startLine": 14}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v3`: `uses: actions/checkout@v3` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 78256, "scanner": "repobility-supply-chain", "fingerprint": "3424052f5f685724c0c0a348207d59afaa98487a4501f841e23b8eafc23e8398", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|3424052f5f685724c0c0a348207d59afaa98487a4501f841e23b8eafc23e8398"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/docker-readme-publish.yml"}, "region": {"startLine": 12}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v4`: `uses: actions/checkout@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 78255, "scanner": "repobility-supply-chain", "fingerprint": "314a910908f1bd4ae9e5c84152f8bc4b612c73c99e3ce7f739dd57b647bd4ec3", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|314a910908f1bd4ae9e5c84152f8bc4b612c73c99e3ce7f739dd57b647bd4ec3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/bats-test.yml"}, "region": {"startLine": 34}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v4`: `uses: actions/checkout@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 78254, "scanner": "repobility-supply-chain", "fingerprint": "4fa4c16e0c2206bedddbf9868d8bfad74e4d6327ea25d20d6b046a16799210fc", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|4fa4c16e0c2206bedddbf9868d8bfad74e4d6327ea25d20d6b046a16799210fc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/bats-test.yml"}, "region": {"startLine": 17}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v3`: `uses: actions/checkout@v3` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 78253, "scanner": "repobility-supply-chain", "fingerprint": "5238a827734558647e4d18a0a0c8c2d02e9a7e1229ce9bf0e62ef44cacbc8ae5", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|5238a827734558647e4d18a0a0c8c2d02e9a7e1229ce9bf0e62ef44cacbc8ae5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cleanup-caches-by-branch.yml"}, "region": {"startLine": 11}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v3`: `uses: actions/checkout@v3` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 78252, "scanner": "repobility-supply-chain", "fingerprint": "f75b7304545b3365c85384ea96fdb64395f30e14774ef7e0a913eb21bfdd9af1", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|f75b7304545b3365c85384ea96fdb64395f30e14774ef7e0a913eb21bfdd9af1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ci-cd.yml"}, "region": {"startLine": 34}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `rjstone/discord-webhook-notify` pinned to mutable ref `@v1`: `uses: rjstone/discord-webhook-notify@v1` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 78251, "scanner": "repobility-supply-chain", "fingerprint": "7038d2f1472304b847e4f744e57e60003ca85357cd5b8411bf270d4817867a24", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|7038d2f1472304b847e4f744e57e60003ca85357cd5b8411bf270d4817867a24"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/on-event-issue-closed.yml"}, "region": {"startLine": 14}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `tim-actions/dco` pinned to mutable ref `@master`: `uses: tim-actions/dco@master` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 78250, "scanner": "repobility-supply-chain", "fingerprint": "0c499b3202cfa8eaa5566237eef05694f2cc9a7ac97c48722b29cbc6c1198871", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|0c499b3202cfa8eaa5566237eef05694f2cc9a7ac97c48722b29cbc6c1198871"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/dco-check.yml"}, "region": {"startLine": 24}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `tim-actions/get-pr-commits` pinned to mutable ref `@master`: `uses: tim-actions/get-pr-commits@master` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 78249, "scanner": "repobility-supply-chain", "fingerprint": "dcdffa4b058f42912f6b537822b44f1ba1c7631506a68628b374e38a7f3422fc", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|dcdffa4b058f42912f6b537822b44f1ba1c7631506a68628b374e38a7f3422fc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/dco-check.yml"}, "region": {"startLine": 20}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/github-script` pinned to mutable ref `@v6`: `uses: actions/github-script@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 78248, "scanner": "repobility-supply-chain", "fingerprint": "5dfecac51394abb649e488fcf7dabf76b2bb0c04f54547c43f190733538ca813", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|5dfecac51394abb649e488fcf7dabf76b2bb0c04f54547c43f190733538ca813"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/dispatch-oss.yml"}, "region": {"startLine": 12}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/setup-node` pinned to mutable ref `@v4`: `uses: actions/setup-node@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 78247, "scanner": "repobility-supply-chain", "fingerprint": "fdefe093d669e02efe71655a5cfdff4c4509aab093dbdedd91c5ca0d0c5493f1", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|fdefe093d669e02efe71655a5cfdff4c4509aab093dbdedd91c5ca0d0c5493f1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/jest-unit-test.yml"}, "region": {"startLine": 32}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `pnpm/action-setup` pinned to mutable ref `@v5`: `uses: pnpm/action-setup@v5` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 78246, "scanner": "repobility-supply-chain", "fingerprint": "d5c26e2f1afd0144f199d8a6ea64850222c3ddea5258e688b15e0a74c0c75b6d", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|d5c26e2f1afd0144f199d8a6ea64850222c3ddea5258e688b15e0a74c0c75b6d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/jest-unit-test.yml"}, "region": {"startLine": 28}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v4`: `uses: actions/checkout@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 78245, "scanner": "repobility-supply-chain", "fingerprint": "623d5530500438e6d8fc1b22924b5a09ac0ed118857d963c1aa916ee754375d2", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|623d5530500438e6d8fc1b22924b5a09ac0ed118857d963c1aa916ee754375d2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/jest-unit-test.yml"}, "region": {"startLine": 24}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/dependency-review-action` pinned to mutable ref `@v4`: `uses: actions/dependency-review-action@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 78244, "scanner": "repobility-supply-chain", "fingerprint": "fa2823b8d8111ca6fcba92d0bb3c6cc4c8775c45f79968d03d7a02964b134351", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|fa2823b8d8111ca6fcba92d0bb3c6cc4c8775c45f79968d03d7a02964b134351"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/dependency-review.yml"}, "region": {"startLine": 26}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v4`: `uses: actions/checkout@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 78243, "scanner": "repobility-supply-chain", "fingerprint": "94b719e69f2b02c8010950ef24f057b5f7ad326561db9687dac05a459f7f3888", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|94b719e69f2b02c8010950ef24f057b5f7ad326561db9687dac05a459f7f3888"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/dependency-review.yml"}, "region": {"startLine": 23}}}]}, {"ruleId": "MINED122", "level": "error", "message": {"text": "[MINED122] package.json dep `nocodb-sdk` pulled from URL/Git: `dependencies.nocodb-sdk` = `file:../../nocodb-sdk` bypasses the npm registry. No integrity hash, no version locking, no registry-side scanning. If the URL or git host is compromised, every `npm install` pulls the new payload."}, "properties": {"repobilityId": 78242, "scanner": "repobility-supply-chain", "fingerprint": "28007c11077de86e02a2bfb06830e0f99d17b14a80771f691496092a81f31595", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "npm-dep-git-or-tarball-url", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["javascript"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|28007c11077de86e02a2bfb06830e0f99d17b14a80771f691496092a81f31595"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/noco-integrations/core/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED122", "level": "error", "message": {"text": "[MINED122] package.json dep `xlsx` pulled from URL/Git: `dependencies.xlsx` = `https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz` bypasses the npm registry. No integrity hash, no version locking, no registry-side scanning. If the URL or git host is compromised, every `npm install` pulls the new payload."}, "properties": {"repobilityId": 78241, "scanner": "repobility-supply-chain", "fingerprint": "25a32cb6dd1e93cb71b004f15ccaef01bee28535f448015de43cd85554c9fe4c", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "npm-dep-git-or-tarball-url", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["javascript"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|25a32cb6dd1e93cb71b004f15ccaef01bee28535f448015de43cd85554c9fe4c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED122", "level": "error", "message": {"text": "[MINED122] package.json dep `xlsx` pulled from URL/Git: `dependencies.xlsx` = `https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz` bypasses the npm registry. No integrity hash, no version locking, no registry-side scanning. If the URL or git host is compromised, every `npm install` pulls the new payload."}, "properties": {"repobilityId": 78240, "scanner": "repobility-supply-chain", "fingerprint": "b974f7d4db2901c8e943391df1790b11a4c967d8131bdb75d2a40b05dfaf4af1", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "npm-dep-git-or-tarball-url", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["javascript"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|b974f7d4db2901c8e943391df1790b11a4c967d8131bdb75d2a40b05dfaf4af1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED122", "level": "error", "message": {"text": "[MINED122] package.json dep `xlsx` pulled from URL/Git: `devDependencies.xlsx` = `https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz` bypasses the npm registry. No integrity hash, no version locking, no registry-side scanning. If the URL or git host is compromised, every `npm install` pulls the new payload."}, "properties": {"repobilityId": 78239, "scanner": "repobility-supply-chain", "fingerprint": "f04e30c113e6761192f3ff8909f9948b712bd36e382c8c5a7df128fcc1becc6b", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "npm-dep-git-or-tarball-url", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["javascript"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|f04e30c113e6761192f3ff8909f9948b712bd36e382c8c5a7df128fcc1becc6b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: ANY /data/:viewId/:rowId/hm/:colId/exclude."}, "properties": {"repobilityId": 78217, "scanner": "repobility-access-control", "fingerprint": "dc5665446a4f4221313483250a6e4ab152c4dae51124afccafd0ed94700ba361", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/data/:viewId/:rowId/hm/:colId/exclude", "method": "ANY", "scanner": "repobility-access-control", "framework": "NestJS", "correlation_key": "code|auth|token|98|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/controllers/datas.controller.ts"}, "region": {"startLine": 98}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: ANY /data/:viewId/:rowId/oo/:colId/exclude."}, "properties": {"repobilityId": 78216, "scanner": "repobility-access-control", "fingerprint": "2539bb16488f94106cf25e5151e0f12aa2c45454601d2af7f22e51e27fbbc1c3", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/data/:viewId/:rowId/oo/:colId/exclude", "method": "ANY", "scanner": "repobility-access-control", "framework": "NestJS", "correlation_key": "code|auth|token|81|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/controllers/datas.controller.ts"}, "region": {"startLine": 81}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: ANY /api/v1/workspaces/:workspaceId/invitations."}, "properties": {"repobilityId": 78215, "scanner": "repobility-access-control", "fingerprint": "48b4d304b0155aa7cffc0a04bfdd03d6cab6cda96e554c89a8be17f8a760b53e", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/api/v1/workspaces/:workspaceId/invitations", "method": "ANY", "scanner": "repobility-access-control", "framework": "NestJS", "correlation_key": "code|auth|token|49|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/controllers/workspace-users.controller.ts"}, "region": {"startLine": 49}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: ANY /api/v1/workspaces/:workspaceId/users/:userId."}, "properties": {"repobilityId": 78214, "scanner": "repobility-access-control", "fingerprint": "429c1703ce4e15c940a439e3de0c960a04ec303e5eb9ebe95300febef1d2e23e", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/api/v1/workspaces/:workspaceId/users/:userId", "method": "ANY", "scanner": "repobility-access-control", "framework": "NestJS", "correlation_key": "code|auth|token|30|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/controllers/workspace-users.controller.ts"}, "region": {"startLine": 30}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: ANY /row-color-conditions/:id."}, "properties": {"repobilityId": 78213, "scanner": "repobility-access-control", "fingerprint": "42136b7f4f3ddacf863f3216b1fe30d404ef99866df736832d0b9a53cbf00262", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/row-color-conditions/:id", "method": "ANY", "scanner": "repobility-access-control", "framework": "NestJS", "correlation_key": "code|auth|token|106|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/controllers/view-row-color.controller.ts"}, "region": {"startLine": 106}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: ANY /row-color-conditions/:id."}, "properties": {"repobilityId": 78212, "scanner": "repobility-access-control", "fingerprint": "787667bc20f68abbb4b3900cd74f3149b3326f05e7a3c3bbc58edaa3b0bb3a95", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/row-color-conditions/:id", "method": "ANY", "scanner": "repobility-access-control", "framework": "NestJS", "correlation_key": "code|auth|token|76|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/controllers/view-row-color.controller.ts"}, "region": {"startLine": 76}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: ANY /api/v1/notifications/:notificationId."}, "properties": {"repobilityId": 78211, "scanner": "repobility-access-control", "fingerprint": "f296408d2877bd0074553a31dba61c94bfc3c53a4a913c4650f937d7c1b8c17f", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/api/v1/notifications/:notificationId", "method": "ANY", "scanner": "repobility-access-control", "framework": "NestJS", "correlation_key": "code|auth|token|119|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/controllers/notifications.controller.ts"}, "region": {"startLine": 119}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: ANY /api/v1/notifications/:notificationId."}, "properties": {"repobilityId": 78210, "scanner": "repobility-access-control", "fingerprint": "f6451882318cc08645e14a502331b8bb5b183240a984856fc304339100169e4b", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/api/v1/notifications/:notificationId", "method": "ANY", "scanner": "repobility-access-control", "framework": "NestJS", "correlation_key": "code|auth|token|103|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/controllers/notifications.controller.ts"}, "region": {"startLine": 103}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: ANY /api/v3/meta/views/:viewId/columns."}, "properties": {"repobilityId": 78209, "scanner": "repobility-access-control", "fingerprint": "dd5bb2209effa44372808b22b676cba25444e5c65101086660b0ff020fdb2df0", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/api/v3/meta/views/:viewId/columns", "method": "ANY", "scanner": "repobility-access-control", "framework": "NestJS", "correlation_key": "code|auth|token|124|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/controllers/view-columns.controller.ts"}, "region": {"startLine": 124}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: ANY /api/v3/meta/views/:viewId/columns."}, "properties": {"repobilityId": 78208, "scanner": "repobility-access-control", "fingerprint": "1bec479641d9cba20c4bdbc24f6f7549645c14be495c1a4f4099fbd2f59ed0f5", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/api/v3/meta/views/:viewId/columns", "method": "ANY", "scanner": "repobility-access-control", "framework": "NestJS", "correlation_key": "code|auth|token|90|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/controllers/view-columns.controller.ts"}, "region": {"startLine": 90}}}]}, {"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": 78187, "scanner": "repobility-threat-engine", "fingerprint": "59bc6225e7e37471198eae88d19f8efeefb957f0567ab51809510de943dbf056", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "exec(richText", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|59bc6225e7e37471198eae88d19f8efeefb957f0567ab51809510de943dbf056"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/utils/richTextHelper.ts"}, "region": {"startLine": 76}}}]}, {"ruleId": "SEC030", "level": "error", "message": {"text": "[SEC030] Open Redirect \u2014 user-controlled redirect target: Redirect target is taken directly from user input without validating that the destination is local to the site. Attackers craft phishing URLs that appear to come from your domain but land on attacker-controlled pages \u2014 common in OAuth callback flows, post-login redirects, and `next=` parameters. CWE-601."}, "properties": {"repobilityId": 78184, "scanner": "repobility-threat-engine", "fingerprint": "441462c34e471f0f477893211f332030fffe215c4a25ba28ddcc72a6ba9a6810", "category": "open_redirect", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "res.redirect(redirectUrl)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC030", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|441462c34e471f0f477893211f332030fffe215c4a25ba28ddcc72a6ba9a6810"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/run/cloud.ts"}, "region": {"startLine": 61}}}]}, {"ruleId": "SEC030", "level": "error", "message": {"text": "[SEC030] Open Redirect \u2014 user-controlled redirect target: Redirect target is taken directly from user input without validating that the destination is local to the site. Attackers craft phishing URLs that appear to come from your domain but land on attacker-controlled pages \u2014 common in OAuth callback flows, post-login redirects, and `next=` parameters. CWE-601."}, "properties": {"repobilityId": 78183, "scanner": "repobility-threat-engine", "fingerprint": "33cca09554640a65fe274a0d6d0b677bcbf51d0c08c1f78e0cafb858ecd2337a", "category": "open_redirect", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "res.redirect(redirectUrl)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC030", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|33cca09554640a65fe274a0d6d0b677bcbf51d0c08c1f78e0cafb858ecd2337a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/modules/oauth/controllers/oauth.controller.ts"}, "region": {"startLine": 52}}}]}, {"ruleId": "SEC036", "level": "error", "message": {"text": "[SEC036] HTTP Header Injection / CRLF Injection: Setting an HTTP response header from user input without stripping CRLF lets attackers inject extra headers (Set-Cookie, etc.) or split the response. Real CVEs: CVE-2017-15193 (Mahara), CVE-2019-11358 (Django), CVE-2020-26116 (Python http.client). CWE-93/113."}, "properties": {"repobilityId": 78177, "scanner": "repobility-threat-engine", "fingerprint": "59c26e011beee398999cbeecdab9cb99810ce044d43b1867c85d76bd21c5084c", "category": "injection", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "res.setHeader('Content-Type', query", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC036", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|injection|token|214|sec036"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/controllers/attachments.controller.ts"}, "region": {"startLine": 214}}}]}, {"ruleId": "SEC036", "level": "error", "message": {"text": "[SEC036] HTTP Header Injection / CRLF Injection: Setting an HTTP response header from user input without stripping CRLF lets attackers inject extra headers (Set-Cookie, etc.) or split the response. Real CVEs: CVE-2017-15193 (Mahara), CVE-2019-11358 (Django), CVE-2020-26116 (Python http.client). CWE-93/113."}, "properties": {"repobilityId": 78176, "scanner": "repobility-threat-engine", "fingerprint": "d08a5aa8da894830d6ac3b48073c0a511282543689e0d97f0a0f5ebca0a84c39", "category": "injection", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "res.setHeader('Content-Type', query", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC036", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|injection|token|151|sec036"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/controllers/attachments-secure.controller.ts"}, "region": {"startLine": 151}}}]}, {"ruleId": "SEC027", "level": "error", "message": {"text": "[SEC027] XML External Entity (XXE) \u2014 Node.js xml parsers: Node.js XML parsers can expand external entities if not configured. libxmljs in particular has had XXE CVEs."}, "properties": {"repobilityId": 78165, "scanner": "repobility-threat-engine", "fingerprint": "e204b20eb34720a4c7fd0187d0820353775bf038a143b8246739a17e385ab9e8", "category": "xxe", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "new DOMParser()", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC027", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|e204b20eb34720a4c7fd0187d0820353775bf038a143b8246739a17e385ab9e8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/utils/fileUtils.ts"}, "region": {"startLine": 164}}}]}, {"ruleId": "MINED004", "level": "error", "message": {"text": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums)."}, "properties": {"repobilityId": 78164, "scanner": "repobility-threat-engine", "fingerprint": "59d22b2e1f2e0ff35a78a9c34a3575d513a2ab81937394d39180f720bda8c3f5", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "weak-crypto", "owasp": "A02:2021", "cwe_ids": ["CWE-327"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347906+00:00", "triaged_in_corpus": 15, "observations_count": 303181, "ai_coder_pattern_id": 13}, "scanner": "repobility-threat-engine", "correlation_key": "fp|59d22b2e1f2e0ff35a78a9c34a3575d513a2ab81937394d39180f720bda8c3f5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/src/gateways/socket.gateway.ts"}, "region": {"startLine": 16}}}]}, {"ruleId": "MINED004", "level": "error", "message": {"text": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums)."}, "properties": {"repobilityId": 78163, "scanner": "repobility-threat-engine", "fingerprint": "02199ba4cde2682c12f1a339e17885a07cbed99682eaf79d2f9ad1db092ad975", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "weak-crypto", "owasp": "A02:2021", "cwe_ids": ["CWE-327"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347906+00:00", "triaged_in_corpus": 15, "observations_count": 303181, "ai_coder_pattern_id": 13}, "scanner": "repobility-threat-engine", "correlation_key": "fp|02199ba4cde2682c12f1a339e17885a07cbed99682eaf79d2f9ad1db092ad975"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/utils/cryptoUtils.ts"}, "region": {"startLine": 5}}}]}, {"ruleId": "MINED014", "level": "error", "message": {"text": "[MINED014] Disabled Tls Verify: verify=False in requests, rejectUnauthorized:false in node, InsecureSkipVerify:true in Go."}, "properties": {"repobilityId": 78160, "scanner": "repobility-threat-engine", "fingerprint": "935f581bac3e0810e5077768554e9e084352530d5299456f85d1ecab8c721ab5", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "disabled-tls-verify", "owasp": "A02:2021", "cwe_ids": ["CWE-295"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347930+00:00", "triaged_in_corpus": 15, "observations_count": 86916, "ai_coder_pattern_id": 16}, "scanner": "repobility-threat-engine", "correlation_key": "fp|935f581bac3e0810e5077768554e9e084352530d5299456f85d1ecab8c721ab5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/utils/baseCreateUtils.ts"}, "region": {"startLine": 231}}}]}, {"ruleId": "SEC033", "level": "error", "message": {"text": "[SEC033] Prototype Pollution \u2014 unfiltered merge of user object: Merging user-controlled object into a target without filtering `__proto__`/`constructor`/`prototype` keys lets attackers inject properties onto Object.prototype, affecting every object in the process. CWE-1321. Real-world: CVE-2019-10744 (lodash), CVE-2021-23337 (lodash.set), CVE-2023-26136 (tough-cookie)."}, "properties": {"repobilityId": 78152, "scanner": "repobility-threat-engine", "fingerprint": "55ea9d60555ef32ffa9b0e92f0483119e2e9f2f09e9649e32b445918275a789e", "category": "prototype_pollution", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "[user.id] =", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC033", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|55ea9d60555ef32ffa9b0e92f0483119e2e9f2f09e9649e32b445918275a789e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/store/base.ts"}, "region": {"startLine": 43}}}]}, {"ruleId": "SEC033", "level": "error", "message": {"text": "[SEC033] Prototype Pollution \u2014 unfiltered merge of user object: Merging user-controlled object into a target without filtering `__proto__`/`constructor`/`prototype` keys lets attackers inject properties onto Object.prototype, affecting every object in the process. CWE-1321. Real-world: CVE-2019-10744 (lodash), CVE-2021-23337 (lodash.set), CVE-2023-26136 (tough-cookie)."}, "properties": {"repobilityId": 78151, "scanner": "repobility-threat-engine", "fingerprint": "64a89728e39c821523c78cb5cf4853561720ca33d77c1abaaad1e9a72d0ca90d", "category": "prototype_pollution", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "[user.value.id] =", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC033", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|64a89728e39c821523c78cb5cf4853561720ca33d77c1abaaad1e9a72d0ca90d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/composables/useUserSorts.ts"}, "region": {"startLine": 81}}}]}, {"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": 78137, "scanner": "repobility-threat-engine", "fingerprint": "e3050ebd7323f828581041c3272ac7c6cc4e64f823f9211d4e528227d899b977", "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(pattern", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC083", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|e3050ebd7323f828581041c3272ac7c6cc4e64f823f9211d4e528227d899b977"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/noco-integrations/core/src/utils/axios.ts"}, "region": {"startLine": 78}}}]}, {"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": 78136, "scanner": "repobility-threat-engine", "fingerprint": "808594a4ec10cbf090f411c46ee49db8475db6d59da168688e118c73fed98e4f", "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(regexPattern", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC083", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|808594a4ec10cbf090f411c46ee49db8475db6d59da168688e118c73fed98e4f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/utils/searchUtils.ts"}, "region": {"startLine": 58}}}]}, {"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": 78135, "scanner": "repobility-threat-engine", "fingerprint": "18cb162bdf860e8773be593ac414a1e68f94fc93725b61c65f612447a93a056d", "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(key", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC083", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|18cb162bdf860e8773be593ac414a1e68f94fc93725b61c65f612447a93a056d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/composables/useCellUrlConfig.ts"}, "region": {"startLine": 14}}}]}, {"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": 78126, "scanner": "repobility-threat-engine", "fingerprint": "165ff717f91cf67206c0088f1cbc74ad823cbd6aec570442459af2951e8dbf17", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "URL(t", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|165ff717f91cf67206c0088f1cbc74ad823cbd6aec570442459af2951e8dbf17"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/smartsheet/grid/canvas/cells/Url.ts"}, "region": {"startLine": 30}}}]}, {"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": 78125, "scanner": "repobility-threat-engine", "fingerprint": "607e3b4ff779e361ab40d089971a9ccf2c1f24417ab30a1ef9d9dbdcc8541cdb", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "URL(m", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|607e3b4ff779e361ab40d089971a9ccf2c1f24417ab30a1ef9d9dbdcc8541cdb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/smartsheet/grid/canvas/cells/Formula.ts"}, "region": {"startLine": 48}}}]}, {"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": 78124, "scanner": "repobility-threat-engine", "fingerprint": "97fa48d7b1c065ac870b3411bf7b0d5fe78fb53aa1a73d66f5da6a656a07d732", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "URL(u", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|97fa48d7b1c065ac870b3411bf7b0d5fe78fb53aa1a73d66f5da6a656a07d732"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/smartsheet/grid/canvas/cells/Button/index.ts"}, "region": {"startLine": 71}}}]}, {"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": 78122, "scanner": "repobility-threat-engine", "fingerprint": "09c087ff033338bf60a2adf6993b1a5d272d889a1d7871a33a3c51ee1da46897", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "ctx.save()", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|09c087ff033338bf60a2adf6993b1a5d272d889a1d7871a33a3c51ee1da46897"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/smartsheet/grid/canvas/cells/Lookup.ts"}, "region": {"startLine": 147}}}]}, {"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": 78121, "scanner": "repobility-threat-engine", "fingerprint": "33b85a5a293fafa57d7294d7df1054ee334b34213e8f8b9333912b434de0d6c6", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "ctx.save()", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|33b85a5a293fafa57d7294d7df1054ee334b34213e8f8b9333912b434de0d6c6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/smartsheet/grid/canvas/cells/LongText.ts"}, "region": {"startLine": 74}}}]}, {"ruleId": "SEC128", "level": "error", "message": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake): Async call invoked without `await` returns an unhandled Promise. The outer function resolves before the inner work completes \u2014 DB writes lost, emails not sent, race conditions. This is one of the top-3 errors AI coders make: they understand async-shape but drop the await keyword when chaining multiple ops. Surfaces as flaky tests or silently dropped data in production."}, "properties": {"repobilityId": 78120, "scanner": "repobility-threat-engine", "fingerprint": "b4d555c5c637ffd84fc977cfd4e0e37f397fce2c57ba31da4e51a77fb4580827", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "sortable.destroy()", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|b4d555c5c637ffd84fc977cfd4e0e37f397fce2c57ba31da4e51a77fb4580827"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/cell/attachment/sort.ts"}, "region": {"startLine": 58}}}]}, {"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": 78106, "scanner": "repobility-threat-engine", "fingerprint": "9fedfa2aec7b64f55ea4945d559f7c79d797d933fdbf34b77d0776a21eef2db3", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".innerHTML = `${firstParagraph.innerHTML}${endSpaces}", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|9fedfa2aec7b64f55ea4945d559f7c79d797d933fdbf34b77d0776a21eef2db3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/helpers/tiptap-markdown/parse/MarkdownParser.ts"}, "region": {"startLine": 108}}}]}, {"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": 78105, "scanner": "repobility-threat-engine", "fingerprint": "7df0b3f6b8d7744277294e406fad8dccb1972f6bbdbc7ae66449652be4e7c308", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "map((identifier) => `{${identifier}", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|7df0b3f6b8d7744277294e406fad8dccb1972f6bbdbc7ae66449652be4e7c308"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/monaco/formula.ts"}, "region": {"startLine": 54}}}]}, {"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": 78104, "scanner": "repobility-threat-engine", "fingerprint": "919fe3e4592af160f0626ad392dc499fb696e9b784ccffb44c0f26cf6dda508c", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "map((k) => `text-${k}", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|919fe3e4592af160f0626ad392dc499fb696e9b784ccffb44c0f26cf6dda508c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/assets/nc-typography-plugin.ts"}, "region": {"startLine": 43}}}]}, {"ruleId": "MINED123", "level": "error", "message": {"text": "[MINED123] Trojan Source bidi character (LRM) in source: Line 414 contains a Unicode bidirectional override character (U+200E LRM). This is the 'Trojan Source' attack (CVE-2021-42574): the character makes the compiler / interpreter see different code than the human reviewer."}, "properties": {"repobilityId": 78258, "scanner": "repobility-supply-chain", "fingerprint": "7998603ece0dcf056db920c4b4eaed59566232895ded194fb8075952cad60bd3", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "trojan-source-bidi", "owasp": null, "cwe_ids": ["CWE-1007"], "languages": ["any"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "vuln||CVE-2021-42574|token"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/components/smartsheet/grid/PaginationV2.vue"}, "region": {"startLine": 414}}}]}, {"ruleId": "JRN001", "level": "error", "message": {"text": "Token handoff appears to use a callback URL or fragment"}, "properties": {"repobilityId": 78229, "scanner": "repobility-journey-contract", "fingerprint": "274965425da9e66d3f2faa760ea494a111596398b4cc1a4c612624f633d1faee", "category": "auth", "severity": "critical", "confidence": 0.88, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Callback/redirect wording, token-in-URL syntax, and navigation code appear near each other.", "evidence": {"rule_id": "JRN001", "scanner": "repobility-journey-contract", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Unvalidated_Redirects_and_Forwards_Cheat_Sheet.html", "https://cheatsheetseries.owasp.org/cheatsheets/Session_Management_Cheat_Sheet.html"], "correlation_key": "code|auth|token|185|jrn001"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nc-gui/middleware/03.auth.global.ts"}, "region": {"startLine": 185}}}]}, {"ruleId": "DKC007", "level": "error", "message": {"text": "Compose service contains a literal secret environment value"}, "properties": {"repobilityId": 78205, "scanner": "repobility-docker", "fingerprint": "40903d4e3c3e3b4030cf12ac50be1428b858adf9b81e80ffd691abd5b5eddbaf", "category": "docker", "severity": "critical", "confidence": 0.96, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Environment variable name is secret-like and value is a committed literal.", "evidence": {"rule_id": "DKC007", "scanner": "repobility-docker", "service": "root_db", "variable": "MYSQL_PASSWORD", "references": ["https://docs.docker.com/compose/how-tos/environment-variables/best-practices/", "https://docs.docker.com/reference/compose-file/secrets/"], "path_context": "runtime", "correlation_key": "fp|40903d4e3c3e3b4030cf12ac50be1428b858adf9b81e80ffd691abd5b5eddbaf", "compose_secrets_declared": false}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose/nginx-proxy-manager/docker-compose.yml"}, "region": {"startLine": 33}}}]}, {"ruleId": "DKC008", "level": "error", "message": {"text": "Compose service mounts the Docker socket"}, "properties": {"repobilityId": 78197, "scanner": "repobility-docker", "fingerprint": "9286ce21e9d315db9a52dd4cf3a9574f925ea99561f6c2bd8c3f6d9893b320dc", "category": "docker", "severity": "critical", "confidence": 0.98, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Volume mount references /var/run/docker.sock.", "evidence": {"rule_id": "DKC008", "scanner": "repobility-docker", "service": "watchtower", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|9286ce21e9d315db9a52dd4cf3a9574f925ea99561f6c2bd8c3f6d9893b320dc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose/3_traefik/docker-compose.yml"}, "region": {"startLine": 84}}}]}, {"ruleId": "DKC008", "level": "error", "message": {"text": "Compose service mounts the Docker socket"}, "properties": {"repobilityId": 78195, "scanner": "repobility-docker", "fingerprint": "91e3fe5495ceef43c64488fc9c068ae47a4a989ce6fc02e87f5958ee0b95bd5c", "category": "docker", "severity": "critical", "confidence": 0.98, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Volume mount references /var/run/docker.sock.", "evidence": {"rule_id": "DKC008", "scanner": "repobility-docker", "service": "traefik", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|91e3fe5495ceef43c64488fc9c068ae47a4a989ce6fc02e87f5958ee0b95bd5c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose/3_traefik/docker-compose.yml"}, "region": {"startLine": 42}}}]}, {"ruleId": "DKC007", "level": "error", "message": {"text": "Compose service contains a literal secret environment value"}, "properties": {"repobilityId": 78192, "scanner": "repobility-docker", "fingerprint": "5ba0a532dfd9901cf0cc2540636a3e4ad5677f254db9423935182094e6cc0e6f", "category": "docker", "severity": "critical", "confidence": 0.96, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Environment variable name is secret-like and value is a committed literal.", "evidence": {"rule_id": "DKC007", "scanner": "repobility-docker", "service": "root_db", "variable": "POSTGRES_PASSWORD", "references": ["https://docs.docker.com/compose/how-tos/environment-variables/best-practices/", "https://docs.docker.com/reference/compose-file/secrets/"], "path_context": "runtime", "correlation_key": "fp|5ba0a532dfd9901cf0cc2540636a3e4ad5677f254db9423935182094e6cc0e6f", "compose_secrets_declared": false}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose/2_pg/docker-compose.yml"}, "region": {"startLine": 14}}}]}, {"ruleId": "SEC084", "level": "error", "message": {"text": "[SEC084] JS: require() with non-literal: require(<variable>) loads arbitrary modules \u2014 equivalent to eval at module scope. Ported from eslint-plugin-security detect-non-literal-require (Apache-2.0)."}, "properties": {"repobilityId": 78174, "scanner": "repobility-threat-engine", "fingerprint": "6ec7b99834d6194b458b6d3fe339eec545934a9d3b4a271dd52e21f4f4d2fee7", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "require(tsconfigPath", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC084", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|6ec7b99834d6194b458b6d3fe339eec545934a9d3b4a271dd52e21f4f4d2fee7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "packages/nocodb/build-utils/resolveTsAliases.js"}, "region": {"startLine": 4}}}]}]}]}