{"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": "MINED109", "name": "[MINED109] Mutable default argument in `get_blob_metadata` (list): `def get_blob_metadata(... = []/{}/set())` \u2014 Python's", "shortDescription": {"text": "[MINED109] Mutable default argument in `get_blob_metadata` (list): `def get_blob_metadata(... = []/{}/set())` \u2014 Python's default value is constructed ONCE at function definition time and shared across all calls. Mutating it in one call muta"}, "fullDescription": {"text": "Use None as the default and create the collection inside the function: `def get_blob_metadata(x=None): x = x or []`"}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED111", "name": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or ", "shortDescription": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "fullDescription": {"text": "Either narrow the exception type, log the exception with `logger.exception(...)`, or re-raise after handling."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "WEB012", "name": "Service worker is present without a web app manifest", "shortDescription": {"text": "Service worker is present without a web app manifest"}, "fullDescription": {"text": "Add a valid manifest.json or site.webmanifest and reference it from the document head. Include name, icons, start_url, display, and theme colors."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "medium", "confidence": 0.72, "cwe": "", "owasp": ""}}, {"id": "WEB003", "name": "Public web service has no security.txt", "shortDescription": {"text": "Public web service has no security.txt"}, "fullDescription": {"text": "Add /.well-known/security.txt with Contact, Expires, Canonical, Preferred-Languages, and Policy fields. Keep the contact endpoint monitored."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "medium", "confidence": 0.78, "cwe": "", "owasp": ""}}, {"id": "WEB015", "name": "Public web app has no Content Security Policy", "shortDescription": {"text": "Public web app has no Content Security Policy"}, "fullDescription": {"text": "Add a Content-Security-Policy header through the web framework or hosting config. For static apps, add a CSP meta tag that restricts default-src, script-src, connect-src, img-src, and frame-ancestors."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "medium", "confidence": 0.7, "cwe": "", "owasp": ""}}, {"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 /ex"}, "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": "AUC004", "name": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence ", "shortDescription": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: ANY /metrics/."}, "fullDescription": {"text": "Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml."}, "properties": {"scanner": "repobility-access-control", "category": "auth", "severity": "medium", "confidence": 0.66, "cwe": "", "owasp": ""}}, {"id": "AUC002", "name": "[AUC002] Low visible authorization coverage in route inventory: Only 14.8% of discovered routes show nearby authenticati", "shortDescription": {"text": "[AUC002] Low visible authorization coverage in route inventory: Only 14.8% 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 `app` image uses the latest tag", "shortDescription": {"text": "Compose service `app` 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": "DKR001", "name": "Docker final stage has no non-root USER", "shortDescription": {"text": "Docker final stage has no non-root USER"}, "fullDescription": {"text": "Add a non-root USER in the final runtime stage after files and permissions are prepared."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.82, "cwe": "", "owasp": ""}}, {"id": "DKR013", "name": "Dockerfile ADD downloads remote content", "shortDescription": {"text": "Dockerfile ADD downloads remote content"}, "fullDescription": {"text": "Use curl/wget with a pinned URL, verify checksum or signature, and prefer COPY for local files."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.84, "cwe": "", "owasp": ""}}, {"id": "DKR015", "name": "Docker build context is very large", "shortDescription": {"text": "Docker build context is very large"}, "fullDescription": {"text": "Shrink the build context with .dockerignore, move generated/runtime data outside the build context, and copy only the manifest files needed for cached dependency layers."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.84, "cwe": "", "owasp": ""}}, {"id": "AGT015", "name": "Remote install command pipes network code directly to a shell", "shortDescription": {"text": "Remote install command pipes network code directly to a shell"}, "fullDescription": {"text": "Publish a package-manager install path or add checksum/signature verification before execution. For docs, show the inspect-then-run flow and pin the downloaded artifact version."}, "properties": {"scanner": "repobility-agent-runtime", "category": "dependency", "severity": "medium", "confidence": 0.7, "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": "SEC046", "name": "[SEC046] Client-side open redirect \u2014 window.location = server-supplied URL: Assigning window.location from a server-supp", "shortDescription": {"text": "[SEC046] Client-side open redirect \u2014 window.location = server-supplied URL: Assigning window.location from a server-supplied URL trusts the server endpoint to never return a hostile destination. If that endpoint is ever subverted (compromis"}, "fullDescription": {"text": "Validate the URL is same-origin or on an explicit allowlist before assignment:\n  const u = new URL(serverUrl, location.href);\n  if (u.origin !== location.origin && !ALLOWED.includes(u.host)) return;\n  location.assign(u);\nEven better: have the server return a path (/checkout/done) instead of a full URL, and only allow same-origin navigation."}, "properties": {"scanner": "repobility-threat-engine", "category": "open_redirect", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC015", "name": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable.", "shortDescription": {"text": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable."}, "fullDescription": {"text": "Use secrets module (Python) or crypto.getRandomValues() (JS) for security-sensitive randomness."}, "properties": {"scanner": "repobility-threat-engine", "category": "crypto", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "ERR001", "name": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG ", "shortDescription": {"text": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level."}, "fullDescription": {"text": "Log the error: `except Exception: logger.debug('cleanup failed', exc_info=True)`. Or handle specific exception types."}, "properties": {"scanner": "repobility-threat-engine", "category": "error_handling", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC028", "name": "[SEC028] CSRF Protection Removed \u2014 @csrf_exempt on state-changing endpoint: @csrf_exempt removes Django's CSRF protectio", "shortDescription": {"text": "[SEC028] CSRF Protection Removed \u2014 @csrf_exempt on state-changing endpoint: @csrf_exempt removes Django's CSRF protection from a view. On a state-changing endpoint (POST/PUT/DELETE) this allows cross-site requests to perform actions on beha"}, "fullDescription": {"text": "Either:\n  (a) Replace @csrf_exempt with @csrf_protect (or just remove the exemption).\n  (b) If this is a public API endpoint, use SessionAuthentication +       Token/JWT auth from DRF instead. Token-bearer requests aren't       vulnerable to CSRF.\n  (c) If you must skip CSRF (e.g. for a third-party callback), validate       the request via HMAC signature with the partner's shared secret,       and add a `# csrf_exempt is safe here` comment to silence the       finding."}, "properties": {"scanner": "repobility-threat-engine", "category": "csrf", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC014", "name": "[SEC014] SSL Verification Disabled: SSL certificate verification is disabled, allowing man-in-the-middle attacks.", "shortDescription": {"text": "[SEC014] SSL Verification Disabled: SSL certificate verification is disabled, allowing man-in-the-middle attacks."}, "fullDescription": {"text": "Enable SSL verification. Use verify=True (default) for requests. Pin certificates if needed."}, "properties": {"scanner": "repobility-threat-engine", "category": "crypto", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC042", "name": "[SEC042] SQL identifier injection via f-string in cursor execute: f-string SQL normalizes an unsafe pattern. Currently s", "shortDescription": {"text": "[SEC042] SQL identifier injection via f-string in cursor execute: f-string SQL normalizes an unsafe pattern. Currently safe when only trusted internal values are interpolated (e.g. self._table in Odoo), but a future contributor can extend t"}, "fullDescription": {"text": "Use psycopg2.sql.SQL() + sql.Identifier() for identifiers:\n  from psycopg2 import sql\n  cr.execute(sql.SQL('UPDATE {} SET x=%s').format(sql.Identifier(table)), (value,))\nNever use f-string in cr.execute(). Values go through %s parameters."}, "properties": {"scanner": "repobility-threat-engine", "category": "injection", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC034", "name": "[SEC034] Log Injection / Log Forging \u2014 unsanitized user input in log: User input is logged without sanitizing newlines o", "shortDescription": {"text": "[SEC034] Log Injection / Log Forging \u2014 unsanitized user input in log: User input is logged without sanitizing newlines or control characters. Attackers inject `\\n` to forge fake log entries, hide tracks, or exploit downstream log parsers (S"}, "fullDescription": {"text": "Strip control characters before logging:\n  safe = user_input.replace('\\n','').replace('\\r','').replace('\\x00','')\n  logger.info('User action: %s', safe)\nAlways use parameterized logging (`%s` + args), never f-strings or string concat \u2014 that's also what mitigates log4shell-style attacks. For structured logging, use a JSON formatter that escapes values."}, "properties": {"scanner": "repobility-threat-engine", "category": "log_injection", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "COMP001", "name": "[COMP001] High cognitive complexity: Function `bulk_update` has cognitive complexity 18 (SonarSource scale). Cognitive c", "shortDescription": {"text": "[COMP001] High cognitive complexity: Function `bulk_update` has cognitive complexity 18 (SonarSource scale). Cognitive complexity measures how hard the function is for a human to understand \u2014 nested branches, boolean chains, and recursion a"}, "fullDescription": {"text": "Extract nested branches into named helper functions; flatten early-return / guard clauses; replace long if/elif chains with dispatch dicts or polymorphism. SonarQube's threshold for 'should refactor' is 15 \u2014 yours is 18."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "medium", "confidence": 0.95, "cwe": "", "owasp": ""}}, {"id": "SEC002", "name": "[SEC002] Hardcoded API Key: Hardcoded API key found in source code.", "shortDescription": {"text": "[SEC002] Hardcoded API Key: Hardcoded API key found in source code."}, "fullDescription": {"text": "Use environment variables. Add the pattern to .gitignore."}, "properties": {"scanner": "repobility-threat-engine", "category": "credential_exposure", "severity": "medium", "confidence": 0.3, "cwe": "", "owasp": ""}}, {"id": "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": 0.45, "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": "WEB005", "name": "robots.txt does not advertise a sitemap", "shortDescription": {"text": "robots.txt does not advertise a sitemap"}, "fullDescription": {"text": "Add `Sitemap: https://your-domain.example/sitemap.xml` to robots.txt."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "low", "confidence": 0.74, "cwe": "", "owasp": ""}}, {"id": "WEB011", "name": "Public web app has no humans.txt", "shortDescription": {"text": "Public web app has no humans.txt"}, "fullDescription": {"text": "Add humans.txt with team ownership, contact URL, key documentation links, and the last-updated date."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "low", "confidence": 0.5, "cwe": "", "owasp": ""}}, {"id": "WEB008", "name": "Public docs site has no llms.txt", "shortDescription": {"text": "Public docs site has no llms.txt"}, "fullDescription": {"text": "Add llms.txt with the product summary, canonical docs, API endpoints, security guidance, and preferred CLI workflow for AI agents."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "low", "confidence": 0.64, "cwe": "", "owasp": ""}}, {"id": "WEB002", "name": "Public web app has no sitemap", "shortDescription": {"text": "Public web app has no sitemap"}, "fullDescription": {"text": "Add sitemap.xml, a sitemap index, or a framework-native sitemap route and reference it from robots.txt."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "low", "confidence": 0.72, "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": "low", "confidence": 0.72, "cwe": "", "owasp": ""}}, {"id": "DKC016", "name": "App service does not wait for database health", "shortDescription": {"text": "App service does not wait for database health"}, "fullDescription": {"text": "Give the database a healthcheck and change the dependency to `depends_on: { db: { condition: service_healthy } }`."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.68, "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": "DKR008", "name": ".dockerignore misses sensitive defaults", "shortDescription": {"text": ".dockerignore misses sensitive defaults"}, "fullDescription": {"text": "Add missing patterns such as .env, .git, private keys, certificates, dependency folders, and local databases."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.72, "cwe": "", "owasp": ""}}, {"id": "AIC003", "name": "Duplicated implementation block across source files", "shortDescription": {"text": "Duplicated implementation block across source files"}, "fullDescription": {"text": "Extract the shared behavior into one function/module or delete the inactive duplicate after proving which path is used."}, "properties": {"scanner": "repobility-ai-code-hygiene", "category": "quality", "severity": "low", "confidence": 0.86, "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": "SEC124", "name": "[SEC124] TOCTOU file access (os.access then open): Check-then-use file pattern (access/exists then open) lets an attacke", "shortDescription": {"text": "[SEC124] TOCTOU file access (os.access then open): Check-then-use file pattern (access/exists then open) lets an attacker swap the file between check and use (symlink attack). `mktemp` is deprecated for the same reason."}, "fullDescription": {"text": "Use `os.open(path, os.O_CREAT | os.O_EXCL | os.O_WRONLY)` for atomic create-only. Use `tempfile.NamedTemporaryFile()` (not `mktemp`). For locking, use `fcntl.flock`."}, "properties": {"scanner": "repobility-threat-engine", "category": "race_condition", "severity": "low", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "DKR002", "name": "Dockerfile base image is selected through a build variable", "shortDescription": {"text": "Dockerfile base image is selected through a build variable"}, "fullDescription": {"text": "Resolve the variable to a versioned tag or digest in production builds and document the allowed images."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "info", "confidence": 0.48, "cwe": "", "owasp": ""}}, {"id": "MINED099", "name": "[MINED099] Hardcoded Secret: API key, AWS access key, GitHub token, Slack token, OpenAI key, or private key embedded dir", "shortDescription": {"text": "[MINED099] Hardcoded Secret: API key, AWS access key, GitHub token, Slack token, OpenAI key, or private key embedded directly in source. AI assistants frequently leak demo credentials."}, "fullDescription": {"text": "Move the secret to an environment variable or secret manager. Rotate the exposed credential immediately \u2014 assume it is compromised."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.1, "cwe": "", "owasp": ""}}, {"id": "MINED052", "name": "[MINED052] Ts Any Typed (and 4 more): Same pattern found in 4 additional files. Review if needed.", "shortDescription": {"text": "[MINED052] Ts Any Typed (and 4 more): Same pattern found in 4 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": "MINED054", "name": "[MINED054] Ts As Any: Casting to any (as any) bypasses type checking entirely.", "shortDescription": {"text": "[MINED054] Ts As Any: Casting to any (as any) bypasses type checking entirely."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-704 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED056", "name": "[MINED056] React Key As Index: key={index} in map() \u2014 re-renders the wrong elements on re-order.", "shortDescription": {"text": "[MINED056] React Key As Index: key={index} in map() \u2014 re-renders the wrong elements on re-order."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-682 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED058", "name": "[MINED058] React Dangerously Set Html: dangerouslySetInnerHTML bypasses Reacts JSX escaping. Pair with DOMPurify or neve", "shortDescription": {"text": "[MINED058] React Dangerously Set Html: dangerouslySetInnerHTML bypasses Reacts JSX escaping. Pair with DOMPurify or never use with user data."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-79 / A03:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED045", "name": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong.", "shortDescription": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-476 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED064", "name": "[MINED064] Python Input Call: input() blocks for stdin. Inappropriate in services.", "shortDescription": {"text": "[MINED064] Python Input Call: input() blocks for stdin. Inappropriate in services."}, "fullDescription": {"text": "Review and fix per the pattern semantics."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC020", "name": "[SEC020] Secret Printed to Logs: Debug or diagnostic code appears to print a credential-bearing value. This is a frequen", "shortDescription": {"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."}, "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.15, "cwe": "", "owasp": ""}}, {"id": "MINED077", "name": "[MINED077] Python Open No Context: fp = open(path) outside with-block leaks file handles.", "shortDescription": {"text": "[MINED077] Python Open No Context: fp = open(path) outside with-block leaks file handles."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-772 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED067", "name": "[MINED067] Python Requests No Timeout: requests.get/post/etc. without timeout= can hang forever.", "shortDescription": {"text": "[MINED067] Python Requests No Timeout: requests.get/post/etc. without timeout= can hang forever."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-400 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED018", "name": "[MINED018] Unsafe Deserialization Pickle: pickle.loads / yaml.load (without Loader=SafeLoader) / unmarshal of network/fi", "shortDescription": {"text": "[MINED018] Unsafe Deserialization Pickle: pickle.loads / yaml.load (without Loader=SafeLoader) / unmarshal of network/file data \u2014 RCE."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-502 / A08:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.1, "cwe": "", "owasp": ""}}, {"id": "SEC079", "name": "[SEC079] Python: yaml.load without SafeLoader: yaml.load() without explicit SafeLoader can execute arbitrary Python obje", "shortDescription": {"text": "[SEC079] Python: yaml.load without SafeLoader: yaml.load() without explicit SafeLoader can execute arbitrary Python objects (CVE-2017-18342). Ported from bandit B506 / dlint DUO109 (Apache-2.0 / BSD-3)."}, "fullDescription": {"text": "Use `yaml.safe_load(data)` or `yaml.load(data, Loader=yaml.SafeLoader)`."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.1, "cwe": "", "owasp": ""}}, {"id": "SEC078", "name": "[SEC078] Python: requests without timeout: requests.get/post without a timeout will hang indefinitely on a non-responsiv", "shortDescription": {"text": "[SEC078] Python: requests without timeout: requests.get/post without a timeout will hang indefinitely on a non-responsive server, causing thread exhaustion and ReDoS. Ported from bandit B113 (Apache-2.0). NOTE: this regex is heuristic; a re"}, "fullDescription": {"text": "Add `timeout=10` (or appropriate value) to every requests call."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.1, "cwe": "", "owasp": ""}}, {"id": "SEC007", "name": "[SEC007] Unsafe Deserialization: Unsafe deserialization can execute arbitrary code.", "shortDescription": {"text": "[SEC007] Unsafe Deserialization: Unsafe deserialization can execute arbitrary code."}, "fullDescription": {"text": "Use yaml.safe_load() instead of yaml.load(). Avoid pickle for untrusted data."}, "properties": {"scanner": "repobility-threat-engine", "category": "deserialization", "severity": "info", "confidence": 0.1, "cwe": "", "owasp": ""}}, {"id": "MINED001", "name": "[MINED001] Bare Except Pass (and 6 more): Same pattern found in 6 additional files. Review if needed.", "shortDescription": {"text": "[MINED001] Bare Except Pass (and 6 more): Same pattern found in 6 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-755 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED072", "name": "[MINED072] Python Pass Only Class (and 11 more): Same pattern found in 11 additional files. Review if needed.", "shortDescription": {"text": "[MINED072] Python Pass Only Class (and 11 more): Same pattern found in 11 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-1188 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED050", "name": "[MINED050] Stub Only Function (and 30 more): Same pattern found in 30 additional files. Review if needed.", "shortDescription": {"text": "[MINED050] Stub Only Function (and 30 more): Same pattern found in 30 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-1188 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC128", "name": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 35 more): Same pattern found in 35 add", "shortDescription": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 35 more): Same pattern found in 35 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": "MINED043", "name": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data.", "shortDescription": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "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": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED098", "name": "[MINED098] Global Scope Pollution: Attaching libraries/objects directly to the global window scope (e.g., `window.axios ", "shortDescription": {"text": "[MINED098] Global Scope Pollution: Attaching libraries/objects directly to the global window scope (e.g., `window.axios = axios;`) makes the code harder to test and increases the risk of naming collisions."}, "fullDescription": {"text": "Import the library where you need it instead of attaching to window. For legitimate global registries, use a namespaced object (e.g., `window.__myApp.axios`)."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED044", "name": "[MINED044] Js Console Log Prod (and 26 more): Same pattern found in 26 additional files. Review if needed.", "shortDescription": {"text": "[MINED044] Js Console Log Prod (and 26 more): Same pattern found in 26 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 25 more): Same pattern found in 25 addi", "shortDescription": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 25 more): Same pattern found in 25 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": "MINED126", "name": "[MINED126] Workflow container/services image `postgres:13` unpinned: `container/services image: postgres:13` without `@s", "shortDescription": {"text": "[MINED126] Workflow container/services image `postgres:13` unpinned: `container/services image: postgres:13` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain disc"}, "fullDescription": {"text": "Replace with `postgres:13@sha256:<digest>`. Re-pin via Dependabot Docker scope."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED115", "name": "[MINED115] Action `hmarr/debug-action` pinned to mutable ref `@v3.0.0`: `uses: hmarr/debug-action@v3.0.0` resolves at wo", "shortDescription": {"text": "[MINED115] Action `hmarr/debug-action` pinned to mutable ref `@v3.0.0`: `uses: hmarr/debug-action@v3.0.0` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromi"}, "fullDescription": {"text": "Replace with: `uses: hmarr/debug-action@<40-char-sha>  # v3.0.0` and let Dependabot bump it on a scheduled cadence."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED118", "name": "[MINED118] Dockerfile FROM `heartexlabs/label-studio:latest` not pinned by digest: `FROM heartexlabs/label-studio:latest", "shortDescription": {"text": "[MINED118] Dockerfile FROM `heartexlabs/label-studio:latest` not pinned by digest: `FROM heartexlabs/label-studio:latest` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potenti"}, "fullDescription": {"text": "Replace with: `FROM heartexlabs/label-studio:latest@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot)."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED131", "name": "[MINED131] pre-commit hook `https://github.com/astral-sh/ruff-pre-commit` pinned to mutable rev `v0.15.1`: `.pre-commit-", "shortDescription": {"text": "[MINED131] pre-commit hook `https://github.com/astral-sh/ruff-pre-commit` pinned to mutable rev `v0.15.1`: `.pre-commit-config.yaml` references `https://github.com/astral-sh/ruff-pre-commit` at `rev: v0.15.1`. If `{rev}` is a branch or vers"}, "fullDescription": {"text": "Pin to a commit SHA: `rev: <40-char-sha>` and bump it through `pre-commit autoupdate` (which writes to PRs that are reviewed)."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED119", "name": "[MINED119] Dockerfile `ADD https://install.python-poetry.org`: Dockerfile `ADD <url>` downloads a remote artifact into t", "shortDescription": {"text": "[MINED119] Dockerfile `ADD https://install.python-poetry.org`: Dockerfile `ADD <url>` downloads a remote artifact into the image with no integrity check. If the host or DNS is compromised between layers \u2014 or if the URL serves a different fi"}, "fullDescription": {"text": "Download the file in CI with a known checksum, vendor it into the repo, and COPY it during the build. Or use `RUN curl -sSL URL | sha256sum -c <(echo '<expected> -')` to verify."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED112", "name": "[MINED112] FastAPI PATCH core.utils.io.validate_upload_url has no auth: Handler `test_raises_for_local_urls_with_ssrf_pr", "shortDescription": {"text": "[MINED112] FastAPI PATCH core.utils.io.validate_upload_url has no auth: Handler `test_raises_for_local_urls_with_ssrf_protection_enabled` is registered with router/app.patch(...) but no Depends/Security parameter is declared and no auth mar"}, "fullDescription": {"text": "Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional."}, "properties": {"scanner": "repobility-route-auth", "category": "quality", "severity": "high", "confidence": 0.8, "cwe": "", "owasp": ""}}, {"id": "MINED106", "name": "[MINED106] Phantom test coverage: test_missing_text_in_labels: Test function `test_missing_text_in_labels` runs code but", "shortDescription": {"text": "[MINED106] Phantom test coverage: test_missing_text_in_labels: Test function `test_missing_text_in_labels` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying any"}, "fullDescription": {"text": "Add an explicit assertion that captures the test's intent, or remove the test."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED108", "name": "[MINED108] `self.format` used but never assigned in __init__: Method `read_tasks` of class `FileUpload` reads `self.form", "shortDescription": {"text": "[MINED108] `self.format` used but never assigned in __init__: Method `read_tasks` of class `FileUpload` reads `self.format`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time"}, "fullDescription": {"text": "Initialize `self.format = <default>` in __init__, or add a class-level default."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "high", "confidence": 1.0, "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 /export/s3/<int:pk>."}, "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": "SEC083", "name": "[SEC083] JS: new RegExp() with non-literal: new RegExp(<variable>) \u2014 variable input can craft a ReDoS pattern. Ported fr", "shortDescription": {"text": "[SEC083] JS: new RegExp() with non-literal: new RegExp(<variable>) \u2014 variable input can craft a ReDoS pattern. Ported from eslint-plugin-security detect-non-literal-regexp (Apache-2.0)."}, "fullDescription": {"text": "Use a literal RegExp or whitelist-validate user input before constructing patterns."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "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": "MINED040", "name": "[MINED040] Python Yaml Load Unsafe: yaml.load(stream) without SafeLoader can deserialize arbitrary classes.", "shortDescription": {"text": "[MINED040] Python Yaml Load Unsafe: yaml.load(stream) without SafeLoader can deserialize arbitrary classes."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-502 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC013", "name": "[SEC013] Path Traversal \u2014 User Input in File Path: User-controlled input used in file path without sanitization. Allows ", "shortDescription": {"text": "[SEC013] Path Traversal \u2014 User Input in File Path: User-controlled input used in file path without sanitization. Allows reading arbitrary files."}, "fullDescription": {"text": "Use os.path.realpath() and verify the path starts with your expected base directory. Use secure_filename() for uploads."}, "properties": {"scanner": "repobility-threat-engine", "category": "path_traversal", "severity": "high", "confidence": 0.8, "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": "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": "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": "SEC004", "name": "[SEC004] SQL Injection Risk: String interpolation in SQL execution. Allows SQL injection.", "shortDescription": {"text": "[SEC004] SQL Injection Risk: String interpolation in SQL execution. Allows SQL injection."}, "fullDescription": {"text": "Use parameterized queries: cursor.execute('SELECT * FROM t WHERE id = %s', [id]). For dynamic table or column names, choose identifiers from a hard-coded allowlist and keep values in parameters."}, "properties": {"scanner": "repobility-threat-engine", "category": "injection", "severity": "high", "confidence": 0.5, "cwe": "", "owasp": ""}}, {"id": "SEC040", "name": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data: Setting .innerHTML with a template literal that int", "shortDescription": {"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 HTM"}, "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": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC100", "name": "[SEC100] CORS permissive Access-Control-Allow-Origin: *: Permissive CORS policy (`*` origin) allows any website to make ", "shortDescription": {"text": "[SEC100] CORS permissive Access-Control-Allow-Origin: *: Permissive CORS policy (`*` origin) allows any website to make authenticated cross-origin requests. Especially dangerous when combined with `Access-Control-Allow-Credentials: true`."}, "fullDescription": {"text": "Allowlist specific origins. For dynamic per-request validation, validate against a known list and echo the origin back. Never combine wildcard origin with credentials."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED012", "name": "[MINED012] Curl Pipe Bash: curl ... | sh / bash \u2014 runs unverified network code.", "shortDescription": {"text": "[MINED012] Curl Pipe Bash: curl ... | sh / bash \u2014 runs unverified network code."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-494 / A08:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED116", "name": "[MINED116] Workflow uses `secrets.ACTIONS_STEP_DEBUG` on a `pull_request` trigger: This workflow triggers on `pull_reque", "shortDescription": {"text": "[MINED116] Workflow uses `secrets.ACTIONS_STEP_DEBUG` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.ACTIONS_STEP_DEBUG }` lets a PR from any fork exfiltrate "}, "fullDescription": {"text": "Either remove the secret reference, or switch the trigger to `pull_request_target` AND ensure no fork-controlled code runs before the secret is consumed."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "critical", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED125", "name": "[MINED125] GHA script injection via github.event.pull_request.head.ref in run-step: `run:` step interpolates ${{ github.", "shortDescription": {"text": "[MINED125] GHA script injection via github.event.pull_request.head.ref in run-step: `run:` step interpolates ${{ github.event.pull_request.head.ref }} directly into shell. PR title/body/branch/comment fields are attacker-controllable."}, "fullDescription": {"text": "Capture the field into an env var first; reference $ENV_VAR in shell."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "critical", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED107", "name": "[MINED107] Missing import: `stat` used but not imported: The file uses `stat.something(...)` but never imports `stat`. T", "shortDescription": {"text": "[MINED107] Missing import: `stat` used but not imported: The file uses `stat.something(...)` but never imports `stat`. This raises NameError at runtime the first time the line executes."}, "fullDescription": {"text": "Add `import stat` at the top of the file."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "critical", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC116", "name": "[SEC116] Ruby YAML.load / Marshal.load on untrusted input: `YAML.load` (pre-3.1) and `Marshal.load` instantiate arbitrar", "shortDescription": {"text": "[SEC116] Ruby YAML.load / Marshal.load on untrusted input: `YAML.load` (pre-3.1) and `Marshal.load` instantiate arbitrary Ruby classes \u2014 direct RCE on untrusted input. `unsafe_load` is even more dangerous."}, "fullDescription": {"text": "Use `YAML.safe_load(input, permitted_classes: [Date])` \u2014 explicit class allowlist. Never use `Marshal.load` on untrusted data; serialize as JSON instead."}, "properties": {"scanner": "repobility-threat-engine", "category": "deserialization", "severity": "critical", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED007", "name": "[MINED007] Sql String Concat: cursor.execute(f\"... {user_input} ...\") \u2014 SQL injection.", "shortDescription": {"text": "[MINED007] Sql String Concat: cursor.execute(f\"... {user_input} ...\") \u2014 SQL injection."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-89 / A03:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "critical", "confidence": 1.0, "cwe": "", "owasp": ""}}]}}, "automationDetails": {"id": "repobility/1394"}, "properties": {"repository": "HumanSignal/label-studio", "repoUrl": "https://github.com/HumanSignal/label-studio", "branch": "develop"}, "results": [{"ruleId": "MINED109", "level": "warning", "message": {"text": "[MINED109] Mutable default argument in `get_blob_metadata` (list): `def get_blob_metadata(... = []/{}/set())` \u2014 Python's default value is constructed ONCE at function definition time and shared across all calls. Mutating it in one call mutates it for every future call too."}, "properties": {"repobilityId": 143095, "scanner": "repobility-ast-engine", "fingerprint": "9f78a2cbb7a20793d7b35fca2926f15da33fb442cb40d6e312eac307daf46931", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "mutable-default-arg", "owasp": null, "cwe_ids": ["CWE-1023"], "languages": ["python"], "observations_count": 64867}, "scanner": "repobility-ast-engine", "correlation_key": "fp|9f78a2cbb7a20793d7b35fca2926f15da33fb442cb40d6e312eac307daf46931"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/gcs/utils.py"}, "region": {"startLine": 276}}}]}, {"ruleId": "MINED109", "level": "warning", "message": {"text": "[MINED109] Mutable default argument in `get_redis_connection` (dict): `def get_redis_connection(... = []/{}/set())` \u2014 Python's default value is constructed ONCE at function definition time and shared across all calls. Mutating it in one call mutates it for every future call too."}, "properties": {"repobilityId": 143094, "scanner": "repobility-ast-engine", "fingerprint": "00996dc2a42eaa3cb3fad788264d8c1013ce4bda7cab44638c14b63d84dbadc7", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "mutable-default-arg", "owasp": null, "cwe_ids": ["CWE-1023"], "languages": ["python"], "observations_count": 64867}, "scanner": "repobility-ast-engine", "correlation_key": "fp|00996dc2a42eaa3cb3fad788264d8c1013ce4bda7cab44638c14b63d84dbadc7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/redis/models.py"}, "region": {"startLine": 41}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 143092, "scanner": "repobility-ast-engine", "fingerprint": "49c3db8c4fef74df309411b827d95c118e11693bd5227fc6159c37d4071b7f0c", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|49c3db8c4fef74df309411b827d95c118e11693bd5227fc6159c37d4071b7f0c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/tests/test_redis.py"}, "region": {"startLine": 60}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 143090, "scanner": "repobility-ast-engine", "fingerprint": "09d5484af581e85f2826aa6005117eda93b3cc14a43f284b6cbf59fee55a094a", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|09d5484af581e85f2826aa6005117eda93b3cc14a43f284b6cbf59fee55a094a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/utils/contextlog.py"}, "region": {"startLine": 75}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 143076, "scanner": "repobility-ast-engine", "fingerprint": "0813d55e14e06068768b37f783683875e33b2c9379d5d30b705672f38e6ffc2d", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|0813d55e14e06068768b37f783683875e33b2c9379d5d30b705672f38e6ffc2d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/users/admin.py"}, "region": {"startLine": 135}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 143075, "scanner": "repobility-ast-engine", "fingerprint": "3a308e2ae84a9cc2f78f6fc3fa3253f0cc31f9307a630c26eda4c6d340e4d8fd", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|3a308e2ae84a9cc2f78f6fc3fa3253f0cc31f9307a630c26eda4c6d340e4d8fd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/users/admin.py"}, "region": {"startLine": 113}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 143072, "scanner": "repobility-ast-engine", "fingerprint": "a881aa1072b5fa5d27143441e6c4a41caa095826649c5e56de074d6baff45a9b", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|a881aa1072b5fa5d27143441e6c4a41caa095826649c5e56de074d6baff45a9b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/test_core.py"}, "region": {"startLine": 35}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 143061, "scanner": "repobility-ast-engine", "fingerprint": "49b8c94037a2208f1c3828aa2516a1406a3ba242e80ce7aa748726cfa3acf42f", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|49b8c94037a2208f1c3828aa2516a1406a3ba242e80ce7aa748726cfa3acf42f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_manager/managers.py"}, "region": {"startLine": 236}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 143060, "scanner": "repobility-ast-engine", "fingerprint": "f8ba0a9625aa2dc6e7dfbf7f8fbaf3316d569841069cb088bec193184f56404e", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|f8ba0a9625aa2dc6e7dfbf7f8fbaf3316d569841069cb088bec193184f56404e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_export/api.py"}, "region": {"startLine": 474}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 143058, "scanner": "repobility-ast-engine", "fingerprint": "a734bbb30fbe3310d35197d425df9815797ae6f3aa48b89b6294685f1578ff4c", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|a734bbb30fbe3310d35197d425df9815797ae6f3aa48b89b6294685f1578ff4c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tasks/serializers.py"}, "region": {"startLine": 604}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 143057, "scanner": "repobility-ast-engine", "fingerprint": "89b98594c57973a9a0a56653f26066b14b7af85b589ac3229466fb2aee7a634c", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|89b98594c57973a9a0a56653f26066b14b7af85b589ac3229466fb2aee7a634c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tasks/serializers.py"}, "region": {"startLine": 633}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 143056, "scanner": "repobility-ast-engine", "fingerprint": "78bdfa40af57d1e70d2470bf452a39a2c984306156149a35b2c4f9a9b060c9da", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|78bdfa40af57d1e70d2470bf452a39a2c984306156149a35b2c4f9a9b060c9da"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/redis.py"}, "region": {"startLine": 49}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 143054, "scanner": "repobility-ast-engine", "fingerprint": "c4fde55c30243ef92c4fbfcf5c2294c304ed4eef07e4dbd047723bdafdaa42d0", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|c4fde55c30243ef92c4fbfcf5c2294c304ed4eef07e4dbd047723bdafdaa42d0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/middleware.py"}, "region": {"startLine": 125}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 143053, "scanner": "repobility-ast-engine", "fingerprint": "ba56a969784d2e7909a7f9556509b17f59bb9b456d52289f65e735f8c40652aa", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|ba56a969784d2e7909a7f9556509b17f59bb9b456d52289f65e735f8c40652aa"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/views.py"}, "region": {"startLine": 167}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 143052, "scanner": "repobility-ast-engine", "fingerprint": "060f4abae0ec78dc4a2de73da96a483497c550efa73ff62ab2297e99c6d53da4", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|060f4abae0ec78dc4a2de73da96a483497c550efa73ff62ab2297e99c6d53da4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/current_request.py"}, "region": {"startLine": 102}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 143049, "scanner": "repobility-ast-engine", "fingerprint": "6c5b023a15ad3dae7a9894d06ef7326316c57b485d794b986c6de1d54959f95d", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|6c5b023a15ad3dae7a9894d06ef7326316c57b485d794b986c6de1d54959f95d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/fsm/serializer_fields.py"}, "region": {"startLine": 114}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 143048, "scanner": "repobility-ast-engine", "fingerprint": "af529d857def95beb67030d3d8dd7bdf5b9d63f222d81910fa60e22cf5d9f5dd", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|af529d857def95beb67030d3d8dd7bdf5b9d63f222d81910fa60e22cf5d9f5dd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/fsm/transition_utils.py"}, "region": {"startLine": 222}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 143047, "scanner": "repobility-ast-engine", "fingerprint": "ad7943861c4582ae1b1ed8903691dce33be7fb0bd5b4fb7e695d89fb7de618a1", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|ad7943861c4582ae1b1ed8903691dce33be7fb0bd5b4fb7e695d89fb7de618a1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/fsm/transition_utils.py"}, "region": {"startLine": 158}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 143046, "scanner": "repobility-ast-engine", "fingerprint": "13f05087215c082a7b720eb913f6af8b1cce0ee98f80449601806832ef783bda", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|13f05087215c082a7b720eb913f6af8b1cce0ee98f80449601806832ef783bda"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/utils.py"}, "region": {"startLine": 247}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 143045, "scanner": "repobility-ast-engine", "fingerprint": "bcc1cbc93be46355e5c944e8b1fdcbf2b9ec66b6cf02f0a44d68a2c771f1322a", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|bcc1cbc93be46355e5c944e8b1fdcbf2b9ec66b6cf02f0a44d68a2c771f1322a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/utils.py"}, "region": {"startLine": 222}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 143044, "scanner": "repobility-ast-engine", "fingerprint": "dba4a9c0c449b585175dac98de644687184570f934a6c037ede7c0f8541b3294", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|dba4a9c0c449b585175dac98de644687184570f934a6c037ede7c0f8541b3294"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/base_models.py"}, "region": {"startLine": 905}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 143042, "scanner": "repobility-ast-engine", "fingerprint": "a88bc6d0cd69a15ebfcad5d57df01121d5e1a9f6b3eb653886cf2a31f0ddcaf8", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|a88bc6d0cd69a15ebfcad5d57df01121d5e1a9f6b3eb653886cf2a31f0ddcaf8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/api.py"}, "region": {"startLine": 307}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 143041, "scanner": "repobility-ast-engine", "fingerprint": "5a41539467858064accca13fbd61034a8236acb1acab0f677edf22075dad2f88", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|5a41539467858064accca13fbd61034a8236acb1acab0f677edf22075dad2f88"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/api.py"}, "region": {"startLine": 629}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 143040, "scanner": "repobility-ast-engine", "fingerprint": "b001e9565c81c8361768bce56d59398c7004cbfe89b2d74ce7652854336b9a4e", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|b001e9565c81c8361768bce56d59398c7004cbfe89b2d74ce7652854336b9a4e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/api.py"}, "region": {"startLine": 614}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 143039, "scanner": "repobility-ast-engine", "fingerprint": "80644ac7c3e972aa2929915ef231932a6a124bb297f09bb66e373f0f5c3ba016", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|80644ac7c3e972aa2929915ef231932a6a124bb297f09bb66e373f0f5c3ba016"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/models.py"}, "region": {"startLine": 13}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 143019, "scanner": "repobility-ast-engine", "fingerprint": "861f4f3dcf3adbab2f2f56463ae2a53d4d61c7c1bfaa942e3563b972d4566080", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|861f4f3dcf3adbab2f2f56463ae2a53d4d61c7c1bfaa942e3563b972d4566080"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/uploader.py"}, "region": {"startLine": 11}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 143018, "scanner": "repobility-ast-engine", "fingerprint": "c859fc16e2658ade6e9886487ce3af054ce62b36764cbab52d3a35894a58320a", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|c859fc16e2658ade6e9886487ce3af054ce62b36764cbab52d3a35894a58320a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/functions.py"}, "region": {"startLine": 136}}}]}, {"ruleId": "WEB012", "level": "warning", "message": {"text": "Service worker is present without a web app manifest"}, "properties": {"repobilityId": 143011, "scanner": "repobility-web-presence", "fingerprint": "fcb0b1c9ad72f83092dc6928d3e76ca25d428a654bdcd26192cf227ad67fe1ea", "category": "quality", "severity": "medium", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "A service worker was discovered but no common web manifest file was found.", "evidence": {"rule_id": "WEB012", "scanner": "repobility-web-presence", "references": ["https://developer.mozilla.org/en-US/docs/Web/Manifest"], "correlation_key": "fp|fcb0b1c9ad72f83092dc6928d3e76ca25d428a654bdcd26192cf227ad67fe1ea"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "manifest.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "WEB003", "level": "warning", "message": {"text": "Public web service has no security.txt"}, "properties": {"repobilityId": 143009, "scanner": "repobility-web-presence", "fingerprint": "5cd26606c5a53c9f403ff7a92a6917c19cf440a23ce03e2b90e8c493312ef8cd", "category": "quality", "severity": "medium", "confidence": 0.78, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Repository looks like a public web app/API but no security.txt file or route was discovered.", "evidence": {"rule_id": "WEB003", "scanner": "repobility-web-presence", "references": ["https://www.rfc-editor.org/rfc/rfc9116", "https://github.com/Lissy93/web-check"], "correlation_key": "fp|5cd26606c5a53c9f403ff7a92a6917c19cf440a23ce03e2b90e8c493312ef8cd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".well-known/security.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "WEB015", "level": "warning", "message": {"text": "Public web app has no Content Security Policy"}, "properties": {"repobilityId": 143008, "scanner": "repobility-web-presence", "fingerprint": "7eb70cae3ff63d8ed7c31706185d32b37655333b40b58ca826d740b08fb1ad63", "category": "quality", "severity": "medium", "confidence": 0.7, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Repository looks like a public web app but no CSP header, framework header config, Helmet policy, or CSP meta tag was discovered.", "evidence": {"rule_id": "WEB015", "scanner": "repobility-web-presence", "references": ["https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP", "https://github.com/Lissy93/web-check"], "correlation_key": "fp|7eb70cae3ff63d8ed7c31706185d32b37655333b40b58ca826d740b08fb1ad63"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "index.html"}, "region": {"startLine": 1}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 143004, "scanner": "repobility-journey-contract", "fingerprint": "2619f74e9ec98e677fc406ceaee1adbb901e76e6b5a839bb628d1910c9f903a8", "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/annotations/{param}", "correlation_key": "fp|2619f74e9ec98e677fc406ceaee1adbb901e76e6b5a839bb628d1910c9f903a8", "backend_endpoint_count": 189}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/libs/editor/src/hooks/useAnnotationQuery.ts"}, "region": {"startLine": 32}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 143003, "scanner": "repobility-journey-contract", "fingerprint": "979f98a7ca2f99f888d4384fdf9af2b98dac68ea0c8770181f66ee65654f52f0", "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/tasks/{param}/agreement", "correlation_key": "fp|979f98a7ca2f99f888d4384fdf9af2b98dac68ea0c8770181f66ee65654f52f0", "backend_endpoint_count": 189}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/libs/editor/src/components/TaskSummary/Aggregation.tsx"}, "region": {"startLine": 27}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 143002, "scanner": "repobility-journey-contract", "fingerprint": "c73fa7206c3f7c02f02fd3824988ae460e917d0f49698a239c0b570e122aec37", "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/users/{param}", "correlation_key": "fp|c73fa7206c3f7c02f02fd3824988ae460e917d0f49698a239c0b570e122aec37", "backend_endpoint_count": 189}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/libs/core/src/hooks/useResolveUser.ts"}, "region": {"startLine": 91}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 143001, "scanner": "repobility-journey-contract", "fingerprint": "6878b76d872f546a6e6f39da04d5a0896ac43fe1b23af9e2c5fe875d7340aa65", "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/users/{param}", "correlation_key": "fp|6878b76d872f546a6e6f39da04d5a0896ac43fe1b23af9e2c5fe875d7340aa65", "backend_endpoint_count": 189}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/libs/core/src/hooks/useResolveUser.ts"}, "region": {"startLine": 27}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 143000, "scanner": "repobility-journey-contract", "fingerprint": "cda2553e249bb301cd19aa3fe01363911e24a1087770e2136557834df69f2fb8", "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/users", "correlation_key": "fp|cda2553e249bb301cd19aa3fe01363911e24a1087770e2136557834df69f2fb8", "backend_endpoint_count": 189}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/organizations/templates/organizations/people_list.html"}, "region": {"startLine": 117}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 142999, "scanner": "repobility-journey-contract", "fingerprint": "bbdf4a405f7f23e9f5d73a16680def06d5bcafd36618bf1e44d276195ca6eaf9", "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/organizations/1/memberships", "correlation_key": "fp|bbdf4a405f7f23e9f5d73a16680def06d5bcafd36618bf1e44d276195ca6eaf9", "backend_endpoint_count": 189}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/organizations/templates/organizations/people_list.html"}, "region": {"startLine": 109}}}]}, {"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 /export/s3/<int:pk>."}, "properties": {"repobilityId": 142998, "scanner": "repobility-access-control", "fingerprint": "42072752f6b9b279ac3adee260d341be4c21a2443e096c6377afb723a81c1ce5", "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": "/export/s3/<int:pk>", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|token|101|auc009", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/urls.py"}, "region": {"startLine": 101}}}]}, {"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 /export/s3."}, "properties": {"repobilityId": 142997, "scanner": "repobility-access-control", "fingerprint": "9871835b18882d96c4ff2a5250c9f6a70fc05cb7ac38f3f7ce07f5a4868bdf25", "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": "/export/s3", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|token|100|auc009", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/urls.py"}, "region": {"startLine": 100}}}]}, {"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 /s3/form."}, "properties": {"repobilityId": 142996, "scanner": "repobility-access-control", "fingerprint": "a3af64b0c9bcbfda4694b4026aa09f06e07d2e9dda7cfd089f41ce0537921424", "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": "/s3/form", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|token|94|auc009", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/urls.py"}, "region": {"startLine": 94}}}]}, {"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 /s3/validate."}, "properties": {"repobilityId": 142995, "scanner": "repobility-access-control", "fingerprint": "a225af026ff3e1e3bdd907b0ff321fe90453fd1631fbc6dac49f674301e57d15", "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": "/s3/validate", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|token|93|auc009", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/urls.py"}, "region": {"startLine": 93}}}]}, {"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 /s3/<int:pk>/sync."}, "properties": {"repobilityId": 142994, "scanner": "repobility-access-control", "fingerprint": "613bacaafb132ac44b7aab0fb9d79ff32bd7657a40fa1e7e8bd0248f687e09cf", "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": "/s3/<int:pk>/sync", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|token|92|auc009", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/urls.py"}, "region": {"startLine": 92}}}]}, {"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 /s3/<int:pk>."}, "properties": {"repobilityId": 142993, "scanner": "repobility-access-control", "fingerprint": "c24f66e74698ee712b3d1969425f5c1ddce11fc322d2b490799f4767d7f44a29", "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": "/s3/<int:pk>", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|token|91|auc009", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/urls.py"}, "region": {"startLine": 91}}}]}, {"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 /s3/."}, "properties": {"repobilityId": 142992, "scanner": "repobility-access-control", "fingerprint": "1ba8891df6597274562bbc7214f89f5a7bb8b517b0350b681f54f2736b0bfcf7", "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": "/s3/", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|token|90|auc009", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/urls.py"}, "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 /export/types."}, "properties": {"repobilityId": 142991, "scanner": "repobility-access-control", "fingerprint": "802c962034ced55403a722d7989fa833c20756a4f401a1764e18162d2fabf5c6", "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": "/export/types", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|token|88|auc009", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/urls.py"}, "region": {"startLine": 88}}}]}, {"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 /types."}, "properties": {"repobilityId": 142990, "scanner": "repobility-access-control", "fingerprint": "784f9328f5b7d59c0c92b0c53a5f9e46ce1062fa6bc49aa3505a91e1276b112b", "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": "/types", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|token|87|auc009", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/urls.py"}, "region": {"startLine": 87}}}]}, {"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 /export."}, "properties": {"repobilityId": 142989, "scanner": "repobility-access-control", "fingerprint": "7490471602b111e8f2282b7463d7b25d04896d1d222f1cf71d82814befffb747", "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": "/export", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|token|86|auc009", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/urls.py"}, "region": {"startLine": 86}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: ANY /metrics/."}, "properties": {"repobilityId": 142988, "scanner": "repobility-access-control", "fingerprint": "1d14740ee9349b7bf4ee3695fc54753a3fe57416778ce697923c3f0c11e48a8e", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/metrics/", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|label_studio/core/urls.py|74|auc004", "identity_targets": ["anonymous", "authenticated"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/urls.py"}, "region": {"startLine": 74}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: ANY /health/."}, "properties": {"repobilityId": 142987, "scanner": "repobility-access-control", "fingerprint": "2b6cfa6d5d7608b04c51b9e031e84dea4a8101ec9d57e5c4002f0bbee1971053", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/health/", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|label_studio/core/urls.py|73|auc004", "identity_targets": ["anonymous", "authenticated"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/urls.py"}, "region": {"startLine": 73}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: ANY /api/version/."}, "properties": {"repobilityId": 142986, "scanner": "repobility-access-control", "fingerprint": "790cd92eee53a86ed672dfd12828507d66353084cf2619af2e04bf8c870df503", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/api/version/", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|label_studio/core/urls.py|72|auc004", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/urls.py"}, "region": {"startLine": 72}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: ANY /version/."}, "properties": {"repobilityId": 142985, "scanner": "repobility-access-control", "fingerprint": "986312e26fa83bdbb62969e94f56aac291fdde370c9303fb33af693976d2dc29", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/version/", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|label_studio/core/urls.py|71|auc004", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/urls.py"}, "region": {"startLine": 71}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: ANY /^."}, "properties": {"repobilityId": 142984, "scanner": "repobility-access-control", "fingerprint": "a4b50164a46e63af3949013015258f32aae1d7d549a732b252e367c35d2125ba", "category": "auth", "severity": "medium", "confidence": 0.66, "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": "Django", "correlation_key": "code|auth|label_studio/core/urls.py|70|auc004", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/urls.py"}, "region": {"startLine": 70}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: ANY /^."}, "properties": {"repobilityId": 142983, "scanner": "repobility-access-control", "fingerprint": "6d8f23b0dc127e28034fb2500e31acc14d9960abf493d63ad8de38229db90bb5", "category": "auth", "severity": "medium", "confidence": 0.66, "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": "Django", "correlation_key": "code|auth|label_studio/core/urls.py|69|auc004", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/urls.py"}, "region": {"startLine": 69}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: ANY /^."}, "properties": {"repobilityId": 142982, "scanner": "repobility-access-control", "fingerprint": "66f5db50c97e7ffcfc1d674d003642f68c7aa9e41dead9b5332d234a954a4410", "category": "auth", "severity": "medium", "confidence": 0.66, "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": "Django", "correlation_key": "code|auth|label_studio/core/urls.py|68|auc004", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/urls.py"}, "region": {"startLine": 68}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: ANY /^."}, "properties": {"repobilityId": 142981, "scanner": "repobility-access-control", "fingerprint": "34ebba377459dc330c407abdb000707674337530e9f6692a8d42f936175eb3d5", "category": "auth", "severity": "medium", "confidence": 0.66, "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": "Django", "correlation_key": "code|auth|label_studio/core/urls.py|67|auc004", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/urls.py"}, "region": {"startLine": 67}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: ANY /^."}, "properties": {"repobilityId": 142980, "scanner": "repobility-access-control", "fingerprint": "24073c5fbe21875fdf1da83091f5ae4acc63eb1482356fed8354317281b3debd", "category": "auth", "severity": "medium", "confidence": 0.66, "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": "Django", "correlation_key": "code|auth|label_studio/core/urls.py|66|auc004", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/urls.py"}, "region": {"startLine": 66}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: ANY /^."}, "properties": {"repobilityId": 142979, "scanner": "repobility-access-control", "fingerprint": "9cbff433431e06f4444097d94e5ddbc10eaf6151dccb041f95c705428ff91e54", "category": "auth", "severity": "medium", "confidence": 0.66, "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": "Django", "correlation_key": "code|auth|label_studio/core/urls.py|65|auc004", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/urls.py"}, "region": {"startLine": 65}}}]}, {"ruleId": "AUC002", "level": "warning", "message": {"text": "[AUC002] Low visible authorization coverage in route inventory: Only 14.8% of discovered routes show nearby authentication, authorization, middleware, or public-route evidence."}, "properties": {"repobilityId": 142968, "scanner": "repobility-access-control", "fingerprint": "744f0c63a8d601feda830364547e735ef6d8ba2af7e6a2e6e048e35f88d63167", "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": 189, "correlation_key": "fp|744f0c63a8d601feda830364547e735ef6d8ba2af7e6a2e6e048e35f88d63167", "auth_visible_percent": 14.8}}}, {"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": 142967, "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": ["Django"], "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 `app` image uses the latest tag"}, "properties": {"repobilityId": 142963, "scanner": "repobility-docker", "fingerprint": "89cc913be3020e588173151814048526d257efab7b1d351787e361916f4a8803", "category": "docker", "severity": "medium", "confidence": 0.94, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Image tag is latest.", "evidence": {"image": "heartexlabs/label-studio: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|89cc913be3020e588173151814048526d257efab7b1d351787e361916f4a8803"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yml"}, "region": {"startLine": 26}}}]}, {"ruleId": "DKR003", "level": "warning", "message": {"text": "Compose service `nginx` image uses the latest tag"}, "properties": {"repobilityId": 142961, "scanner": "repobility-docker", "fingerprint": "db90832be1acf07c94b022fac6ebe853fdd4d141566c26ea36011e7013e1fce4", "category": "docker", "severity": "medium", "confidence": 0.94, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Image tag is latest.", "evidence": {"image": "heartexlabs/label-studio: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|db90832be1acf07c94b022fac6ebe853fdd4d141566c26ea36011e7013e1fce4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yml"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR003", "level": "warning", "message": {"text": "Dockerfile base image uses the latest tag"}, "properties": {"repobilityId": 142960, "scanner": "repobility-docker", "fingerprint": "a0f5f822c93a60271c0d3d3ac069886c8450d8a360c46cc1a8663ea627e765e8", "category": "docker", "severity": "medium", "confidence": 0.94, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Image tag is latest.", "evidence": {"image": "heartexlabs/label-studio: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|a0f5f822c93a60271c0d3d3ac069886c8450d8a360c46cc1a8663ea627e765e8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile.testing"}, "region": {"startLine": 9}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 142959, "scanner": "repobility-docker", "fingerprint": "35127ee48db6494145aca6747595e485f475a6f439a32105ccb90bfcb984b327", "category": "docker", "severity": "medium", "confidence": 0.82, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "No USER directive was found in the final runtime stage.", "evidence": {"rule_id": "DKR001", "scanner": "repobility-docker", "final_base": "heartexlabs/label-studio:develop", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|35127ee48db6494145aca6747595e485f475a6f439a32105ccb90bfcb984b327"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile.hgface"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 142958, "scanner": "repobility-docker", "fingerprint": "3bb369f746e635389e7dd339c53ce7d6bae9541a23b7ebfd83993b7aa0855568", "category": "docker", "severity": "medium", "confidence": 0.82, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "No USER directive was found in the final runtime stage.", "evidence": {"rule_id": "DKR001", "scanner": "repobility-docker", "final_base": "heartexlabs/label-studio:latest", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|3bb369f746e635389e7dd339c53ce7d6bae9541a23b7ebfd83993b7aa0855568"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile.heroku"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR003", "level": "warning", "message": {"text": "Dockerfile base image uses the latest tag"}, "properties": {"repobilityId": 142957, "scanner": "repobility-docker", "fingerprint": "2936968a76fc6be1feb9e852bbc5a9dea6621dc871fa14acffecd7ea1b44d194", "category": "docker", "severity": "medium", "confidence": 0.94, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Image tag is latest.", "evidence": {"image": "heartexlabs/label-studio: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|2936968a76fc6be1feb9e852bbc5a9dea6621dc871fa14acffecd7ea1b44d194"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile.heroku"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR013", "level": "warning", "message": {"text": "Dockerfile ADD downloads remote content"}, "properties": {"repobilityId": 142955, "scanner": "repobility-docker", "fingerprint": "3462b6bd1e65b7f03cfe516b4f05b533768b356c8482e531e06357ee520c34da", "category": "docker", "severity": "medium", "confidence": 0.84, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "ADD instruction references a remote URL.", "evidence": {"rule_id": "DKR013", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|3462b6bd1e65b7f03cfe516b4f05b533768b356c8482e531e06357ee520c34da"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile.development"}, "region": {"startLine": 40}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 142952, "scanner": "repobility-docker", "fingerprint": "721930666fe0b39204145a39c350b1156bdecc442d5fafb12d5c54cc9a2ed2c1", "category": "docker", "severity": "medium", "confidence": 0.82, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "No USER directive was found in the final runtime stage.", "evidence": {"rule_id": "DKR001", "scanner": "repobility-docker", "final_base": "heartexlabs/label-studio:latest", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|721930666fe0b39204145a39c350b1156bdecc442d5fafb12d5c54cc9a2ed2c1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile.cloudrun"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR003", "level": "warning", "message": {"text": "Dockerfile base image uses the latest tag"}, "properties": {"repobilityId": 142951, "scanner": "repobility-docker", "fingerprint": "1f4872f2b365c05a85dbf1849b41c02862577b4f87672e96e5f103030409e0b0", "category": "docker", "severity": "medium", "confidence": 0.94, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Image tag is latest.", "evidence": {"image": "heartexlabs/label-studio: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|1f4872f2b365c05a85dbf1849b41c02862577b4f87672e96e5f103030409e0b0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile.cloudrun"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR013", "level": "warning", "message": {"text": "Dockerfile ADD downloads remote content"}, "properties": {"repobilityId": 142948, "scanner": "repobility-docker", "fingerprint": "5102dbc321342579ccdab29a17bb767afc5542bc2d346fcd59eee35b313c47e0", "category": "docker", "severity": "medium", "confidence": 0.84, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "ADD instruction references a remote URL.", "evidence": {"rule_id": "DKR013", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|5102dbc321342579ccdab29a17bb767afc5542bc2d346fcd59eee35b313c47e0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 86}}}]}, {"ruleId": "DKR015", "level": "warning", "message": {"text": "Docker build context is very large"}, "properties": {"repobilityId": 142945, "scanner": "repobility-docker", "fingerprint": "b15d4f710afeff2af4cd4ab204332853f9025b78869a0e87bb466a798bb1a15b", "category": "docker", "severity": "medium", "confidence": 0.84, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Estimated Docker build context exceeds Repobility's size or file-count threshold.", "evidence": {"capped": false, "rule_id": "DKR015", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "largest_paths": [{"path": ".git/objects/pack/pack-611508b4b5335e2529b5595d2c8e3d5453775cf0.pack", "size_mb": 373.0}, {"path": ".git/objects/pack/pack-b8d37da9cc17ccc3bfa4fb996c41d68ba9b200a3.pack", "size_mb": 77.7}, {"path": "web/libs/editor/public/files/images/Fronalpstock_big.jpg", "size_mb": 14.0}, {"path": "web/libs/editor/public/files/video.mp4", "size_mb": 9.1}, {"path": "web/libs/editor/src/examples/image_segmentation/annotations/1.json", "size_mb": 3.9}], "included_files": 2674, "context_size_mb": 522.2, "correlation_key": "fp|b15d4f710afeff2af4cd4ab204332853f9025b78869a0e87bb466a798bb1a15b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".dockerignore"}, "region": {"startLine": 1}}}]}, {"ruleId": "AGT015", "level": "warning", "message": {"text": "Remote install command pipes network code directly to a shell"}, "properties": {"repobilityId": 142944, "scanner": "repobility-agent-runtime", "fingerprint": "3bd0244ce4a028b7a00e64e3086ff1f1efbd2757824289e90fe8a87ce8b189c9", "category": "dependency", "severity": "medium", "confidence": 0.7, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "File contains a remote download piped directly to a shell without visible checksum or signature verification.", "evidence": {"rule_id": "AGT015", "scanner": "repobility-agent-runtime", "references": [], "correlation_key": "fp|3bd0244ce4a028b7a00e64e3086ff1f1efbd2757824289e90fe8a87ce8b189c9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "deploy/install_npm.sh"}, "region": {"startLine": 10}}}]}, {"ruleId": "AGT015", "level": "warning", "message": {"text": "Remote install command pipes network code directly to a shell"}, "properties": {"repobilityId": 142943, "scanner": "repobility-agent-runtime", "fingerprint": "91b8343ee8db7d62304f8555a950c10aff2fe1b6015a86b01280d8d5412519dc", "category": "dependency", "severity": "medium", "confidence": 0.7, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "File contains a remote download piped directly to a shell without visible checksum or signature verification.", "evidence": {"rule_id": "AGT015", "scanner": "repobility-agent-runtime", "references": [], "correlation_key": "fp|91b8343ee8db7d62304f8555a950c10aff2fe1b6015a86b01280d8d5412519dc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cursor-review.yml"}, "region": {"startLine": 32}}}]}, {"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": 142926, "scanner": "repobility-threat-engine", "fingerprint": "f3919035b008e0662e80fc08c429747ad6ab5728aecb2dc4c1a0474ab666222f", "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()}`,\n        key", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC087", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|f3919035b008e0662e80fc08c429747ad6ab5728aecb2dc4c1a0474ab666222f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/src/pages/WebhookPage/WebhookDetail.jsx"}, "region": {"startLine": 252}}}]}, {"ruleId": "SEC046", "level": "warning", "message": {"text": "[SEC046] Client-side open redirect \u2014 window.location = server-supplied URL: Assigning window.location from a server-supplied URL trusts the server endpoint to never return a hostile destination. If that endpoint is ever subverted (compromised admin, JSON injection, MITM on a webhook), users get redirected to a phishing site they trust because the original page is yours. CWE-601 (server-side OR client-side). Complement to server-side SEC030."}, "properties": {"repobilityId": 142911, "scanner": "repobility-threat-engine", "fingerprint": "32c6d16015eca2cb108b880f13fc9d0c740520f151a2d77b82ad9f519d2231d5", "category": "open_redirect", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "location.href = absoluteURL", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC046", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|32c6d16015eca2cb108b880f13fc9d0c740520f151a2d77b82ad9f519d2231d5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/src/providers/ApiProvider.tsx"}, "region": {"startLine": 126}}}]}, {"ruleId": "SEC046", "level": "warning", "message": {"text": "[SEC046] Client-side open redirect \u2014 window.location = server-supplied URL: Assigning window.location from a server-supplied URL trusts the server endpoint to never return a hostile destination. If that endpoint is ever subverted (compromised admin, JSON injection, MITM on a webhook), users get redirected to a phishing site they trust because the original page is yours. CWE-601 (server-side OR client-side). Complement to server-side SEC030."}, "properties": {"repobilityId": 142910, "scanner": "repobility-threat-engine", "fingerprint": "50909ebfbb3007bbad043041f93f8e0fade25b04e71e8fcdca1b026c88e79a84", "category": "open_redirect", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "location.href = absoluteURL", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC046", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|50909ebfbb3007bbad043041f93f8e0fade25b04e71e8fcdca1b026c88e79a84"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/src/app/AsyncPage/AsyncPage.jsx"}, "region": {"startLine": 28}}}]}, {"ruleId": "SEC015", "level": "warning", "message": {"text": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable."}, "properties": {"repobilityId": 142900, "scanner": "repobility-threat-engine", "fingerprint": "eae61632bbaa7c7ae13b565f294c72b858bfc17e4afea92c5a217a62f7266aae", "category": "crypto", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Security-sensitive keyword found nearby \u2014 weak PRNG is risky here", "evidence": {"match": "def create_session", "reason": "Security-sensitive keyword found nearby \u2014 weak PRNG is risky here", "rule_id": "SEC015", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|crypto|token|67|sec015"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/ml/api_connector.py"}, "region": {"startLine": 67}}}]}, {"ruleId": "SEC015", "level": "warning", "message": {"text": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable."}, "properties": {"repobilityId": 142899, "scanner": "repobility-threat-engine", "fingerprint": "4932d14ea80ea98e530497cb14cc36436c302a69cdc9f6821e92494a90709030", "category": "crypto", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Security-sensitive keyword found nearby \u2014 weak PRNG is risky here", "evidence": {"match": "def create_token", "reason": "Security-sensitive keyword found nearby \u2014 weak PRNG is risky here", "rule_id": "SEC015", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|crypto|token|260|sec015"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/jwt_auth/views.py"}, "region": {"startLine": 260}}}]}, {"ruleId": "ERR001", "level": "warning", "message": {"text": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level."}, "properties": {"repobilityId": 142895, "scanner": "repobility-threat-engine", "fingerprint": "164e16408550be4733f23d44b280632507cd103e3b16980a238a929d088618fd", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "except Exception:\n            pass", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR001", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|164e16408550be4733f23d44b280632507cd103e3b16980a238a929d088618fd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/azure_blob/utils.py"}, "region": {"startLine": 57}}}]}, {"ruleId": "SEC028", "level": "warning", "message": {"text": "[SEC028] CSRF Protection Removed \u2014 @csrf_exempt on state-changing endpoint: @csrf_exempt removes Django's CSRF protection from a view. On a state-changing endpoint (POST/PUT/DELETE) this allows cross-site requests to perform actions on behalf of an authenticated user. Verify there's a compensating mechanism: API token auth, signed request, or explicit Same-Site cookie + Origin check."}, "properties": {"repobilityId": 142888, "scanner": "repobility-threat-engine", "fingerprint": "933ebd4b1cf8238a6a1f05d159db59a0fefea0024fefa75e5f031af6a091c4c0", "category": "csrf", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "@csrf_exempt", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC028", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|933ebd4b1cf8238a6a1f05d159db59a0fefea0024fefa75e5f031af6a091c4c0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/views.py"}, "region": {"startLine": 217}}}]}, {"ruleId": "SEC014", "level": "warning", "message": {"text": "[SEC014] SSL Verification Disabled: SSL certificate verification is disabled, allowing man-in-the-middle attacks."}, "properties": {"repobilityId": 142887, "scanner": "repobility-threat-engine", "fingerprint": "4ad81e1090d54bd83b834542af152beac70c6b250f3016da5320a8c5a7025326", "category": "crypto", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "verify=False", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC014", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|crypto|token|129|sec014"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/jwt_auth/models.py"}, "region": {"startLine": 129}}}]}, {"ruleId": "SEC014", "level": "warning", "message": {"text": "[SEC014] SSL Verification Disabled: SSL certificate verification is disabled, allowing man-in-the-middle attacks."}, "properties": {"repobilityId": 142886, "scanner": "repobility-threat-engine", "fingerprint": "56fb4966d80e3ae147fc6d5d63fbd109bd2d61adddb782444736efb165eb0838", "category": "crypto", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "CERT_NONE", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC014", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|crypto|token|23|sec014"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/utils/mail.py"}, "region": {"startLine": 23}}}]}, {"ruleId": "SEC042", "level": "warning", "message": {"text": "[SEC042] SQL identifier injection via f-string in cursor execute: f-string SQL normalizes an unsafe pattern. Currently safe when only trusted internal values are interpolated (e.g. self._table in Odoo), but a future contributor can extend the f-string to user input without noticing. CWE-89. Identifiers (table/column names) need a separate escaping path from values."}, "properties": {"repobilityId": 142861, "scanner": "repobility-threat-engine", "fingerprint": "d854618a9ed1f5fe4b064187e430111fb3ff74f25cfeeb495e1bb7227789ee79", "category": "injection", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "cursor.execute(f'", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC042", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|injection|token|55|sec042"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/management/commands/locked_migrate.py"}, "region": {"startLine": 55}}}]}, {"ruleId": "SEC034", "level": "warning", "message": {"text": "[SEC034] Log Injection / Log Forging \u2014 unsanitized user input in log: User input is logged without sanitizing newlines or control characters. Attackers inject `\\n` to forge fake log entries, hide tracks, or exploit downstream log parsers (SIEM, splunk). Combined with template injection this can escalate to RCE (CVE-2021-44228 log4shell). CWE-117."}, "properties": {"repobilityId": 142851, "scanner": "repobility-threat-engine", "fingerprint": "d2921f073c0677a07f32053032b26a03d7b5adbea30d6f922ecfca9bdea1c958", "category": "log_injection", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "logger.info(f'Start async job {job.__name__} on queue {queue_name} with {args", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC034", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|d2921f073c0677a07f32053032b26a03d7b5adbea30d6f922ecfca9bdea1c958"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/redis.py"}, "region": {"startLine": 201}}}]}, {"ruleId": "SEC034", "level": "warning", "message": {"text": "[SEC034] Log Injection / Log Forging \u2014 unsanitized user input in log: User input is logged without sanitizing newlines or control characters. Attackers inject `\\n` to forge fake log entries, hide tracks, or exploit downstream log parsers (SIEM, splunk). Combined with template injection this can escalate to RCE (CVE-2021-44228 log4shell). CWE-117."}, "properties": {"repobilityId": 142850, "scanner": "repobility-threat-engine", "fingerprint": "6fcf3fe7a3df1b8b0950a472ca48fcc602086ee88a2b1ec1ac77abb02660367f", "category": "log_injection", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "logger.debug(f'Resolve all flags state for user {user", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC034", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|6fcf3fe7a3df1b8b0950a472ca48fcc602086ee88a2b1ec1ac77abb02660367f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/feature_flags/base.py"}, "region": {"startLine": 122}}}]}, {"ruleId": "COMP001", "level": "warning", "message": {"text": "[COMP001] High cognitive complexity: Function `bulk_update` has cognitive complexity 18 (SonarSource scale). Cognitive complexity measures how hard the function is for a human to understand \u2014 nested branches, boolean chains, and recursion all weigh in. Breakdown: else=3, for=3, if=5, nested_bonus=4, or=3."}, "properties": {"repobilityId": 142846, "scanner": "repobility-threat-engine", "fingerprint": "df3b0ae373f085186a4006abce06d4b16a13b936c74993b02b3ab4e9e60e1bc5", "category": "quality", "severity": "medium", "confidence": 0.95, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "AST-derived cognitive complexity score = 18 (severity threshold for medium: 15+).", "evidence": {"scanner": "repobility-threat-engine", "function": "bulk_update", "breakdown": {"if": 5, "or": 3, "for": 3, "else": 3, "nested_bonus": 4}, "complexity": 18, "correlation_key": "fp|df3b0ae373f085186a4006abce06d4b16a13b936c74993b02b3ab4e9e60e1bc5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/bulk_update_utils.py"}, "region": {"startLine": 104}}}]}, {"ruleId": "SEC002", "level": "warning", "message": {"text": "[SEC002] Hardcoded API Key: Hardcoded API key found in source code."}, "properties": {"repobilityId": 142841, "scanner": "repobility-threat-engine", "fingerprint": "29270729949730db61be669542452b0e57ccd231934a2a79d6b263f8f2fd0355", "category": "credential_exposure", "severity": "medium", "confidence": 0.3, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Low entropy value (3.5 bits) \u2014 may be placeholder or common string | [R34 auto-suppress: documentation/example path]", "evidence": {"match": "apiKey = \"<redacted>\"", "reason": "Low entropy value (3.5 bits) \u2014 may be placeholder or common string | [R34 auto-suppress: documentation/example path]", "rule_id": "SEC002", "scanner": "repobility-threat-engine", "confidence": 0.3, "correlation_key": "secret|token|5|apikey redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docs/themes/v2/source/js/header.js"}, "region": {"startLine": 58}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 142840, "scanner": "repobility-threat-engine", "fingerprint": "713a2a19b4bb06b226fcad4d1f581d46eaadce80c3965ad478571fc5eb559a93", "category": "error_handling", "severity": "medium", "confidence": 0.45, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Pattern matched with no mitigating context found | [R34 auto-suppress: documentation/example path]", "evidence": {"match": "catch (e) {}", "reason": "Pattern matched with no mitigating context found | [R34 auto-suppress: documentation/example path]", "rule_id": "ERR002", "scanner": "repobility-threat-engine", "confidence": 0.45, "correlation_key": "fp|713a2a19b4bb06b226fcad4d1f581d46eaadce80c3965ad478571fc5eb559a93"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docs/source/playground/jscookie.js"}, "region": {"startLine": 67}}}]}, {"ruleId": "SEC001", "level": "warning", "message": {"text": "[SEC001] Hardcoded Password: Hardcoded password found in source code."}, "properties": {"repobilityId": 142823, "scanner": "repobility-threat-engine", "fingerprint": "16c9cbee55a7194c63d81c201374b88393e0c5c6b0567d97d08f7b8fd08e512f", "category": "credential_exposure", "severity": "medium", "confidence": 0.3, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Low entropy value (3.9 bits) \u2014 may be placeholder or common string", "evidence": {"match": "PASSWORD=\"<redacted>}\"", "reason": "Low entropy value (3.9 bits) \u2014 may be placeholder or common string", "rule_id": "SEC001", "scanner": "repobility-threat-engine", "confidence": 0.3, "correlation_key": "secret|deploy/heroku_run.sh|1|password redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "deploy/heroku_run.sh"}, "region": {"startLine": 7}}}]}, {"ruleId": "WEB005", "level": "note", "message": {"text": "robots.txt does not advertise a sitemap"}, "properties": {"repobilityId": 143010, "scanner": "repobility-web-presence", "fingerprint": "d55c49530d7d0214357b62f27b0f0b3e3530821d3a10e7152b55bb8ecd4bdf92", "category": "quality", "severity": "low", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Discovered robots file or route lacks a Sitemap directive.", "evidence": {"rule_id": "WEB005", "scanner": "repobility-web-presence", "references": ["https://www.rfc-editor.org/rfc/rfc9309", "https://www.sitemaps.org/protocol.html"], "correlation_key": "fp|d55c49530d7d0214357b62f27b0f0b3e3530821d3a10e7152b55bb8ecd4bdf92"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/invite-check.yml"}, "region": {"startLine": 1}}}]}, {"ruleId": "WEB011", "level": "note", "message": {"text": "Public web app has no humans.txt"}, "properties": {"repobilityId": 143007, "scanner": "repobility-web-presence", "fingerprint": "bdd551fbe1ab6405480e0d5755632562c2096cb9e9a6a071ef60e4c27a6873f1", "category": "quality", "severity": "low", "confidence": 0.5, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Repository looks like a public web app but no humans.txt file or route was discovered.", "evidence": {"rule_id": "WEB011", "scanner": "repobility-web-presence", "references": ["https://github.com/Lissy93/web-check"], "correlation_key": "fp|bdd551fbe1ab6405480e0d5755632562c2096cb9e9a6a071ef60e4c27a6873f1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "humans.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "WEB008", "level": "note", "message": {"text": "Public docs site has no llms.txt"}, "properties": {"repobilityId": 143006, "scanner": "repobility-web-presence", "fingerprint": "cdce8ed8706710d39c3e7272dad572dd639cff74fd3d2ac62d8f6f522b891d76", "category": "quality", "severity": "low", "confidence": 0.64, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Repository looks public and documentation-heavy but no llms.txt file or route was discovered.", "evidence": {"rule_id": "WEB008", "scanner": "repobility-web-presence", "references": ["https://llmstxt.org/"], "correlation_key": "fp|cdce8ed8706710d39c3e7272dad572dd639cff74fd3d2ac62d8f6f522b891d76"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "llms.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "WEB002", "level": "note", "message": {"text": "Public web app has no sitemap"}, "properties": {"repobilityId": 143005, "scanner": "repobility-web-presence", "fingerprint": "fccbe72d13ca3ba9197ec37b0daa0802fb6d5ebff54b3eb9f09b59b0f8d0acdf", "category": "quality", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Repository looks like a public web app but no sitemap file or route was discovered.", "evidence": {"rule_id": "WEB002", "scanner": "repobility-web-presence", "references": ["https://www.sitemaps.org/protocol.html", "https://github.com/Lissy93/web-check"], "correlation_key": "fp|fccbe72d13ca3ba9197ec37b0daa0802fb6d5ebff54b3eb9f09b59b0f8d0acdf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "sitemap.xml"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKC015", "level": "note", "message": {"text": "Database service has no healthcheck"}, "properties": {"repobilityId": 142966, "scanner": "repobility-docker", "fingerprint": "0a1906466ce13f8cfb2721dfa1030402e3b4c2d699f26f989df66e9904bc38c4", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Database-like service has no Compose healthcheck.", "evidence": {"rule_id": "DKC015", "scanner": "repobility-docker", "service": "db", "references": ["https://docs.docker.com/compose/how-tos/startup-order/"], "correlation_key": "fp|0a1906466ce13f8cfb2721dfa1030402e3b4c2d699f26f989df66e9904bc38c4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yml"}, "region": {"startLine": 50}}}]}, {"ruleId": "DKC016", "level": "note", "message": {"text": "App service does not wait for database health"}, "properties": {"repobilityId": 142965, "scanner": "repobility-docker", "fingerprint": "18b30e6c41fbac4427d310e75aa2fc0bb91fc2332bf1acf4319c0318f800e8ed", "category": "docker", "severity": "low", "confidence": 0.68, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "App depends on a database-like service without a health-gated dependency.", "evidence": {"rule_id": "DKC016", "scanner": "repobility-docker", "service": "app", "dependency": "db", "references": ["https://docs.docker.com/compose/how-tos/startup-order/"], "correlation_key": "fp|18b30e6c41fbac4427d310e75aa2fc0bb91fc2332bf1acf4319c0318f800e8ed", "dependency_has_healthcheck": false}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yml"}, "region": {"startLine": 26}}}]}, {"ruleId": "DKC010", "level": "note", "message": {"text": "Compose service lacks no-new-privileges hardening"}, "properties": {"repobilityId": 142964, "scanner": "repobility-docker", "fingerprint": "17cb54154d6b434d05df20d4d203926d9d6f2442476794b981578eda4278ce49", "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": "app", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|17cb54154d6b434d05df20d4d203926d9d6f2442476794b981578eda4278ce49"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yml"}, "region": {"startLine": 26}}}]}, {"ruleId": "DKC010", "level": "note", "message": {"text": "Compose service lacks no-new-privileges hardening"}, "properties": {"repobilityId": 142962, "scanner": "repobility-docker", "fingerprint": "7f80983f54868d8bec198a3977b7dcbe8bfb5f2291356d590fb078148e91780d", "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": "nginx", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|7f80983f54868d8bec198a3977b7dcbe8bfb5f2291356d590fb078148e91780d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yml"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR008", "level": "note", "message": {"text": ".dockerignore misses sensitive defaults"}, "properties": {"repobilityId": 142950, "scanner": "repobility-docker", "fingerprint": "aea2ad92c68c4ee1f8432bb1ec25e7d45ac12c9e1790ac2d3fffe638b1acce12", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "A Docker build context should exclude secrets and repository metadata.", "evidence": {"rule_id": "DKR008", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|aea2ad92c68c4ee1f8432bb1ec25e7d45ac12c9e1790ac2d3fffe638b1acce12", "missing_patterns": [".env", ".git", "id_rsa", "*.pem", "*.key"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".dockerignore"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 142942, "scanner": "repobility-ai-code-hygiene", "fingerprint": "d781ecea80647462e51966251b3ba133048210d25fef2fc5cbc777a0b70d7b4f", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "web/libs/app-common/src/pages/AccountSettings/hooks/useHotkeys.ts", "duplicate_line": 26, "correlation_key": "fp|d781ecea80647462e51966251b3ba133048210d25fef2fc5cbc777a0b70d7b4f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/libs/app-common/src/pages/AccountSettings/sections/Hotkeys/Help.tsx"}, "region": {"startLine": 27}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 142941, "scanner": "repobility-ai-code-hygiene", "fingerprint": "b0d36d4e1aeafa44447eb0618d9d2a9ddfb275a0cc548964ec150d08340a3d1d", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "web/apps/labelstudio/src/providers/AppStoreProvider.jsx", "duplicate_line": 8, "correlation_key": "fp|b0d36d4e1aeafa44447eb0618d9d2a9ddfb275a0cc548964ec150d08340a3d1d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/src/providers/AppStoreProvider.tsx"}, "region": {"startLine": 15}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 142940, "scanner": "repobility-ai-code-hygiene", "fingerprint": "9a7bf5c2055ce63b51ff79eb2c3125098466b604deab71e9b169a9dcfe3a5303", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "web/apps/labelstudio/src/pages/Settings/StorageSettings/providers/azure_spi.tsx", "duplicate_line": 25, "correlation_key": "fp|9a7bf5c2055ce63b51ff79eb2c3125098466b604deab71e9b169a9dcfe3a5303"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/src/pages/Settings/StorageSettings/providers/s3s.tsx"}, "region": {"startLine": 24}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 142939, "scanner": "repobility-ai-code-hygiene", "fingerprint": "0ab5e351db832ef92ef7fd6beb48d8a4052928438c9837e8a95f8084262a171c", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "web/apps/labelstudio/src/pages/Settings/StorageSettings/providers/gcs.ts", "duplicate_line": 57, "correlation_key": "fp|0ab5e351db832ef92ef7fd6beb48d8a4052928438c9837e8a95f8084262a171c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/src/pages/Settings/StorageSettings/providers/s3.ts"}, "region": {"startLine": 84}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 142938, "scanner": "repobility-ai-code-hygiene", "fingerprint": "b9c833bf49fc23eb19752c439704efe48726d89003315898de476923106be1e8", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "web/apps/labelstudio/src/pages/Settings/StorageSettings/providers/azure.ts", "duplicate_line": 42, "correlation_key": "fp|b9c833bf49fc23eb19752c439704efe48726d89003315898de476923106be1e8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/src/pages/Settings/StorageSettings/providers/s3.ts"}, "region": {"startLine": 66}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 142937, "scanner": "repobility-ai-code-hygiene", "fingerprint": "6e258591bd04bd15b07fa95e11d7b301f284c083c684dd9420a40edd96dfb746", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "web/apps/labelstudio/src/pages/Settings/StorageSettings/providers/azure_spi.tsx", "duplicate_line": 25, "correlation_key": "fp|6e258591bd04bd15b07fa95e11d7b301f284c083c684dd9420a40edd96dfb746"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/src/pages/Settings/StorageSettings/providers/gcswif.tsx"}, "region": {"startLine": 25}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 142936, "scanner": "repobility-ai-code-hygiene", "fingerprint": "75ca2d702ad8c163bcee27d7269571856048b1c5de3c20793d907e24ed62fcdc", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "web/apps/labelstudio/src/pages/Settings/StorageSettings/providers/azure.ts", "duplicate_line": 42, "correlation_key": "fp|75ca2d702ad8c163bcee27d7269571856048b1c5de3c20793d907e24ed62fcdc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/src/pages/Settings/StorageSettings/providers/gcs.ts"}, "region": {"startLine": 39}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 142935, "scanner": "repobility-ai-code-hygiene", "fingerprint": "bd2e310411eb9cb4561fe926e0091b821217769851b9cf0b64a445dbf6d158ca", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "web/apps/labelstudio/src/pages/Settings/StorageSettings/providers/azure_spi.tsx", "duplicate_line": 25, "correlation_key": "fp|bd2e310411eb9cb4561fe926e0091b821217769851b9cf0b64a445dbf6d158ca"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/src/pages/Settings/StorageSettings/providers/databricks.tsx"}, "region": {"startLine": 24}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 142934, "scanner": "repobility-ai-code-hygiene", "fingerprint": "439b32fd758d33d6ff3ee0a37c985fd3d662643a8204145c3fc5945e1a1aa680", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "label_studio/tasks/serializers.py", "duplicate_line": 297, "correlation_key": "fp|439b32fd758d33d6ff3ee0a37c985fd3d662643a8204145c3fc5945e1a1aa680"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tasks/validation.py"}, "region": {"startLine": 176}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 142933, "scanner": "repobility-ai-code-hygiene", "fingerprint": "4a7e1253b09c51fbe325990dc98c0e068908da71b9c7f4cfa57316b0039a2e38", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "label_studio/io_storages/azure_blob/api.py", "duplicate_line": 1, "correlation_key": "fp|4a7e1253b09c51fbe325990dc98c0e068908da71b9c7f4cfa57316b0039a2e38"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/s3/api.py"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 142932, "scanner": "repobility-ai-code-hygiene", "fingerprint": "43e923f2753a9f18ae6fa1999f83f0daa680b24aa3618e6582014805041fb712", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "label_studio/io_storages/azure_blob/api.py", "duplicate_line": 1, "correlation_key": "fp|43e923f2753a9f18ae6fa1999f83f0daa680b24aa3618e6582014805041fb712"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/redis/api.py"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 142931, "scanner": "repobility-ai-code-hygiene", "fingerprint": "1cd93b4e0228564152820584e2b3a9fadd6bb8a0849fe77101c869280e6cc18d", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "label_studio/io_storages/azure_blob/api.py", "duplicate_line": 1, "correlation_key": "fp|1cd93b4e0228564152820584e2b3a9fadd6bb8a0849fe77101c869280e6cc18d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/localfiles/api.py"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 142930, "scanner": "repobility-ai-code-hygiene", "fingerprint": "6e8480a33afc13441afd603c5663c05b8ac2401c9834eaa73fa841323c0a9746", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "label_studio/io_storages/azure_blob/openapi_schema.py", "duplicate_line": 11, "correlation_key": "fp|6e8480a33afc13441afd603c5663c05b8ac2401c9834eaa73fa841323c0a9746"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/gcs/openapi_schema.py"}, "region": {"startLine": 14}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 142929, "scanner": "repobility-ai-code-hygiene", "fingerprint": "f2393bde14e3c9ceabdecfcb701b42f4dbb8275005844382fe1bbf082470da53", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "label_studio/io_storages/azure_blob/api.py", "duplicate_line": 1, "correlation_key": "fp|f2393bde14e3c9ceabdecfcb701b42f4dbb8275005844382fe1bbf082470da53"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/gcs/api.py"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 142928, "scanner": "repobility-ai-code-hygiene", "fingerprint": "1b0272e2de5e8d3cb71f5916b8262f38e178ae128a7d3a78b8da46d4caf0a107", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "label_studio/data_import/api.py", "duplicate_line": 278, "correlation_key": "fp|1b0272e2de5e8d3cb71f5916b8262f38e178ae128a7d3a78b8da46d4caf0a107"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/functions.py"}, "region": {"startLine": 90}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 142927, "scanner": "repobility-ai-code-hygiene", "fingerprint": "9b6fb4456d77158cdf9934ab0cea35eef34cee30e27e22a5950a04fbfb82ff10", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "label_studio/core/utils/filterset_to_openapi_params.py", "duplicate_line": 58, "correlation_key": "fp|9b6fb4456d77158cdf9934ab0cea35eef34cee30e27e22a5950a04fbfb82ff10"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/utils/serializer_to_openapi_params.py"}, "region": {"startLine": 35}}}]}, {"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": 142891, "scanner": "repobility-threat-engine", "fingerprint": "0fcc2850411091d779a0f1d08ecef8c987e8a670d356d227df9680594a709490", "category": "quality", "severity": "low", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "'DefaultEndpointsProtocol=https;AccountName='\n            + account_name\n            + ';AccountKey=", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC132", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|0fcc2850411091d779a0f1d08ecef8c987e8a670d356d227df9680594a709490"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/azure_blob/utils.py"}, "region": {"startLine": 121}}}]}, {"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": 142890, "scanner": "repobility-threat-engine", "fingerprint": "ae698730d408a32b4f08c0c91f25ea48bb571c0707389a6866ed67435a6c6192", "category": "quality", "severity": "low", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "'Deleted ' + str(count) + '", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC132", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|ae698730d408a32b4f08c0c91f25ea48bb571c0707389a6866ed67435a6c6192"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_manager/actions/basic.py"}, "region": {"startLine": 73}}}]}, {"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": 142889, "scanner": "repobility-threat-engine", "fingerprint": "9ee827d8a18e396d93822bea86e7880bd62770413410ea2833abdefaa8940651", "category": "quality", "severity": "low", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "'project-' + str(project.id) + '", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC132", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|9ee827d8a18e396d93822bea86e7880bd62770413410ea2833abdefaa8940651"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_export/models.py"}, "region": {"startLine": 155}}}]}, {"ruleId": "SEC124", "level": "note", "message": {"text": "[SEC124] TOCTOU file access (os.access then open): Check-then-use file pattern (access/exists then open) lets an attacker swap the file between check and use (symlink attack). `mktemp` is deprecated for the same reason."}, "properties": {"repobilityId": 142880, "scanner": "repobility-threat-engine", "fingerprint": "3fa6e5954d2595085b23799a359da19b3cc67ef0c0911c5356a11c6882858fde", "category": "race_condition", "severity": "low", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "os.path.isfile(path):\n        os.remove(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC124", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|3fa6e5954d2595085b23799a359da19b3cc67ef0c0911c5356a11c6882858fde"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/utils/io.py"}, "region": {"startLine": 105}}}]}, {"ruleId": "COMP001", "level": "note", "message": {"text": "[COMP001] High cognitive complexity: Function `flag_set` has cognitive complexity 10 (SonarSource scale). Cognitive complexity measures how hard the function is for a human to understand \u2014 nested branches, boolean chains, and recursion all weigh in. Breakdown: elif=1, else=2, if=6, nested_bonus=1."}, "properties": {"repobilityId": 142848, "scanner": "repobility-threat-engine", "fingerprint": "e759e84cc69e8fb6fe16113b2b0a64171a0e2128e90be61355ba36f2e1b07760", "category": "quality", "severity": "low", "confidence": 0.95, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "AST-derived cognitive complexity score = 10 (severity threshold for low: 8+).", "evidence": {"scanner": "repobility-threat-engine", "function": "flag_set", "breakdown": {"if": 6, "elif": 1, "else": 2, "nested_bonus": 1}, "complexity": 10, "correlation_key": "fp|e759e84cc69e8fb6fe16113b2b0a64171a0e2128e90be61355ba36f2e1b07760"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/feature_flags/base.py"}, "region": {"startLine": 73}}}]}, {"ruleId": "COMP001", "level": "note", "message": {"text": "[COMP001] High cognitive complexity: Function `get_fields` has cognitive complexity 10 (SonarSource scale). Cognitive complexity measures how hard the function is for a human to understand \u2014 nested branches, boolean chains, and recursion all weigh in. Breakdown: and=4, elif=1, else=1, if=2, or=2."}, "properties": {"repobilityId": 142847, "scanner": "repobility-threat-engine", "fingerprint": "08c1498cce226be473baaefc16f19a57d19d4054f48f1bb9ff4c3eae36b485ff", "category": "quality", "severity": "low", "confidence": 0.95, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "AST-derived cognitive complexity score = 10 (severity threshold for low: 8+).", "evidence": {"scanner": "repobility-threat-engine", "function": "get_fields", "breakdown": {"if": 2, "or": 2, "and": 4, "elif": 1, "else": 1}, "complexity": 10, "correlation_key": "fp|08c1498cce226be473baaefc16f19a57d19d4054f48f1bb9ff4c3eae36b485ff"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/bulk_update_utils.py"}, "region": {"startLine": 73}}}]}, {"ruleId": "DKR002", "level": "none", "message": {"text": "Dockerfile base image is selected through a build variable"}, "properties": {"repobilityId": 142956, "scanner": "repobility-docker", "fingerprint": "d8968193eedce5c3012f4176677e4644e0453339530cd94ba1ab5a11f9049d7c", "category": "docker", "severity": "info", "confidence": 0.48, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Base image contains a variable; manual review is needed to avoid false positives.", "evidence": {"image": "python:${PYTHON_VERSION}-slim", "rule_id": "DKR002", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/"], "correlation_key": "fp|d8968193eedce5c3012f4176677e4644e0453339530cd94ba1ab5a11f9049d7c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile.development"}, "region": {"startLine": 82}}}]}, {"ruleId": "DKR002", "level": "none", "message": {"text": "Dockerfile base image is selected through a build variable"}, "properties": {"repobilityId": 142954, "scanner": "repobility-docker", "fingerprint": "9b1ee8f2f5af6a228be1ec7800dc1325389235214f1975e7f16f57630fed29c1", "category": "docker", "severity": "info", "confidence": 0.48, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Base image contains a variable; manual review is needed to avoid false positives.", "evidence": {"image": "python:${PYTHON_VERSION}-slim", "rule_id": "DKR002", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/"], "correlation_key": "fp|9b1ee8f2f5af6a228be1ec7800dc1325389235214f1975e7f16f57630fed29c1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile.development"}, "region": {"startLine": 26}}}]}, {"ruleId": "DKR002", "level": "none", "message": {"text": "Dockerfile base image is selected through a build variable"}, "properties": {"repobilityId": 142953, "scanner": "repobility-docker", "fingerprint": "f31c9ed0b55970fd20572263b7822fa3f1ce15f255a03111e66f4abbfd825035", "category": "docker", "severity": "info", "confidence": 0.48, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Base image contains a variable; manual review is needed to avoid false positives.", "evidence": {"image": "node:${NODE_VERSION}", "rule_id": "DKR002", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/"], "correlation_key": "fp|f31c9ed0b55970fd20572263b7822fa3f1ce15f255a03111e66f4abbfd825035"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile.development"}, "region": {"startLine": 19}}}]}, {"ruleId": "DKR002", "level": "none", "message": {"text": "Dockerfile base image is selected through a build variable"}, "properties": {"repobilityId": 142949, "scanner": "repobility-docker", "fingerprint": "44170959e976588dc52ba27214bd402f45ba9634303cb5eb55a596d023587c5b", "category": "docker", "severity": "info", "confidence": 0.48, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Base image contains a variable; manual review is needed to avoid false positives.", "evidence": {"image": "python:${PYTHON_VERSION}-alpine", "rule_id": "DKR002", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/"], "correlation_key": "fp|44170959e976588dc52ba27214bd402f45ba9634303cb5eb55a596d023587c5b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 128}}}]}, {"ruleId": "DKR002", "level": "none", "message": {"text": "Dockerfile base image is selected through a build variable"}, "properties": {"repobilityId": 142947, "scanner": "repobility-docker", "fingerprint": "e95ca9d05b8e19be11c2ad5d7d0b7c8394276affa48d3e8fed1c919200a30c9b", "category": "docker", "severity": "info", "confidence": 0.48, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Base image contains a variable; manual review is needed to avoid false positives.", "evidence": {"image": "python:${PYTHON_VERSION}-alpine", "rule_id": "DKR002", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/"], "correlation_key": "fp|e95ca9d05b8e19be11c2ad5d7d0b7c8394276affa48d3e8fed1c919200a30c9b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 63}}}]}, {"ruleId": "DKR002", "level": "none", "message": {"text": "Dockerfile base image is selected through a build variable"}, "properties": {"repobilityId": 142946, "scanner": "repobility-docker", "fingerprint": "f6d02d6f11eb57732bd2a517d3690faa0169477a46eaf7705831bc4e2a12caac", "category": "docker", "severity": "info", "confidence": 0.48, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Base image contains a variable; manual review is needed to avoid false positives.", "evidence": {"image": "node:${NODE_VERSION}-alpine", "rule_id": "DKR002", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/"], "correlation_key": "fp|f6d02d6f11eb57732bd2a517d3690faa0169477a46eaf7705831bc4e2a12caac"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 19}}}]}, {"ruleId": "MINED099", "level": "none", "message": {"text": "[MINED099] Hardcoded Secret: API key, AWS access key, GitHub token, Slack token, OpenAI key, or private key embedded directly in source. AI assistants frequently leak demo credentials."}, "properties": {"repobilityId": 142925, "scanner": "repobility-threat-engine", "fingerprint": "db46294b2580484baf49da96614200744c9a7c384f07178598fc1814689f1996", "category": "quality", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe pattern 'example' detected on same line", "evidence": {"mined": true, "mining": {"slug": "hardcoded-secret", "owasp": "A07:2021", "cwe_ids": ["CWE-798"], "languages": [], "precision": 1.0, "promoted_at": "2026-05-18T15:01:13.611213+00:00", "triaged_in_corpus": 8, "observations_count": 88419, "ai_coder_pattern_id": 9}, "scanner": "repobility-threat-engine", "correlation_key": "fp|db46294b2580484baf49da96614200744c9a7c384f07178598fc1814689f1996"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/src/pages/Settings/StorageSettings/providers/s3.ts"}, "region": {"startLine": 46}}}]}, {"ruleId": "MINED052", "level": "none", "message": {"text": "[MINED052] Ts Any Typed (and 4 more): Same pattern found in 4 additional files. Review if needed."}, "properties": {"repobilityId": 142924, "scanner": "repobility-threat-engine", "fingerprint": "dc495931fe10ccd594ead31c7c77f06bc2fd305548c052c38b6f9feadb646876", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 4 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "ts-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|dc495931fe10ccd594ead31c7c77f06bc2fd305548c052c38b6f9feadb646876", "aggregated_count": 4}}}, {"ruleId": "MINED052", "level": "none", "message": {"text": "[MINED052] Ts Any Typed: : any used as type annotation. Defeats TypeScript type safety."}, "properties": {"repobilityId": 142923, "scanner": "repobility-threat-engine", "fingerprint": "6ae08c9eecc949403f89d0cba6072ffd226599e1018783585dd4cd341701481b", "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|6ae08c9eecc949403f89d0cba6072ffd226599e1018783585dd4cd341701481b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/src/pages/types/Page.ts"}, "region": {"startLine": 13}}}]}, {"ruleId": "MINED052", "level": "none", "message": {"text": "[MINED052] Ts Any Typed: : any used as type annotation. Defeats TypeScript type safety."}, "properties": {"repobilityId": 142922, "scanner": "repobility-threat-engine", "fingerprint": "d8f23b8c77def2abdef3489227b5cd4e3e31950a2329abc9320cfca342816e13", "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|d8f23b8c77def2abdef3489227b5cd4e3e31950a2329abc9320cfca342816e13"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/src/pages/CreateProject/Import/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": 142921, "scanner": "repobility-threat-engine", "fingerprint": "1daa6813215a156ae82dff7842b4a514d0092df0279149e0aa2ce224e9232538", "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|1daa6813215a156ae82dff7842b4a514d0092df0279149e0aa2ce224e9232538"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/src/pages/CreateProject/Config/UnsavedChanges.tsx"}, "region": {"startLine": 47}}}]}, {"ruleId": "MINED054", "level": "none", "message": {"text": "[MINED054] Ts As Any: Casting to any (as any) bypasses type checking entirely."}, "properties": {"repobilityId": 142920, "scanner": "repobility-threat-engine", "fingerprint": "83e6ecd79bf9467e6ee87f88e3ddcb213d64d7a77ead40f2640aaf0511b0af1f", "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|83e6ecd79bf9467e6ee87f88e3ddcb213d64d7a77ead40f2640aaf0511b0af1f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/playground/src/components/PreviewPanel/PreviewPanel.tsx"}, "region": {"startLine": 45}}}]}, {"ruleId": "MINED054", "level": "none", "message": {"text": "[MINED054] Ts As Any: Casting to any (as any) bypasses type checking entirely."}, "properties": {"repobilityId": 142919, "scanner": "repobility-threat-engine", "fingerprint": "8cb328ebe70f01b72523b50d21e4defbc612944393711b40e74ed853d0bb1463", "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|8cb328ebe70f01b72523b50d21e4defbc612944393711b40e74ed853d0bb1463"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/src/config/Sentry.ts"}, "region": {"startLine": 47}}}]}, {"ruleId": "MINED056", "level": "none", "message": {"text": "[MINED056] React Key As Index: key={index} in map() \u2014 re-renders the wrong elements on re-order."}, "properties": {"repobilityId": 142916, "scanner": "repobility-threat-engine", "fingerprint": "6a1dd038e52286f58769d2801eb8ee37cab6acaf53f2863762548d12ed331fc7", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "react-key-as-index", "owasp": null, "cwe_ids": ["CWE-682"], "languages": ["typescript", "tsx", "javascript", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348032+00:00", "triaged_in_corpus": 12, "observations_count": 299917, "ai_coder_pattern_id": 135}, "scanner": "repobility-threat-engine", "correlation_key": "fp|6a1dd038e52286f58769d2801eb8ee37cab6acaf53f2863762548d12ed331fc7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/src/components/Menu/Menu.jsx"}, "region": {"startLine": 51}}}]}, {"ruleId": "MINED056", "level": "none", "message": {"text": "[MINED056] React Key As Index: key={index} in map() \u2014 re-renders the wrong elements on re-order."}, "properties": {"repobilityId": 142915, "scanner": "repobility-threat-engine", "fingerprint": "a0323fcb331159621acb71e52de36d8486082207ddc262748b8ef745bb2a368a", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "react-key-as-index", "owasp": null, "cwe_ids": ["CWE-682"], "languages": ["typescript", "tsx", "javascript", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348032+00:00", "triaged_in_corpus": 12, "observations_count": 299917, "ai_coder_pattern_id": 135}, "scanner": "repobility-threat-engine", "correlation_key": "fp|a0323fcb331159621acb71e52de36d8486082207ddc262748b8ef745bb2a368a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/src/components/Error/Error.jsx"}, "region": {"startLine": 73}}}]}, {"ruleId": "MINED058", "level": "none", "message": {"text": "[MINED058] React Dangerously Set Html: dangerouslySetInnerHTML bypasses Reacts JSX escaping. Pair with DOMPurify or never use with user data."}, "properties": {"repobilityId": 142914, "scanner": "repobility-threat-engine", "fingerprint": "79cb029ba5817bf8d9f9e2bd7b9adc95a277b5f64473ccacf1329ecc2653c364", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "react-dangerously-set-html", "owasp": "A03:2021", "cwe_ids": ["CWE-79"], "languages": ["javascript", "typescript"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348037+00:00", "triaged_in_corpus": 12, "observations_count": 255650, "ai_coder_pattern_id": 49}, "scanner": "repobility-threat-engine", "correlation_key": "fp|79cb029ba5817bf8d9f9e2bd7b9adc95a277b5f64473ccacf1329ecc2653c364"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/src/pages/DataManager/DataManager.jsx"}, "region": {"startLine": 269}}}]}, {"ruleId": "MINED058", "level": "none", "message": {"text": "[MINED058] React Dangerously Set Html: dangerouslySetInnerHTML bypasses Reacts JSX escaping. Pair with DOMPurify or never use with user data."}, "properties": {"repobilityId": 142913, "scanner": "repobility-threat-engine", "fingerprint": "00b0eb41d8377b63e9d58d6c81e9bb22c7bf178ecd32dab9063536230d984d27", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "react-dangerously-set-html", "owasp": "A03:2021", "cwe_ids": ["CWE-79"], "languages": ["javascript", "typescript"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348037+00:00", "triaged_in_corpus": 12, "observations_count": 255650, "ai_coder_pattern_id": 49}, "scanner": "repobility-threat-engine", "correlation_key": "fp|00b0eb41d8377b63e9d58d6c81e9bb22c7bf178ecd32dab9063536230d984d27"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/src/components/Error/Error.jsx"}, "region": {"startLine": 52}}}]}, {"ruleId": "MINED058", "level": "none", "message": {"text": "[MINED058] React Dangerously Set Html: dangerouslySetInnerHTML bypasses Reacts JSX escaping. Pair with DOMPurify or never use with user data."}, "properties": {"repobilityId": 142912, "scanner": "repobility-threat-engine", "fingerprint": "a30f4036e7b31ba5db7f334bd6a6ea3b4f79d7ff82ea6011e5ac4f3b90bd7be5", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "react-dangerously-set-html", "owasp": "A03:2021", "cwe_ids": ["CWE-79"], "languages": ["javascript", "typescript"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348037+00:00", "triaged_in_corpus": 12, "observations_count": 255650, "ai_coder_pattern_id": 49}, "scanner": "repobility-threat-engine", "correlation_key": "fp|a30f4036e7b31ba5db7f334bd6a6ea3b4f79d7ff82ea6011e5ac4f3b90bd7be5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/src/app/StaticContent/StaticContent.jsx"}, "region": {"startLine": 52}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 142907, "scanner": "repobility-threat-engine", "fingerprint": "bcb53a578bcdd5c2acfe6c2d272d84fe82537b3b79946b18af92fa9d8f092a39", "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|bcb53a578bcdd5c2acfe6c2d272d84fe82537b3b79946b18af92fa9d8f092a39"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/playground/jest.config.ts"}, "region": {"startLine": 6}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 142906, "scanner": "repobility-threat-engine", "fingerprint": "02c7b5ae87cc6144aa2f22255dda8d8c991bcbde653197d8767443059bb19de0", "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|02c7b5ae87cc6144aa2f22255dda8d8c991bcbde653197d8767443059bb19de0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/jest.config.ts"}, "region": {"startLine": 6}}}]}, {"ruleId": "MINED064", "level": "none", "message": {"text": "[MINED064] Python Input Call: input() blocks for stdin. Inappropriate in services."}, "properties": {"repobilityId": 142901, "scanner": "repobility-threat-engine", "fingerprint": "2b21bbbcf45547dc295552363c7c849ae6234306964dfcec75912da2b346210c", "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": "python-input-call", "owasp": null, "cwe_ids": [], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348050+00:00", "triaged_in_corpus": 12, "observations_count": 66378, "ai_coder_pattern_id": 124}, "scanner": "repobility-threat-engine", "correlation_key": "fp|2b21bbbcf45547dc295552363c7c849ae6234306964dfcec75912da2b346210c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/organizations/management/commands/destroy_organization.py"}, "region": {"startLine": 21}}}]}, {"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": 142898, "scanner": "repobility-threat-engine", "fingerprint": "b7cd5d365cd1ca9931e3dcf567e602c24e81e7eebfcffc5c2fbba7f3d1b20eb4", "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": "logger.debug('JWT API token validation failed: %s', e)", "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|16|logger.debug jwt api token validation failed: s e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/jwt_auth/views.py"}, "region": {"startLine": 165}}}]}, {"ruleId": "MINED077", "level": "none", "message": {"text": "[MINED077] Python Open No Context: fp = open(path) outside with-block leaks file handles."}, "properties": {"repobilityId": 142896, "scanner": "repobility-threat-engine", "fingerprint": "daa6654df6180f988156c50b15722fe38e6cb656f2ab4413335dbaef53b61da8", "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": "python-open-no-context", "owasp": null, "cwe_ids": ["CWE-772"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348081+00:00", "triaged_in_corpus": 12, "observations_count": 7864, "ai_coder_pattern_id": 123}, "scanner": "repobility-threat-engine", "correlation_key": "fp|daa6654df6180f988156c50b15722fe38e6cb656f2ab4413335dbaef53b61da8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/localfiles/views.py"}, "region": {"startLine": 50}}}]}, {"ruleId": "SEC132", "level": "none", "message": {"text": "[SEC132] String concat where the language has interpolation (AI style drift) (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "properties": {"repobilityId": 142892, "scanner": "repobility-threat-engine", "fingerprint": "0a93f04a20a5455ea1d5583f76d6ecf7b16d6848f2b1fa2649ea0d3237642e97", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 2 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 2 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC132", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|0a93f04a20a5455ea1d5583f76d6ecf7b16d6848f2b1fa2649ea0d3237642e97"}}}, {"ruleId": "MINED067", "level": "none", "message": {"text": "[MINED067] Python Requests No Timeout: requests.get/post/etc. without timeout= can hang forever."}, "properties": {"repobilityId": 142885, "scanner": "repobility-threat-engine", "fingerprint": "d03ab9fea0dd071be3dbb81909d577e7196d1d75d977275b3b289bb8c61715a8", "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": "python-requests-no-timeout", "owasp": null, "cwe_ids": ["CWE-400"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348058+00:00", "triaged_in_corpus": 12, "observations_count": 45429, "ai_coder_pattern_id": 122}, "scanner": "repobility-threat-engine", "correlation_key": "fp|d03ab9fea0dd071be3dbb81909d577e7196d1d75d977275b3b289bb8c61715a8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/webhooks/utils.py"}, "region": {"startLine": 55}}}]}, {"ruleId": "MINED067", "level": "none", "message": {"text": "[MINED067] Python Requests No Timeout: requests.get/post/etc. without timeout= can hang forever."}, "properties": {"repobilityId": 142884, "scanner": "repobility-threat-engine", "fingerprint": "262b2b86fa54801529e1917b7cd79b7d2305f6dd88baf90d50d2ef52acd685c1", "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": "python-requests-no-timeout", "owasp": null, "cwe_ids": ["CWE-400"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348058+00:00", "triaged_in_corpus": 12, "observations_count": 45429, "ai_coder_pattern_id": 122}, "scanner": "repobility-threat-engine", "correlation_key": "fp|262b2b86fa54801529e1917b7cd79b7d2305f6dd88baf90d50d2ef52acd685c1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/views.py"}, "region": {"startLine": 158}}}]}, {"ruleId": "MINED067", "level": "none", "message": {"text": "[MINED067] Python Requests No Timeout: requests.get/post/etc. without timeout= can hang forever."}, "properties": {"repobilityId": 142883, "scanner": "repobility-threat-engine", "fingerprint": "3e3fa33aa54ca936f6988032de066dbd31e68e29b8a1ec506ab57860a1eeca0f", "category": "quality", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe pattern '#\\s*nosec' detected on same line", "evidence": {"mined": true, "mining": {"slug": "python-requests-no-timeout", "owasp": null, "cwe_ids": ["CWE-400"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348058+00:00", "triaged_in_corpus": 12, "observations_count": 45429, "ai_coder_pattern_id": 122}, "scanner": "repobility-threat-engine", "correlation_key": "fp|3e3fa33aa54ca936f6988032de066dbd31e68e29b8a1ec506ab57860a1eeca0f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/utils/io.py"}, "region": {"startLine": 267}}}]}, {"ruleId": "MINED018", "level": "none", "message": {"text": "[MINED018] Unsafe Deserialization Pickle: pickle.loads / yaml.load (without Loader=SafeLoader) / unmarshal of network/file data \u2014 RCE."}, "properties": {"repobilityId": 142881, "scanner": "repobility-threat-engine", "fingerprint": "0288ec7e7ea10f765413dc68b3c8070d59c8c022f5dc3a209167398a6c43c335", "category": "quality", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe pattern '#\\s*nosec' detected on same line", "evidence": {"mined": true, "mining": {"slug": "unsafe-deserialization-pickle", "owasp": "A08:2021", "cwe_ids": ["CWE-502"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347940+00:00", "triaged_in_corpus": 20, "observations_count": 58759, "ai_coder_pattern_id": 32}, "scanner": "repobility-threat-engine", "correlation_key": "fp|0288ec7e7ea10f765413dc68b3c8070d59c8c022f5dc3a209167398a6c43c335"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/utils/io.py"}, "region": {"startLine": 140}}}]}, {"ruleId": "SEC079", "level": "none", "message": {"text": "[SEC079] Python: yaml.load without SafeLoader: yaml.load() without explicit SafeLoader can execute arbitrary Python objects (CVE-2017-18342). Ported from bandit B506 / dlint DUO109 (Apache-2.0 / BSD-3)."}, "properties": {"repobilityId": 142876, "scanner": "repobility-threat-engine", "fingerprint": "f22c7ec0159e73af48773d6f49eb250b53e3937fee605696f862db095dc78251", "category": "quality", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe pattern '#\\s*nosec' detected on same line", "evidence": {"match": "yaml.load(f, Loader=yaml.FullLoader)", "reason": "Safe pattern '#\\s*nosec' detected on same line", "rule_id": "SEC079", "scanner": "repobility-threat-engine", "confidence": 0.1, "correlation_key": "fp|f22c7ec0159e73af48773d6f49eb250b53e3937fee605696f862db095dc78251"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/utils/io.py"}, "region": {"startLine": 140}}}]}, {"ruleId": "SEC078", "level": "none", "message": {"text": "[SEC078] Python: requests without timeout: requests.get/post without a timeout will hang indefinitely on a non-responsive server, causing thread exhaustion and ReDoS. Ported from bandit B113 (Apache-2.0). NOTE: this regex is heuristic; a real AST check is preferred for accuracy."}, "properties": {"repobilityId": 142873, "scanner": "repobility-threat-engine", "fingerprint": "ad5f3eb19215e74165f528103f97142ea6e10dcd456862714f0fd45efa43198d", "category": "quality", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe pattern '#\\s*nosec' detected on same line", "evidence": {"match": "requests.get(", "reason": "Safe pattern '#\\s*nosec' detected on same line", "rule_id": "SEC078", "scanner": "repobility-threat-engine", "confidence": 0.1, "correlation_key": "fp|ad5f3eb19215e74165f528103f97142ea6e10dcd456862714f0fd45efa43198d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/utils/io.py"}, "region": {"startLine": 267}}}]}, {"ruleId": "SEC007", "level": "none", "message": {"text": "[SEC007] Unsafe Deserialization: Unsafe deserialization can execute arbitrary code."}, "properties": {"repobilityId": 142872, "scanner": "repobility-threat-engine", "fingerprint": "fd1b25e2ee1ca6abf3cae9882ce2c7360bd3cabb8195b66d916ddb3e3572cc8c", "category": "deserialization", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe pattern 'FullLoader' detected on same line", "evidence": {"match": "yaml.load(", "reason": "Safe pattern 'FullLoader' detected on same line", "rule_id": "SEC007", "scanner": "repobility-threat-engine", "confidence": 0.1, "correlation_key": "code|deserialization|token|74|sec007"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/update_ml_tutorials.py"}, "region": {"startLine": 74}}}]}, {"ruleId": "SEC007", "level": "none", "message": {"text": "[SEC007] Unsafe Deserialization: Unsafe deserialization can execute arbitrary code."}, "properties": {"repobilityId": 142871, "scanner": "repobility-threat-engine", "fingerprint": "251f701417d91423705cf732571eae8366cad51da7e7fe049502ca306e42bc89", "category": "deserialization", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe pattern 'FullLoader' detected on same line", "evidence": {"match": "yaml.load(", "reason": "Safe pattern 'FullLoader' detected on same line", "rule_id": "SEC007", "scanner": "repobility-threat-engine", "confidence": 0.1, "correlation_key": "code|deserialization|token|140|sec007"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/utils/io.py"}, "region": {"startLine": 140}}}]}, {"ruleId": "MINED001", "level": "none", "message": {"text": "[MINED001] Bare Except Pass (and 6 more): Same pattern found in 6 additional files. Review if needed."}, "properties": {"repobilityId": 142870, "scanner": "repobility-threat-engine", "fingerprint": "bb423e21d8bdc29e6dfc844c3717d0dc4cb6b828860c7155ecb21a5fcf036249", "category": "quality", "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": {"mined": true, "mining": {"slug": "bare-except-pass", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347744+00:00", "triaged_in_corpus": 15, "observations_count": 1550824, "ai_coder_pattern_id": 6}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|bb423e21d8bdc29e6dfc844c3717d0dc4cb6b828860c7155ecb21a5fcf036249", "aggregated_count": 6}}}, {"ruleId": "MINED072", "level": "none", "message": {"text": "[MINED072] Python Pass Only Class (and 11 more): Same pattern found in 11 additional files. Review if needed."}, "properties": {"repobilityId": 142866, "scanner": "repobility-threat-engine", "fingerprint": "ebcd10e65e98249cf6c4649cbf1089fa0525d8db44459d1cdc5125b087e4bfd7", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 11 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "python-pass-only-class", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348069+00:00", "triaged_in_corpus": 10, "observations_count": 14245, "ai_coder_pattern_id": 143}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|ebcd10e65e98249cf6c4649cbf1089fa0525d8db44459d1cdc5125b087e4bfd7", "aggregated_count": 11}}}, {"ruleId": "MINED072", "level": "none", "message": {"text": "[MINED072] Python Pass Only Class: class Foo: pass \u2014 stub waiting to be filled in."}, "properties": {"repobilityId": 142865, "scanner": "repobility-threat-engine", "fingerprint": "63fcf644143cb349ad8b559df4ea4b3a1b008923224554c2ceb2ff40ed141ec8", "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": "python-pass-only-class", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348069+00:00", "triaged_in_corpus": 10, "observations_count": 14245, "ai_coder_pattern_id": 143}, "scanner": "repobility-threat-engine", "correlation_key": "fp|63fcf644143cb349ad8b559df4ea4b3a1b008923224554c2ceb2ff40ed141ec8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/utils/exceptions.py"}, "region": {"startLine": 7}}}]}, {"ruleId": "MINED072", "level": "none", "message": {"text": "[MINED072] Python Pass Only Class: class Foo: pass \u2014 stub waiting to be filled in."}, "properties": {"repobilityId": 142864, "scanner": "repobility-threat-engine", "fingerprint": "ae691270bb2e539117f85aa4246230f4578c6e7f5b9eaa543e7ca5954d4db617", "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": "python-pass-only-class", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348069+00:00", "triaged_in_corpus": 10, "observations_count": 14245, "ai_coder_pattern_id": 143}, "scanner": "repobility-threat-engine", "correlation_key": "fp|ae691270bb2e539117f85aa4246230f4578c6e7f5b9eaa543e7ca5954d4db617"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/storage.py"}, "region": {"startLine": 68}}}]}, {"ruleId": "MINED072", "level": "none", "message": {"text": "[MINED072] Python Pass Only Class: class Foo: pass \u2014 stub waiting to be filled in."}, "properties": {"repobilityId": 142863, "scanner": "repobility-threat-engine", "fingerprint": "d49d62e6b456408c600416e92fa1d545ea86acca06acd0535d8adffdfba13019", "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": "python-pass-only-class", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348069+00:00", "triaged_in_corpus": 10, "observations_count": 14245, "ai_coder_pattern_id": 143}, "scanner": "repobility-threat-engine", "correlation_key": "fp|d49d62e6b456408c600416e92fa1d545ea86acca06acd0535d8adffdfba13019"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/middleware.py"}, "region": {"startLine": 49}}}]}, {"ruleId": "MINED050", "level": "none", "message": {"text": "[MINED050] Stub Only Function (and 30 more): Same pattern found in 30 additional files. Review if needed."}, "properties": {"repobilityId": 142859, "scanner": "repobility-threat-engine", "fingerprint": "4f2bbcaca8f99c1eda4de45612adc1e7b004a9cf50a77fa70ec99a0b3d0b318d", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 30 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "stub-only-function", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348017+00:00", "triaged_in_corpus": 12, "observations_count": 633513, "ai_coder_pattern_id": 2}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|4f2bbcaca8f99c1eda4de45612adc1e7b004a9cf50a77fa70ec99a0b3d0b318d", "aggregated_count": 30}}}, {"ruleId": "MINED050", "level": "none", "message": {"text": "[MINED050] Stub Only Function: Function declared but body is just pass, return None, raise NotImplementedError, or TODO comment."}, "properties": {"repobilityId": 142858, "scanner": "repobility-threat-engine", "fingerprint": "2ebadb8147ae4ed3356b22d0e44af6459031834b1844c9e805752508c88ea680", "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": "stub-only-function", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348017+00:00", "triaged_in_corpus": 12, "observations_count": 633513, "ai_coder_pattern_id": 2}, "scanner": "repobility-threat-engine", "correlation_key": "fp|2ebadb8147ae4ed3356b22d0e44af6459031834b1844c9e805752508c88ea680"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/storage.py"}, "region": {"startLine": 69}}}]}, {"ruleId": "MINED050", "level": "none", "message": {"text": "[MINED050] Stub Only Function: Function declared but body is just pass, return None, raise NotImplementedError, or TODO comment."}, "properties": {"repobilityId": 142857, "scanner": "repobility-threat-engine", "fingerprint": "fc8b79c08c0bf14147d5a07d9cfe41a8e1fd1595e53bbd069f9412212a72f432", "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": "stub-only-function", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348017+00:00", "triaged_in_corpus": 12, "observations_count": 633513, "ai_coder_pattern_id": 2}, "scanner": "repobility-threat-engine", "correlation_key": "fp|fc8b79c08c0bf14147d5a07d9cfe41a8e1fd1595e53bbd069f9412212a72f432"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/middleware.py"}, "region": {"startLine": 50}}}]}, {"ruleId": "MINED050", "level": "none", "message": {"text": "[MINED050] Stub Only Function: Function declared but body is just pass, return None, raise NotImplementedError, or TODO comment."}, "properties": {"repobilityId": 142856, "scanner": "repobility-threat-engine", "fingerprint": "ebde6f8bff29141d75d2c873efef0d0207f1aa84349c6eaf235157d30af7d001", "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": "stub-only-function", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348017+00:00", "triaged_in_corpus": 12, "observations_count": 633513, "ai_coder_pattern_id": 2}, "scanner": "repobility-threat-engine", "correlation_key": "fp|ebde6f8bff29141d75d2c873efef0d0207f1aa84349c6eaf235157d30af7d001"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/filters.py"}, "region": {"startLine": 16}}}]}, {"ruleId": "SEC128", "level": "none", "message": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 35 more): Same pattern found in 35 additional files. Review if needed."}, "properties": {"repobilityId": 142855, "scanner": "repobility-threat-engine", "fingerprint": "98d7a331825c15c416a69df4a9300e41a45b360743a4004ad73bcb9325ec73df", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 35 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 35 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|98d7a331825c15c416a69df4a9300e41a45b360743a4004ad73bcb9325ec73df"}}}, {"ruleId": "COMP001", "level": "none", "message": {"text": "[COMP001] High cognitive complexity (and 66 more): Same pattern found in 66 additional files. Review if needed."}, "properties": {"repobilityId": 142849, "scanner": "repobility-threat-engine", "fingerprint": "d11d841d592ea833bb887dd382808fe92198d92dcc0320720baca6395d1671e8", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 66 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"scanner": "repobility-threat-engine", "function": "bulk_update", "breakdown": {"if": 5, "or": 3, "for": 3, "else": 3, "nested_bonus": 4}, "aggregated": true, "complexity": 18, "correlation_key": "fp|d11d841d592ea833bb887dd382808fe92198d92dcc0320720baca6395d1671e8", "aggregated_count": 66}}}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 142845, "scanner": "repobility-threat-engine", "fingerprint": "84bae74cb6c0031b74f98a4c7ebc2a4a898e940a76fbc9bb8889d6fa9d60d35e", "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|84bae74cb6c0031b74f98a4c7ebc2a4a898e940a76fbc9bb8889d6fa9d60d35e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/ml/api_connector.py"}, "region": {"startLine": 71}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 142844, "scanner": "repobility-threat-engine", "fingerprint": "1387e13d71c10b2f0cd562e6ba30f2d9c4b7df5d281433e5eea058791d3316ae", "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|1387e13d71c10b2f0cd562e6ba30f2d9c4b7df5d281433e5eea058791d3316ae"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/utils/exceptions.py"}, "region": {"startLine": 34}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 142843, "scanner": "repobility-threat-engine", "fingerprint": "d91155ed5b8475cd9609eb6bbca80e2a75526d1fa8f7f8b82f09aa43a3d40c67", "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|d91155ed5b8475cd9609eb6bbca80e2a75526d1fa8f7f8b82f09aa43a3d40c67"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/argparser.py"}, "region": {"startLine": 83}}}]}, {"ruleId": "SEC002", "level": "none", "message": {"text": "[SEC002] Hardcoded API Key: Hardcoded API key found in source code."}, "properties": {"repobilityId": 142842, "scanner": "repobility-threat-engine", "fingerprint": "899c872398ee1405e2e08966e29b1895e2020a6e28fb4a1556168fb89dff69da", "category": "credential_exposure", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Form field or UI element reference Collapsed 2 duplicate scanner signal(s) for the same underlying issue.", "evidence": {"match": "AKIAIOSFODNN7EXAMPLE", "reason": "Form field or UI element reference", "rule_id": "SEC002", "scanner": "repobility-threat-engine", "confidence": 0.1, "correlation_key": "secret|token|4|akiaiosfodnn7example", "duplicate_count": 2, "duplicate_rule_ids": ["SEC002", "SEC010", "SEC048"], "duplicate_scanners": ["repobility-threat-engine"], "duplicate_fingerprints": ["1b9a61290a0374c057a6c13d48b1d3f97b7446084401f9e2f953d286a3111445", "4ac2e561218e05d5bc5beb000836672d73a434ac1a7dbf8eac8ef81637f57bcf", "899c872398ee1405e2e08966e29b1895e2020a6e28fb4a1556168fb89dff69da"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/src/pages/Settings/StorageSettings/providers/s3.ts"}, "region": {"startLine": 46}}}]}, {"ruleId": "MINED098", "level": "none", "message": {"text": "[MINED098] Global Scope Pollution: Attaching libraries/objects directly to the global window scope (e.g., `window.axios = axios;`) makes the code harder to test and increases the risk of naming collisions."}, "properties": {"repobilityId": 142839, "scanner": "repobility-threat-engine", "fingerprint": "404fb1472d3c339dae0fae7fa0f7ed53cdcb3fc13e441ddf13e1cb2127507433", "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": "global-scope-pollution", "owasp": null, "cwe_ids": [], "languages": ["javascript"], "precision": 1.0, "promoted_at": "2026-05-18T15:01:13.611213+00:00", "triaged_in_corpus": 12, "observations_count": 173528, "ai_coder_pattern_id": 55}, "scanner": "repobility-threat-engine", "correlation_key": "fp|404fb1472d3c339dae0fae7fa0f7ed53cdcb3fc13e441ddf13e1cb2127507433"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/src/utils/colors.js"}, "region": {"startLine": 13}}}]}, {"ruleId": "MINED098", "level": "none", "message": {"text": "[MINED098] Global Scope Pollution: Attaching libraries/objects directly to the global window scope (e.g., `window.axios = axios;`) makes the code harder to test and increases the risk of naming collisions."}, "properties": {"repobilityId": 142838, "scanner": "repobility-threat-engine", "fingerprint": "f360a4a8a5d6beea48346228b226d7a8995dcefdc9097bbf56a51c00d77af44d", "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": "global-scope-pollution", "owasp": null, "cwe_ids": [], "languages": ["javascript"], "precision": 1.0, "promoted_at": "2026-05-18T15:01:13.611213+00:00", "triaged_in_corpus": 12, "observations_count": 173528, "ai_coder_pattern_id": 55}, "scanner": "repobility-threat-engine", "correlation_key": "fp|f360a4a8a5d6beea48346228b226d7a8995dcefdc9097bbf56a51c00d77af44d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/src/app/App.jsx"}, "region": {"startLine": 55}}}]}, {"ruleId": "MINED098", "level": "none", "message": {"text": "[MINED098] Global Scope Pollution: Attaching libraries/objects directly to the global window scope (e.g., `window.axios = axios;`) makes the code harder to test and increases the risk of naming collisions."}, "properties": {"repobilityId": 142837, "scanner": "repobility-threat-engine", "fingerprint": "e4eadd3f107a230eb9d737958c85f8553285ad3783646ef93cbcd8a68711fa3b", "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": "global-scope-pollution", "owasp": null, "cwe_ids": [], "languages": ["javascript"], "precision": 1.0, "promoted_at": "2026-05-18T15:01:13.611213+00:00", "triaged_in_corpus": 12, "observations_count": 173528, "ai_coder_pattern_id": 55}, "scanner": "repobility-threat-engine", "correlation_key": "fp|e4eadd3f107a230eb9d737958c85f8553285ad3783646ef93cbcd8a68711fa3b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docs/source/playground/jscookie.js"}, "region": {"startLine": 22}}}]}, {"ruleId": "MINED044", "level": "none", "message": {"text": "[MINED044] Js Console Log Prod (and 26 more): Same pattern found in 26 additional files. Review if needed."}, "properties": {"repobilityId": 142834, "scanner": "repobility-threat-engine", "fingerprint": "48b05db1c8accd9b071a4f82ba7c48348ada6f0f4c20bc02001ac9a24c7e392b", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 26 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|48b05db1c8accd9b071a4f82ba7c48348ada6f0f4c20bc02001ac9a24c7e392b", "aggregated_count": 26}}}, {"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": 142833, "scanner": "repobility-threat-engine", "fingerprint": "3a783560a186655715cd2f80bddbf03ccd2498633aec26bd451c3d46d1308709", "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|3a783560a186655715cd2f80bddbf03ccd2498633aec26bd451c3d46d1308709"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docs/scripts/breadcrumb.js"}, "region": {"startLine": 12}}}]}, {"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": 142832, "scanner": "repobility-threat-engine", "fingerprint": "e00646bf46b495daf4b3026c9b9d782ea224aa1685e929fed3ad0dc38fe9abd3", "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|e00646bf46b495daf4b3026c9b9d782ea224aa1685e929fed3ad0dc38fe9abd3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docs/scripts/alert.js"}, "region": {"startLine": 30}}}]}, {"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": 142831, "scanner": "repobility-threat-engine", "fingerprint": "35e5baaeeb7d337110cd23cfc176f7fce218276b2a5cf28542a7504aa715a4fd", "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|35e5baaeeb7d337110cd23cfc176f7fce218276b2a5cf28542a7504aa715a4fd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docs/netlify/functions/gather-feedback/gather-feedback.js"}, "region": {"startLine": 34}}}]}, {"ruleId": "SEC029", "level": "none", "message": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 25 more): Same pattern found in 25 additional files. Review if needed."}, "properties": {"repobilityId": 142828, "scanner": "repobility-threat-engine", "fingerprint": "a1abc0f73fcbbde4bfde07d3a1caa75668c0f255cd2533e6367562d2e96a50c7", "category": "ssrf", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 25 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 25 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|a1abc0f73fcbbde4bfde07d3a1caa75668c0f255cd2533e6367562d2e96a50c7"}}}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `postgres:13` unpinned: `container/services image: postgres:13` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 143147, "scanner": "repobility-supply-chain", "fingerprint": "6699486c165de27384aa8e278212f3f4fb6464976cb1216e0c8127cc2f7298b9", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|6699486c165de27384aa8e278212f3f4fb6464976cb1216e0c8127cc2f7298b9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/tests.yml"}, "region": {"startLine": 96}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `postgres:13.8` unpinned: `container/services image: postgres:13.8` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 143146, "scanner": "repobility-supply-chain", "fingerprint": "38944b97eedbccd462c2287903e3252ea7442ce6ca66c2d85dc109c1502cb127", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|38944b97eedbccd462c2287903e3252ea7442ce6ca66c2d85dc109c1502cb127"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test_migrations.yml"}, "region": {"startLine": 79}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `hmarr/debug-action` pinned to mutable ref `@v3.0.0`: `uses: hmarr/debug-action@v3.0.0` 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": 143142, "scanner": "repobility-supply-chain", "fingerprint": "c6876777129fc90e190c587ba277f332ee86770cf3fdf3278470fa0fe82579b8", "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|c6876777129fc90e190c587ba277f332ee86770cf3fdf3278470fa0fe82579b8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/git-command.yml"}, "region": {"startLine": 16}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 143141, "scanner": "repobility-supply-chain", "fingerprint": "bec34e9739d6603d5a6ffb1c87ef77a3caddf6368dcf2461d3fe4678c877db4d", "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|bec34e9739d6603d5a6ffb1c87ef77a3caddf6368dcf2461d3fe4678c877db4d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/create-tag-docs.yml"}, "region": {"startLine": 39}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `hmarr/debug-action` pinned to mutable ref `@v3.0.0`: `uses: hmarr/debug-action@v3.0.0` 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": 143140, "scanner": "repobility-supply-chain", "fingerprint": "6ae131c9e02f842aebe707a1e8eea2d000f633c327edf135f6bd35be2b4b1caf", "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|6ae131c9e02f842aebe707a1e8eea2d000f633c327edf135f6bd35be2b4b1caf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/create-tag-docs.yml"}, "region": {"startLine": 29}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `re-actors/alls-green` pinned to mutable ref `@release/v1`: `uses: re-actors/alls-green@release/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": 143128, "scanner": "repobility-supply-chain", "fingerprint": "0ba7c5e151c7e3c16390905c845b76d2228d06455cd435d5bed28d8bd4ea38c8", "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|0ba7c5e151c7e3c16390905c845b76d2228d06455cd435d5bed28d8bd4ea38c8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cicd_pipeline.yml"}, "region": {"startLine": 484}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/github-script` pinned to mutable ref `@v8`: `uses: actions/github-script@v8` 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": 143127, "scanner": "repobility-supply-chain", "fingerprint": "45619a2260ff7112e9962dce5697327751081001b5fd9e886ba0cafb06641a45", "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|45619a2260ff7112e9962dce5697327751081001b5fd9e886ba0cafb06641a45"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cicd_pipeline.yml"}, "region": {"startLine": 406}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/github-script` pinned to mutable ref `@v8`: `uses: actions/github-script@v8` 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": 143126, "scanner": "repobility-supply-chain", "fingerprint": "dbb7708a336867a14472a92d7269c986188913456bb0bac67ea5fa7684c1fa26", "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|dbb7708a336867a14472a92d7269c986188913456bb0bac67ea5fa7684c1fa26"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cicd_pipeline.yml"}, "region": {"startLine": 247}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 143125, "scanner": "repobility-supply-chain", "fingerprint": "252c2b76fa53f82c25f874ef4102c2d1e6744a17ae2324d52514b292ac725765", "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|252c2b76fa53f82c25f874ef4102c2d1e6744a17ae2324d52514b292ac725765"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cicd_pipeline.yml"}, "region": {"startLine": 240}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 143124, "scanner": "repobility-supply-chain", "fingerprint": "f59a4695915cfa128bd26cb359154368a28a7465fbb4a2ac656431f062d51032", "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|f59a4695915cfa128bd26cb359154368a28a7465fbb4a2ac656431f062d51032"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cicd_pipeline.yml"}, "region": {"startLine": 233}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `hmarr/debug-action` pinned to mutable ref `@v3.0.0`: `uses: hmarr/debug-action@v3.0.0` 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": 143123, "scanner": "repobility-supply-chain", "fingerprint": "ebc084741161c93a685dee9e129c447c1388e0d7c4025203ab3c9ee846956181", "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|ebc084741161c93a685dee9e129c447c1388e0d7c4025203ab3c9ee846956181"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cicd_pipeline.yml"}, "region": {"startLine": 230}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/github-script` pinned to mutable ref `@v8`: `uses: actions/github-script@v8` 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": 143122, "scanner": "repobility-supply-chain", "fingerprint": "bf4f058a558573df7b9f9487384278589cd825957f611c6587ad543374c0ba3b", "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|bf4f058a558573df7b9f9487384278589cd825957f611c6587ad543374c0ba3b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cicd_pipeline.yml"}, "region": {"startLine": 88}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/github-script` pinned to mutable ref `@v8`: `uses: actions/github-script@v8` 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": 143121, "scanner": "repobility-supply-chain", "fingerprint": "6753177476d436a05fcc32bef3d0bb2b2cce52a80988dd6658cb2cbdaac01755", "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|6753177476d436a05fcc32bef3d0bb2b2cce52a80988dd6658cb2cbdaac01755"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cicd_pipeline.yml"}, "region": {"startLine": 73}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `dorny/paths-filter` pinned to mutable ref `@v4`: `uses: dorny/paths-filter@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": 143120, "scanner": "repobility-supply-chain", "fingerprint": "a1af8fecac8b6f2da80192b90d9e613d9fda699762dc0b4d51921eca9073888e", "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|a1af8fecac8b6f2da80192b90d9e613d9fda699762dc0b4d51921eca9073888e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cicd_pipeline.yml"}, "region": {"startLine": 44}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 143119, "scanner": "repobility-supply-chain", "fingerprint": "579f6ad80283592ccad8c70808aeac015a87eda353d069f2d206455cc0df6e47", "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|579f6ad80283592ccad8c70808aeac015a87eda353d069f2d206455cc0df6e47"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cicd_pipeline.yml"}, "region": {"startLine": 41}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `hmarr/debug-action` pinned to mutable ref `@v3.0.0`: `uses: hmarr/debug-action@v3.0.0` 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": 143118, "scanner": "repobility-supply-chain", "fingerprint": "dc105a8f193a9734d26f1d86284f61e62d6a3ab88b887ed6d02cf432cba9a696", "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|dc105a8f193a9734d26f1d86284f61e62d6a3ab88b887ed6d02cf432cba9a696"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cicd_pipeline.yml"}, "region": {"startLine": 37}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `peter-evans/create-or-update-comment` pinned to mutable ref `@v5`: `uses: peter-evans/create-or-update-comment@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": 143117, "scanner": "repobility-supply-chain", "fingerprint": "1e901d81ef2de08d158bf53eaff256c27260cede6561bca87fb6bcd265877677", "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|1e901d81ef2de08d158bf53eaff256c27260cede6561bca87fb6bcd265877677"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/fmt-command.yml"}, "region": {"startLine": 25}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `github/codeql-action/analyze` pinned to mutable ref `@v4`: `uses: github/codeql-action/analyze@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": 143116, "scanner": "repobility-supply-chain", "fingerprint": "1c7b951e013284bb06c53a6dd65a227d63e386c80faf6c50dbaaa5c4c4acf379", "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|1c7b951e013284bb06c53a6dd65a227d63e386c80faf6c50dbaaa5c4c4acf379"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/codeql.yml"}, "region": {"startLine": 35}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `github/codeql-action/init` pinned to mutable ref `@v4`: `uses: github/codeql-action/init@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": 143115, "scanner": "repobility-supply-chain", "fingerprint": "feb703f3457d90002de52ade9acd5f80e70b5db4b9dda9aff9c2a6d6f92b67c1", "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|feb703f3457d90002de52ade9acd5f80e70b5db4b9dda9aff9c2a6d6f92b67c1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/codeql.yml"}, "region": {"startLine": 29}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 143114, "scanner": "repobility-supply-chain", "fingerprint": "2ceec74ff2cf561ba756047ae48a8db330d2d00239dd490ca8655d35b47fc67c", "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|2ceec74ff2cf561ba756047ae48a8db330d2d00239dd490ca8655d35b47fc67c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/codeql.yml"}, "region": {"startLine": 26}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/github-script` pinned to mutable ref `@v8`: `uses: actions/github-script@v8` 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": 143113, "scanner": "repobility-supply-chain", "fingerprint": "d4d499418bea44253a9bcfab7aff5662a6d5022918e2600a12bbb3eb701eefa9", "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|d4d499418bea44253a9bcfab7aff5662a6d5022918e2600a12bbb3eb701eefa9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/delete_pr_branch.yml"}, "region": {"startLine": 16}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `hmarr/debug-action` pinned to mutable ref `@v3.0.0`: `uses: hmarr/debug-action@v3.0.0` 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": 143112, "scanner": "repobility-supply-chain", "fingerprint": "c592f553ad89669b18e76a6786c0c50efc59fb027a4464e928c6f5757fe0a06e", "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|c592f553ad89669b18e76a6786c0c50efc59fb027a4464e928c6f5757fe0a06e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/delete_pr_branch.yml"}, "region": {"startLine": 13}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `peter-evans/create-or-update-comment` pinned to mutable ref `@v5`: `uses: peter-evans/create-or-update-comment@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": 143111, "scanner": "repobility-supply-chain", "fingerprint": "62425fcdc1f98a21dae1b6e49485f4733734804bf3ad7a6d474c519018564b62", "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|62425fcdc1f98a21dae1b6e49485f4733734804bf3ad7a6d474c519018564b62"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/docker-command.yml"}, "region": {"startLine": 111}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `peter-evans/create-or-update-comment` pinned to mutable ref `@v5`: `uses: peter-evans/create-or-update-comment@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": 143110, "scanner": "repobility-supply-chain", "fingerprint": "3871248f8923b41873a6e07a9ec4b5c34404d7c4d75ed5e5de04cf161644d443", "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|3871248f8923b41873a6e07a9ec4b5c34404d7c4d75ed5e5de04cf161644d443"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/docker-command.yml"}, "region": {"startLine": 96}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/github-script` pinned to mutable ref `@v8`: `uses: actions/github-script@v8` 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": 143109, "scanner": "repobility-supply-chain", "fingerprint": "49cc5246e20aaf1bb1375b4f2c602ab6d3dedb8be258214f9747795a00f0471c", "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|49cc5246e20aaf1bb1375b4f2c602ab6d3dedb8be258214f9747795a00f0471c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/docker-command.yml"}, "region": {"startLine": 30}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `peter-evans/create-or-update-comment` pinned to mutable ref `@v5`: `uses: peter-evans/create-or-update-comment@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": 143108, "scanner": "repobility-supply-chain", "fingerprint": "0ee17b621bba6bc8b3816280eac08cf198e72b127c0da9ab91b9308d94911b50", "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|0ee17b621bba6bc8b3816280eac08cf198e72b127c0da9ab91b9308d94911b50"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/docker-command.yml"}, "region": {"startLine": 21}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `hmarr/debug-action` pinned to mutable ref `@v3.0.0`: `uses: hmarr/debug-action@v3.0.0` 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": 143107, "scanner": "repobility-supply-chain", "fingerprint": "b070b78bab4055fc651c68cdc88b24b08bc6ea755d0edbabcab55bf7581dd9de", "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|b070b78bab4055fc651c68cdc88b24b08bc6ea755d0edbabcab55bf7581dd9de"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/docker-command.yml"}, "region": {"startLine": 18}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `heartexlabs/label-studio:latest` not pinned by digest: `FROM heartexlabs/label-studio:latest` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity."}, "properties": {"repobilityId": 143106, "scanner": "repobility-supply-chain", "fingerprint": "34c3b9ead8d44a7931fcdb3eb25be3d9cb6c70e2122eed5d9552e5e8ebf3a6de", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "docker-from-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["dockerfile"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|34c3b9ead8d44a7931fcdb3eb25be3d9cb6c70e2122eed5d9552e5e8ebf3a6de"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile.testing"}, "region": {"startLine": 7}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `heartexlabs/label-studio:develop` not pinned by digest: `FROM heartexlabs/label-studio:develop` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity."}, "properties": {"repobilityId": 143105, "scanner": "repobility-supply-chain", "fingerprint": "b3cab963ca7b44557995690b9469273e6305715285dc8d476123d22efb633f94", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "docker-from-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["dockerfile"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|b3cab963ca7b44557995690b9469273e6305715285dc8d476123d22efb633f94"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile.hgface"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED131", "level": "error", "message": {"text": "[MINED131] pre-commit hook `https://github.com/astral-sh/ruff-pre-commit` pinned to mutable rev `v0.15.1`: `.pre-commit-config.yaml` references `https://github.com/astral-sh/ruff-pre-commit` at `rev: v0.15.1`. If `{rev}` is a branch or version tag, the repo owner can push new code there and `pre-commit install --install-hooks` will fetch it on every developer's machine."}, "properties": {"repobilityId": 143104, "scanner": "repobility-supply-chain", "fingerprint": "4469bbdddb19e11cdedd7bc2bbfc2a179070b8c221618f1dfc550a9a6be9263e", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "precommit-untrusted-repo", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|4469bbdddb19e11cdedd7bc2bbfc2a179070b8c221618f1dfc550a9a6be9263e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".pre-commit-config.yaml"}, "region": {"startLine": 3}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `heartexlabs/label-studio:latest` not pinned by digest: `FROM heartexlabs/label-studio:latest` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity."}, "properties": {"repobilityId": 143103, "scanner": "repobility-supply-chain", "fingerprint": "bb0ba0eab763611c04671e9f6525a1cb1c377f2fec38e1a29536a20245be0696", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "docker-from-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["dockerfile"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|bb0ba0eab763611c04671e9f6525a1cb1c377f2fec38e1a29536a20245be0696"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile.cloudrun"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED119", "level": "error", "message": {"text": "[MINED119] Dockerfile `ADD https://install.python-poetry.org`: Dockerfile `ADD <url>` downloads a remote artifact into the image with no integrity check. If the host or DNS is compromised between layers \u2014 or if the URL serves a different file later \u2014 malicious content gets baked into the image."}, "properties": {"repobilityId": 143102, "scanner": "repobility-supply-chain", "fingerprint": "97fb821fe8be6848f9c1aa2c5010030f917506bed2f1c90eb14c95d15f72279c", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "docker-add-remote-url", "owasp": "A08:2021", "cwe_ids": ["CWE-829", "CWE-494"], "languages": ["dockerfile"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|97fb821fe8be6848f9c1aa2c5010030f917506bed2f1c90eb14c95d15f72279c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile.development"}, "region": {"startLine": 39}}}]}, {"ruleId": "MINED119", "level": "error", "message": {"text": "[MINED119] Dockerfile `ADD https://install.python-poetry.org`: Dockerfile `ADD <url>` downloads a remote artifact into the image with no integrity check. If the host or DNS is compromised between layers \u2014 or if the URL serves a different file later \u2014 malicious content gets baked into the image."}, "properties": {"repobilityId": 143101, "scanner": "repobility-supply-chain", "fingerprint": "0da54b16639d2322504558864dda7401a868325bc255bae0d3f728ea74ff5890", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "docker-add-remote-url", "owasp": "A08:2021", "cwe_ids": ["CWE-829", "CWE-494"], "languages": ["dockerfile"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|0da54b16639d2322504558864dda7401a868325bc255bae0d3f728ea74ff5890"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 85}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `heartexlabs/label-studio:latest` not pinned by digest: `FROM heartexlabs/label-studio:latest` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity."}, "properties": {"repobilityId": 143100, "scanner": "repobility-supply-chain", "fingerprint": "e794e21c2b1c20c6d406e45f12dffa0848ba22b98d5a0662f2b994f18420bf6c", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "docker-from-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["dockerfile"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|e794e21c2b1c20c6d406e45f12dffa0848ba22b98d5a0662f2b994f18420bf6c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile.heroku"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED112", "level": "error", "message": {"text": "[MINED112] FastAPI PATCH core.utils.io.validate_upload_url has no auth: Handler `test_raises_for_local_urls_with_ssrf_protection_enabled` is registered with router/app.patch(...) but no Depends/Security parameter is declared and no auth marker appears in the function body."}, "properties": {"repobilityId": 143099, "scanner": "repobility-route-auth", "fingerprint": "e9f69a031fa60a436e9875e46a2cab9f13c290aa7ff1248681886caa7c4390c0", "category": "quality", "severity": "high", "confidence": 0.8, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "fastapi-destructive-unauth", "owasp": "A01:2021", "cwe_ids": ["CWE-306", "CWE-862"], "languages": ["python", "javascript"], "observations_count": 10455}, "scanner": "repobility-route-auth", "correlation_key": "fp|e9f69a031fa60a436e9875e46a2cab9f13c290aa7ff1248681886caa7c4390c0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/data_import/test_uploader.py"}, "region": {"startLine": 53}}}]}, {"ruleId": "MINED112", "level": "error", "message": {"text": "[MINED112] FastAPI PATCH core.utils.io.validate_upload_url has no auth: Handler `test_raises_for_unsafe_urls` is registered with router/app.patch(...) but no Depends/Security parameter is declared and no auth marker appears in the function body."}, "properties": {"repobilityId": 143098, "scanner": "repobility-route-auth", "fingerprint": "1304189cd70458111becc8e2260e7abf683c86d7ec8838f0fda154743a504ace", "category": "quality", "severity": "high", "confidence": 0.8, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "fastapi-destructive-unauth", "owasp": "A01:2021", "cwe_ids": ["CWE-306", "CWE-862"], "languages": ["python", "javascript"], "observations_count": 10455}, "scanner": "repobility-route-auth", "correlation_key": "fp|1304189cd70458111becc8e2260e7abf683c86d7ec8838f0fda154743a504ace"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/data_import/test_uploader.py"}, "region": {"startLine": 43}}}]}, {"ruleId": "MINED112", "level": "error", "message": {"text": "[MINED112] FastAPI PATCH ml.serializers.validate_upload_url has no auth: Handler `test_creating_activating_new_ml_backend` is registered with router/app.patch(...) but no Depends/Security parameter is declared and no auth marker appears in the function body."}, "properties": {"repobilityId": 143097, "scanner": "repobility-route-auth", "fingerprint": "cb216e88b4bbb9561527321f4b8a431b7581bfe33918244a4eb96d70680df41e", "category": "quality", "severity": "high", "confidence": 0.8, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "fastapi-destructive-unauth", "owasp": "A01:2021", "cwe_ids": ["CWE-306", "CWE-862"], "languages": ["python", "javascript"], "observations_count": 10455}, "scanner": "repobility-route-auth", "correlation_key": "fp|cb216e88b4bbb9561527321f4b8a431b7581bfe33918244a4eb96d70680df41e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/test_api.py"}, "region": {"startLine": 235}}}]}, {"ruleId": "MINED112", "level": "error", "message": {"text": "[MINED112] Django view `FSMEntityTransitionAPI` has destructive methods without auth: Class-based view `FSMEntityTransitionAPI` implements POST but no auth mixin / DRF permission_classes / request.user.is_authenticated check is visible."}, "properties": {"repobilityId": 143096, "scanner": "repobility-route-auth", "fingerprint": "dcd70a82aeeb8a6db500c696cd30a116634bd5d15ebdfbed5ba624c32aa2564c", "category": "quality", "severity": "high", "confidence": 0.8, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "fastapi-destructive-unauth", "owasp": "A01:2021", "cwe_ids": ["CWE-306", "CWE-862"], "languages": ["python", "javascript"], "observations_count": 10455}, "scanner": "repobility-route-auth", "correlation_key": "fp|dcd70a82aeeb8a6db500c696cd30a116634bd5d15ebdfbed5ba624c32aa2564c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/fsm/api.py"}, "region": {"startLine": 135}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_missing_text_in_labels: Test function `test_missing_text_in_labels` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 143089, "scanner": "repobility-ast-engine", "fingerprint": "aced4c134c962ef2a895a25c4a2018734b045c37772f934e1b2d5504e1ee7245", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|aced4c134c962ef2a895a25c4a2018734b045c37772f934e1b2d5504e1ee7245"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/sdk/test_prediction_validation.py"}, "region": {"startLine": 449}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_invalid_labels_structure: Test function `test_invalid_labels_structure` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 143088, "scanner": "repobility-ast-engine", "fingerprint": "5e61d29214b8df3e8a99daf77b791f0abe70a05dcbde2abe43955a4ac7bf09d8", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|5e61d29214b8df3e8a99daf77b791f0abe70a05dcbde2abe43955a4ac7bf09d8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/sdk/test_prediction_validation.py"}, "region": {"startLine": 422}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_invalid_textarea_value: Test function `test_invalid_textarea_value` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 143087, "scanner": "repobility-ast-engine", "fingerprint": "28ad9bb976f2c7782f07e52bbaf9d67b7aa72685e8b347753674da10074d9797", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|28ad9bb976f2c7782f07e52bbaf9d67b7aa72685e8b347753674da10074d9797"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/sdk/test_prediction_validation.py"}, "region": {"startLine": 400}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_multiple_regions_mixed_validity: Test function `test_multiple_regions_mixed_validity` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 143086, "scanner": "repobility-ast-engine", "fingerprint": "b91276c78d14ef075c7aa1b72697f6be3f33696f52989469b6786991aab19e7e", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|b91276c78d14ef075c7aa1b72697f6be3f33696f52989469b6786991aab19e7e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/sdk/test_prediction_validation.py"}, "region": {"startLine": 333}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_missing_value_field: Test function `test_missing_value_field` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 143085, "scanner": "repobility-ast-engine", "fingerprint": "f0161c51f3b44ad95f90379de3f3adfff1ddb6e11f3c15460d9d03a174dc923e", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|f0161c51f3b44ad95f90379de3f3adfff1ddb6e11f3c15460d9d03a174dc923e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/sdk/test_prediction_validation.py"}, "region": {"startLine": 300}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_invalid_labels_value: Test function `test_invalid_labels_value` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 143084, "scanner": "repobility-ast-engine", "fingerprint": "f2ecc49c6b0b4b58272dffdb1c0d65b047287f0385e3bde199400664a8e8dae6", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|f2ecc49c6b0b4b58272dffdb1c0d65b047287f0385e3bde199400664a8e8dae6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/sdk/test_prediction_validation.py"}, "region": {"startLine": 273}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_invalid_rating_value: Test function `test_invalid_rating_value` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 143083, "scanner": "repobility-ast-engine", "fingerprint": "ee02a8b251408d7330e0f609b058f6d13a6bb34c23381768496aea322202743b", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|ee02a8b251408d7330e0f609b058f6d13a6bb34c23381768496aea322202743b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/sdk/test_prediction_validation.py"}, "region": {"startLine": 251}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_invalid_choice_value: Test function `test_invalid_choice_value` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 143082, "scanner": "repobility-ast-engine", "fingerprint": "421e188328ff7a3286e39b2171a4ba035b62102ec177628d75ede6e58d5722ee", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|421e188328ff7a3286e39b2171a4ba035b62102ec177628d75ede6e58d5722ee"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/sdk/test_prediction_validation.py"}, "region": {"startLine": 229}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_type_mismatch: Test function `test_type_mismatch` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 143081, "scanner": "repobility-ast-engine", "fingerprint": "155dd7d75da14f27a4a4836fed0b72efdff423e5e67b4214d10610dc16bb601c", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|155dd7d75da14f27a4a4836fed0b72efdff423e5e67b4214d10610dc16bb601c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/sdk/test_prediction_validation.py"}, "region": {"startLine": 207}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_invalid_to_name: Test function `test_invalid_to_name` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 143080, "scanner": "repobility-ast-engine", "fingerprint": "fec85b884bc921c90a7b80773b359cf52f56300e9a185349e530f7ed3cc8566b", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|fec85b884bc921c90a7b80773b359cf52f56300e9a185349e530f7ed3cc8566b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/sdk/test_prediction_validation.py"}, "region": {"startLine": 185}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_invalid_from_name: Test function `test_invalid_from_name` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 143079, "scanner": "repobility-ast-engine", "fingerprint": "860b2e5271fc28d08a7a1f62da5a7a2fbaf1fd0f15b4304fe0e82cbfbf845139", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|860b2e5271fc28d08a7a1f62da5a7a2fbaf1fd0f15b4304fe0e82cbfbf845139"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/sdk/test_prediction_validation.py"}, "region": {"startLine": 163}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_missing_required_fields: Test function `test_missing_required_fields` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 143078, "scanner": "repobility-ast-engine", "fingerprint": "8820df80b25629df5e54d12be6c68bb09fe913d983610c50030492f779c17d21", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|8820df80b25629df5e54d12be6c68bb09fe913d983610c50030492f779c17d21"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/sdk/test_prediction_validation.py"}, "region": {"startLine": 143}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_update_last_activity_redis_success: Test function `test_update_last_activity_redis_success` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 143077, "scanner": "repobility-ast-engine", "fingerprint": "87f63598e8c510efaa3f33c1a897274cfb7da414eb4e35d3d72918580e375760", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|87f63598e8c510efaa3f33c1a897274cfb7da414eb4e35d3d72918580e375760"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/users/tests/test_redis_activity.py"}, "region": {"startLine": 196}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_all_urls_other_business: Test function `test_all_urls_other_business` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 143074, "scanner": "repobility-ast-engine", "fingerprint": "8363c2e540cc40e3585f969978dc7177a87dea64abdaae3e19099dfed186ec3c", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|8363c2e540cc40e3585f969978dc7177a87dea64abdaae3e19099dfed186ec3c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/test_endpoints.py"}, "region": {"startLine": 430}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_all_urls_owner: Test function `test_all_urls_owner` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 143073, "scanner": "repobility-ast-engine", "fingerprint": "d0484d7b23ea741c79799571f190ea2f69656047e5ad34045694f54da437955d", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|d0484d7b23ea741c79799571f190ea2f69656047e5ad34045694f54da437955d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/test_endpoints.py"}, "region": {"startLine": 422}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_task_re_completion_workflow: Test function `test_task_re_completion_workflow` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 143071, "scanner": "repobility-ast-engine", "fingerprint": "380e3b40d05daa5bd601ed185d2cc65e218a8247a6c90709ab89d636d3e99bd0", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|380e3b40d05daa5bd601ed185d2cc65e218a8247a6c90709ab89d636d3e99bd0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/test_fsm_lso_workflows.py"}, "region": {"startLine": 292}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_task_in_progress_workflow: Test function `test_task_in_progress_workflow` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 143070, "scanner": "repobility-ast-engine", "fingerprint": "a92a4b4a082f97859e1a6907345822997739d6560118c8b3260e70da671a9edc", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|a92a4b4a082f97859e1a6907345822997739d6560118c8b3260e70da671a9edc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/test_fsm_lso_workflows.py"}, "region": {"startLine": 260}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_task_completion_workflow: Test function `test_task_completion_workflow` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 143069, "scanner": "repobility-ast-engine", "fingerprint": "e211b28e30355f7c66fa487c2ef1115bd3bcd2289bc71c83d7734ad86aaadf6b", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|e211b28e30355f7c66fa487c2ef1115bd3bcd2289bc71c83d7734ad86aaadf6b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/test_fsm_lso_workflows.py"}, "region": {"startLine": 227}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_project_back_to_in_progress_workflow: Test function `test_project_back_to_in_progress_workflow` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 143068, "scanner": "repobility-ast-engine", "fingerprint": "63c3a4183524a5719530aa7104e6496bbd977fa1a1f83dfb18e99757a118cf84", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|63c3a4183524a5719530aa7104e6496bbd977fa1a1f83dfb18e99757a118cf84"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/test_fsm_lso_workflows.py"}, "region": {"startLine": 157}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_project_completion_workflow: Test function `test_project_completion_workflow` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 143067, "scanner": "repobility-ast-engine", "fingerprint": "de869f0a5a3165b95d1246407fa843ea49c961bbfb4e4998e8dd1ff1dd802822", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|de869f0a5a3165b95d1246407fa843ea49c961bbfb4e4998e8dd1ff1dd802822"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/test_fsm_lso_workflows.py"}, "region": {"startLine": 118}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_project_creation_workflow: Test function `test_project_creation_workflow` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 143066, "scanner": "repobility-ast-engine", "fingerprint": "a0637054ad789bc1a3e1ef2b7867acba02760c512ae66ae35ffaacc797d524a7", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|a0637054ad789bc1a3e1ef2b7867acba02760c512ae66ae35ffaacc797d524a7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/test_fsm_lso_workflows.py"}, "region": {"startLine": 63}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_preannotated_fields_missing_field: Test function `test_preannotated_fields_missing_field` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 143065, "scanner": "repobility-ast-engine", "fingerprint": "0619e4a9816d857381694cf29f2a0e6f68d0c33846b92405f2fd6ae7290f44eb", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|0619e4a9816d857381694cf29f2a0e6f68d0c33846b92405f2fd6ae7290f44eb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/test_prediction_validation.py"}, "region": {"startLine": 634}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_batch_update_exceeds_max_retries: Test function `test_batch_update_exceeds_max_retries` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 143064, "scanner": "repobility-ast-engine", "fingerprint": "6cc6cb41f89de83ebd96d3dca67628882ca539a8b519464e052afee393d96dc3", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|6cc6cb41f89de83ebd96d3dca67628882ca539a8b519464e052afee393d96dc3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/test_batch_update_deadlock.py"}, "region": {"startLine": 69}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_tag_attribute_validation_passes_when_tags_have_no_attrs_to_validate: Test function `test_tag_attribute_validation_passes_when_tags_have_no_attrs_to_validate` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 143063, "scanner": "repobility-ast-engine", "fingerprint": "fb06613b78861b0f2194297645b82ceda63f0b518314977f7121764829acdd5d", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|fb06613b78861b0f2194297645b82ceda63f0b518314977f7121764829acdd5d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/test_config_validation.py"}, "region": {"startLine": 275}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_tag_attribute_validation_passes_when_all_tags_valid: Test function `test_tag_attribute_validation_passes_when_all_tags_valid` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 143062, "scanner": "repobility-ast-engine", "fingerprint": "f09d5e9adc9b93639b27054e296de6a64274bda18fb8917f82cacdfb2192d748", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|f09d5e9adc9b93639b27054e296de6a64274bda18fb8917f82cacdfb2192d748"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tests/test_config_validation.py"}, "region": {"startLine": 268}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.format` used but never assigned in __init__: Method `read_tasks` of class `FileUpload` reads `self.format`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 143038, "scanner": "repobility-ast-engine", "fingerprint": "4f42fbc6186621c08f1f6c5ac2944f32ecc772b2bb005cd3f11347217c856dcd", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|4f42fbc6186621c08f1f6c5ac2944f32ecc772b2bb005cd3f11347217c856dcd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/models.py"}, "region": {"startLine": 253}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.format` used but never assigned in __init__: Method `format_could_be_tasks_list` of class `FileUpload` reads `self.format`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 143037, "scanner": "repobility-ast-engine", "fingerprint": "adf8192b6989fccaccf90379f75d2d3bde4313a75656a44d5ef16fd6a54b191e", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|adf8192b6989fccaccf90379f75d2d3bde4313a75656a44d5ef16fd6a54b191e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/models.py"}, "region": {"startLine": 250}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.url` used but never assigned in __init__: Method `read_task_from_uploaded_file` of class `FileUpload` reads `self.url`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 143036, "scanner": "repobility-ast-engine", "fingerprint": "6af71ef31fd4874d4976b5d1335c1ec021f7ce07e3f66c7c993c6128fdedbf1a", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|6af71ef31fd4874d4976b5d1335c1ec021f7ce07e3f66c7c993c6128fdedbf1a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/models.py"}, "region": {"startLine": 245}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.filepath` used but never assigned in __init__: Method `read_task_from_uploaded_file` of class `FileUpload` reads `self.filepath`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 143035, "scanner": "repobility-ast-engine", "fingerprint": "1e2e478a13024bc032ea33f01d389ea7e8461f20d1bd4b817e47c5dc220e666d", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|1e2e478a13024bc032ea33f01d389ea7e8461f20d1bd4b817e47c5dc220e666d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/models.py"}, "region": {"startLine": 243}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.filepath` used but never assigned in __init__: Method `read_task_from_uploaded_file` of class `FileUpload` reads `self.filepath`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 143034, "scanner": "repobility-ast-engine", "fingerprint": "abd0ed12e1fdf7155e5523b9b6cb44d902510986cadc69ed4fd59c6f8586b6f5", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|abd0ed12e1fdf7155e5523b9b6cb44d902510986cadc69ed4fd59c6f8586b6f5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/models.py"}, "region": {"startLine": 241}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.filepath` used but never assigned in __init__: Method `read_task_from_hypertext_body` of class `FileUpload` reads `self.filepath`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 143033, "scanner": "repobility-ast-engine", "fingerprint": "b45f4d9e5fcdc7f37393e89ca0302f85d85d3a8f04e37d5ba09c4a2716e17e15", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|b45f4d9e5fcdc7f37393e89ca0302f85d85d3a8f04e37d5ba09c4a2716e17e15"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/models.py"}, "region": {"startLine": 235}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.content` used but never assigned in __init__: Method `read_task_from_hypertext_body` of class `FileUpload` reads `self.content`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 143032, "scanner": "repobility-ast-engine", "fingerprint": "acd82c8c202ed726935ee749e1b3491cf1d032414a83943ecf2cdbec919058c1", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|acd82c8c202ed726935ee749e1b3491cf1d032414a83943ecf2cdbec919058c1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/models.py"}, "region": {"startLine": 236}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.file_name` used but never assigned in __init__: Method `read_tasks_list_from_json_streaming` of class `FileUpload` reads `self.file_name`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 143031, "scanner": "repobility-ast-engine", "fingerprint": "7b568b5bf3fe6de8eb61fb5e5295ea37ece4cd8d7e211820c1ed01a0ba110d27", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|7b568b5bf3fe6de8eb61fb5e5295ea37ece4cd8d7e211820c1ed01a0ba110d27"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/models.py"}, "region": {"startLine": 218}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._format_task_for_json_streaming` used but never assigned in __init__: Method `read_tasks_list_from_json_streaming` of class `FileUpload` reads `self._format_task_for_json_streaming`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 143030, "scanner": "repobility-ast-engine", "fingerprint": "1607986bcb409f5ce45b51bd60e006cc906def3692891a87adb791f2d933ff5d", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|1607986bcb409f5ce45b51bd60e006cc906def3692891a87adb791f2d933ff5d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/models.py"}, "region": {"startLine": 206}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._format_task_for_json_streaming` used but never assigned in __init__: Method `read_tasks_list_from_json_streaming` of class `FileUpload` reads `self._format_task_for_json_streaming`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 143029, "scanner": "repobility-ast-engine", "fingerprint": "1621f5bac228d520c3e7a6c25bfc5f81b2d12bc8a8575d247a0a34befe93a005", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|1621f5bac228d520c3e7a6c25bfc5f81b2d12bc8a8575d247a0a34befe93a005"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/models.py"}, "region": {"startLine": 193}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.filepath` used but never assigned in __init__: Method `read_tasks_list_from_json_streaming` of class `FileUpload` reads `self.filepath`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 143028, "scanner": "repobility-ast-engine", "fingerprint": "562c4b51a03dada0b197e3fe4ef43291ccfceaa1a9cae20bbcf8f343640faa54", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|562c4b51a03dada0b197e3fe4ef43291ccfceaa1a9cae20bbcf8f343640faa54"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/models.py"}, "region": {"startLine": 171}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.filepath` used but never assigned in __init__: Method `read_tasks_list_from_json` of class `FileUpload` reads `self.filepath`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 143027, "scanner": "repobility-ast-engine", "fingerprint": "f52fae148eff809271b141748414ee8ddd23d45e361cbc0c421e2e5f82e6d192", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|f52fae148eff809271b141748414ee8ddd23d45e361cbc0c421e2e5f82e6d192"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/models.py"}, "region": {"startLine": 151}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.content` used but never assigned in __init__: Method `read_tasks_list_from_json` of class `FileUpload` reads `self.content`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 143026, "scanner": "repobility-ast-engine", "fingerprint": "fd3fa2abecc60146a8b6358da9ce5542e90f027981858f35f541d4b081672c87", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|fd3fa2abecc60146a8b6358da9ce5542e90f027981858f35f541d4b081672c87"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/models.py"}, "region": {"startLine": 153}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.content` used but never assigned in __init__: Method `read_tasks_list_from_txt` of class `FileUpload` reads `self.content`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 143025, "scanner": "repobility-ast-engine", "fingerprint": "bb62256b2365a6ad1a5f40c134fcc7732f936f967bc2ef0072811feabd9c2f18", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|bb62256b2365a6ad1a5f40c134fcc7732f936f967bc2ef0072811feabd9c2f18"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/models.py"}, "region": {"startLine": 146}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.filepath` used but never assigned in __init__: Method `read_tasks_list_from_txt` of class `FileUpload` reads `self.filepath`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 143024, "scanner": "repobility-ast-engine", "fingerprint": "3917107846c1c81be1145a3de459c5c994251b2645055b2a06a6a07d334d95c3", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|3917107846c1c81be1145a3de459c5c994251b2645055b2a06a6a07d334d95c3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/models.py"}, "region": {"startLine": 145}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.filepath` used but never assigned in __init__: Method `read_tasks_list_from_tsv` of class `FileUpload` reads `self.filepath`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 143023, "scanner": "repobility-ast-engine", "fingerprint": "b8c758c3865bde0679a7be1160cb0fb75f07fab775b793c617b68fbc8a92b919", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|b8c758c3865bde0679a7be1160cb0fb75f07fab775b793c617b68fbc8a92b919"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/models.py"}, "region": {"startLine": 139}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.filepath` used but never assigned in __init__: Method `read_tasks_list_from_csv` of class `FileUpload` reads `self.filepath`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 143022, "scanner": "repobility-ast-engine", "fingerprint": "b80870fc235f1800d57f14b0da212a45c9027193bce81f18dd326a76dd9e1be5", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|b80870fc235f1800d57f14b0da212a45c9027193bce81f18dd326a76dd9e1be5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/models.py"}, "region": {"startLine": 126}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._detect_csv_separator` used but never assigned in __init__: Method `read_tasks_list_from_csv` of class `FileUpload` reads `self._detect_csv_separator`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 143021, "scanner": "repobility-ast-engine", "fingerprint": "5a7c462611a833220ba16c5ce81ae3c57d1f67112c9843f8e38d2646234c2c39", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|5a7c462611a833220ba16c5ce81ae3c57d1f67112c9843f8e38d2646234c2c39"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/models.py"}, "region": {"startLine": 127}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.filepath` used but never assigned in __init__: Method `format` of class `FileUpload` reads `self.filepath`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 143020, "scanner": "repobility-ast-engine", "fingerprint": "fc5fc045c2c8a2ecc00be4136821f8bffb36a57cde1b0d79ab6fbbe38b4e6a23", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|fc5fc045c2c8a2ecc00be4136821f8bffb36a57cde1b0d79ab6fbbe38b4e6a23"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/models.py"}, "region": {"startLine": 61}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.request` used but never assigned in __init__: Method `get_queryset` of class `WebhookAPI` reads `self.request`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 143017, "scanner": "repobility-ast-engine", "fingerprint": "ca99afe1cdd669f3401413bbbfac6fdf2a9db2a6a989640cab3b3e394dc4ba6c", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|ca99afe1cdd669f3401413bbbfac6fdf2a9db2a6a989640cab3b3e394dc4ba6c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/webhooks/api.py"}, "region": {"startLine": 144}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.request` used but never assigned in __init__: Method `get_serializer_class` of class `WebhookAPI` reads `self.request`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 143016, "scanner": "repobility-ast-engine", "fingerprint": "81a77316a372622fb086a98f3a9326a0ae3664aa340f6996de972d326b810556", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|81a77316a372622fb086a98f3a9326a0ae3664aa340f6996de972d326b810556"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/webhooks/api.py"}, "region": {"startLine": 139}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.request` used but never assigned in __init__: Method `perform_create` of class `WebhookListAPI` reads `self.request`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 143015, "scanner": "repobility-ast-engine", "fingerprint": "98bbfc9113e395908ec2a47fccdb310c47074cfd448fc7e6f77169cff8f69e3d", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|98bbfc9113e395908ec2a47fccdb310c47074cfd448fc7e6f77169cff8f69e3d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/webhooks/api.py"}, "region": {"startLine": 74}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.request` used but never assigned in __init__: Method `perform_create` of class `WebhookListAPI` reads `self.request`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 143014, "scanner": "repobility-ast-engine", "fingerprint": "b9e063284f33e9a1582c3ebe41436ef0ac14951b4bf308b7016897f0ff369e06", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|b9e063284f33e9a1582c3ebe41436ef0ac14951b4bf308b7016897f0ff369e06"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/webhooks/api.py"}, "region": {"startLine": 76}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.request` used but never assigned in __init__: Method `get_queryset` of class `WebhookListAPI` reads `self.request`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 143013, "scanner": "repobility-ast-engine", "fingerprint": "89d39b66e673e9bb8acf4a33a31418f2167edcfd899b47acaf539bf1de3a5306", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|89d39b66e673e9bb8acf4a33a31418f2167edcfd899b47acaf539bf1de3a5306"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/webhooks/api.py"}, "region": {"startLine": 70}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.get_actions` used but never assigned in __init__: Method `set_actions` of class `Webhook` reads `self.get_actions`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 143012, "scanner": "repobility-ast-engine", "fingerprint": "ee8093011145bd454cdaff62f9cd9749f40cdfdd1d1ee8652419737e1666b0ea", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|ee8093011145bd454cdaff62f9cd9749f40cdfdd1d1ee8652419737e1666b0ea"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/webhooks/models.py"}, "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 /export/s3/<int:pk>."}, "properties": {"repobilityId": 142978, "scanner": "repobility-access-control", "fingerprint": "ca3fb4800738a2b1b367e38808989611147c0de2c7664066b7c907f8e825cc12", "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": "/export/s3/<int:pk>", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|token|101|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/urls.py"}, "region": {"startLine": 101}}}]}, {"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 /s3/<int:pk>/sync."}, "properties": {"repobilityId": 142977, "scanner": "repobility-access-control", "fingerprint": "4a0af677b902a4fdc66f351942682aa9319608a0ee719309e8effe6711554eb4", "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": "/s3/<int:pk>/sync", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|token|92|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/urls.py"}, "region": {"startLine": 92}}}]}, {"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 /s3/<int:pk>."}, "properties": {"repobilityId": 142976, "scanner": "repobility-access-control", "fingerprint": "2a54d849ea6113cd3041c997c920d9e0098ef2ec57e53099b70a1cd54f880ccf", "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": "/s3/<int:pk>", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|token|91|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/urls.py"}, "region": {"startLine": 91}}}]}, {"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 /<int:pk>/file-uploads."}, "properties": {"repobilityId": 142975, "scanner": "repobility-access-control", "fingerprint": "bdf3cc184cd58e77b814a8450b734d7d4692b7a88b67f4e85e5c192670c8c935", "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": "/<int:pk>/file-uploads", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|token|17|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/urls.py"}, "region": {"startLine": 17}}}]}, {"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 /<int:pk>/reimport."}, "properties": {"repobilityId": 142974, "scanner": "repobility-access-control", "fingerprint": "bdfd6bcda7fd5c321a131697f0ea4961db1bf880ff30b37ec554f2f06fa6f2ec", "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": "/<int:pk>/reimport", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|token|16|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/urls.py"}, "region": {"startLine": 16}}}]}, {"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 /<int:pk>/import/predictions."}, "properties": {"repobilityId": 142973, "scanner": "repobility-access-control", "fingerprint": "f910bbe6f4b6b8ba8f01e53e4889dd1c0d859fdc4303e06836bb645024ff0829", "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": "/<int:pk>/import/predictions", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|token|15|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/urls.py"}, "region": {"startLine": 15}}}]}, {"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 /<int:pk>/import."}, "properties": {"repobilityId": 142972, "scanner": "repobility-access-control", "fingerprint": "5ffab51078f67164c7004d188284e94deedc67c02ac1958bbcac840dd753a884", "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": "/<int:pk>/import", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|token|14|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/urls.py"}, "region": {"startLine": 14}}}]}, {"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 /<int:pk>/tasks/bulk/."}, "properties": {"repobilityId": 142971, "scanner": "repobility-access-control", "fingerprint": "a5adf5db540ea0bbb57d636e4d26996e83457367fa40399bab5f03080d53b0c0", "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": "/<int:pk>/tasks/bulk/", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|token|13|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/urls.py"}, "region": {"startLine": 13}}}]}, {"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 /file-upload/<int:pk>."}, "properties": {"repobilityId": 142970, "scanner": "repobility-access-control", "fingerprint": "e31e3e06386e3d0531ad3e0fb1a908f9019e00cf958bb7bc10a97de51c098347", "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": "/file-upload/<int:pk>", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|token|9|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_import/urls.py"}, "region": {"startLine": 9}}}]}, {"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 /<int:pk>/."}, "properties": {"repobilityId": 142969, "scanner": "repobility-access-control", "fingerprint": "2cb2fc8651353c2078170583cd82a0ceca675e3f5b0d4eee33171b868b935a75", "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": "/<int:pk>/", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|token|10|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/webhooks/urls.py"}, "region": {"startLine": 10}}}]}, {"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": 142918, "scanner": "repobility-threat-engine", "fingerprint": "e75475778f232aaf762a1f14874c9bb1029f88cb74fb58a1d45164a78a53720b", "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(d3Token", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC083", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|e75475778f232aaf762a1f14874c9bb1029f88cb74fb58a1d45164a78a53720b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/playground/src/utils/date.ts"}, "region": {"startLine": 44}}}]}, {"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": 142917, "scanner": "repobility-threat-engine", "fingerprint": "ebedbc212af589a1ccca37765bbeca8e5aceac602696ce6cc5b5d7aea800fd91", "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|ebedbc212af589a1ccca37765bbeca8e5aceac602696ce6cc5b5d7aea800fd91"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/src/components/Form/Validation/Validators.js"}, "region": {"startLine": 11}}}]}, {"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": 142909, "scanner": "repobility-threat-engine", "fingerprint": "e60ddb67ac476e45312232c9dd2e3d141f7f828ab632f3427b2cb9b8413f6da3", "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|e60ddb67ac476e45312232c9dd2e3d141f7f828ab632f3427b2cb9b8413f6da3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/src/pages/CreateProject/Config/Template.js"}, "region": {"startLine": 18}}}]}, {"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": 142908, "scanner": "repobility-threat-engine", "fingerprint": "7a44967b35a8039357ae638929943299b309284f05787056a54f55a8a3116d70", "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|7a44967b35a8039357ae638929943299b309284f05787056a54f55a8a3116d70"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/src/app/AsyncPage/AsyncPage.jsx"}, "region": {"startLine": 14}}}]}, {"ruleId": "MINED040", "level": "error", "message": {"text": "[MINED040] Python Yaml Load Unsafe: yaml.load(stream) without SafeLoader can deserialize arbitrary classes."}, "properties": {"repobilityId": 142905, "scanner": "repobility-threat-engine", "fingerprint": "cc6f363addf4d0f6ea6c9ef24258a66b7fb046af9ec9fbc95c4cfab2b7b43b3f", "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": "python-yaml-load-unsafe", "owasp": null, "cwe_ids": ["CWE-502"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347991+00:00", "triaged_in_corpus": 15, "observations_count": 1487, "ai_coder_pattern_id": 120}, "scanner": "repobility-threat-engine", "correlation_key": "fp|cc6f363addf4d0f6ea6c9ef24258a66b7fb046af9ec9fbc95c4cfab2b7b43b3f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/update_ml_tutorials.py"}, "region": {"startLine": 89}}}]}, {"ruleId": "SEC013", "level": "error", "message": {"text": "[SEC013] Path Traversal \u2014 User Input in File Path: User-controlled input used in file path without sanitization. Allows reading arbitrary files."}, "properties": {"repobilityId": 142904, "scanner": "repobility-threat-engine", "fingerprint": "5c4029d68d5eddc06f61c3e5334613223894b3358076a3df90ab4c941a081463", "category": "path_traversal", "severity": "high", "confidence": 0.8, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "User-controlled input detected in file path construction", "evidence": {"match": "open(INPUT", "reason": "User-controlled input detected in file path construction", "rule_id": "SEC013", "scanner": "repobility-threat-engine", "confidence": 0.8, "correlation_key": "code|path_traversal|token|13|sec013"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/split_import_json.py"}, "region": {"startLine": 13}}}]}, {"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": 142903, "scanner": "repobility-threat-engine", "fingerprint": "f5b063631f2f88d7354366714ae99b5eb826f6254d9ebeaed962a98e936230a7", "category": "open_redirect", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "redirect(redirect_url)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC030", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|f5b063631f2f88d7354366714ae99b5eb826f6254d9ebeaed962a98e936230a7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/users/views.py"}, "region": {"startLine": 35}}}]}, {"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": 142902, "scanner": "repobility-threat-engine", "fingerprint": "601bee5b528dd35cfbf665fa46523c1222ccebbdeb986c69612e1860053d640a", "category": "open_redirect", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "redirect(redirect_url)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC030", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|601bee5b528dd35cfbf665fa46523c1222ccebbdeb986c69612e1860053d640a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/users/functions/common.py"}, "region": {"startLine": 84}}}]}, {"ruleId": "MINED014", "level": "error", "message": {"text": "[MINED014] Disabled Tls Verify: verify=False in requests, rejectUnauthorized:false in node, InsecureSkipVerify:true in Go."}, "properties": {"repobilityId": 142897, "scanner": "repobility-threat-engine", "fingerprint": "7a35ae286d47fc90c8525f01a80f8d83e1327ef253f27da2e03bc8f528b7dafb", "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|7a35ae286d47fc90c8525f01a80f8d83e1327ef253f27da2e03bc8f528b7dafb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/jwt_auth/models.py"}, "region": {"startLine": 129}}}]}, {"ruleId": "MINED004", "level": "error", "message": {"text": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums)."}, "properties": {"repobilityId": 142894, "scanner": "repobility-threat-engine", "fingerprint": "0d5917e1620fd53669bea656a8fe51a1a5ebf95fa3671b11ebdd4a71d4af0296", "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|0d5917e1620fd53669bea656a8fe51a1a5ebf95fa3671b11ebdd4a71d4af0296"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_export/serializers.py"}, "region": {"startLine": 139}}}]}, {"ruleId": "MINED004", "level": "error", "message": {"text": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums)."}, "properties": {"repobilityId": 142893, "scanner": "repobility-threat-engine", "fingerprint": "954007e3c7a524c5c346807a85f36aeb47b0acb0f9f26f7b02a047ae495b7fe9", "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|954007e3c7a524c5c346807a85f36aeb47b0acb0f9f26f7b02a047ae495b7fe9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/data_export/models.py"}, "region": {"startLine": 51}}}]}, {"ruleId": "SEC078", "level": "error", "message": {"text": "[SEC078] Python: requests without timeout: requests.get/post without a timeout will hang indefinitely on a non-responsive server, causing thread exhaustion and ReDoS. Ported from bandit B113 (Apache-2.0). NOTE: this regex is heuristic; a real AST check is preferred for accuracy."}, "properties": {"repobilityId": 142875, "scanner": "repobility-threat-engine", "fingerprint": "23fd36cfb33ac92a4d55731305e0da946daa77e07798df829a2a0a03bf933680", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "requests.post(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC078", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|23fd36cfb33ac92a4d55731305e0da946daa77e07798df829a2a0a03bf933680"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/webhooks/utils.py"}, "region": {"startLine": 55}}}]}, {"ruleId": "SEC078", "level": "error", "message": {"text": "[SEC078] Python: requests without timeout: requests.get/post without a timeout will hang indefinitely on a non-responsive server, causing thread exhaustion and ReDoS. Ported from bandit B113 (Apache-2.0). NOTE: this regex is heuristic; a real AST check is preferred for accuracy."}, "properties": {"repobilityId": 142874, "scanner": "repobility-threat-engine", "fingerprint": "c47b65b3313ad06f834c10ab70d8b96c22bfa8ea83e9bf04172f45989ee092f3", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "requests.get(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC078", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|c47b65b3313ad06f834c10ab70d8b96c22bfa8ea83e9bf04172f45989ee092f3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/views.py"}, "region": {"startLine": 158}}}]}, {"ruleId": "MINED001", "level": "error", "message": {"text": "[MINED001] Bare Except Pass: except: pass or except Exception: pass \u2014 silently swallows everything including KeyboardInterrupt and bugs."}, "properties": {"repobilityId": 142869, "scanner": "repobility-threat-engine", "fingerprint": "b2771ee8d47d4c057bbe5f468235b28f102362f37be166713113f092d66da9b5", "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": "bare-except-pass", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347744+00:00", "triaged_in_corpus": 15, "observations_count": 1550824, "ai_coder_pattern_id": 6}, "scanner": "repobility-threat-engine", "correlation_key": "fp|b2771ee8d47d4c057bbe5f468235b28f102362f37be166713113f092d66da9b5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/utils/exceptions.py"}, "region": {"startLine": 7}}}]}, {"ruleId": "MINED001", "level": "error", "message": {"text": "[MINED001] Bare Except Pass: except: pass or except Exception: pass \u2014 silently swallows everything including KeyboardInterrupt and bugs."}, "properties": {"repobilityId": 142868, "scanner": "repobility-threat-engine", "fingerprint": "a422367e3af6b53ebf872a941f61f6a35b9b77dcadbd7dfa0a87f159d6d91bc8", "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": "bare-except-pass", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347744+00:00", "triaged_in_corpus": 15, "observations_count": 1550824, "ai_coder_pattern_id": 6}, "scanner": "repobility-threat-engine", "correlation_key": "fp|a422367e3af6b53ebf872a941f61f6a35b9b77dcadbd7dfa0a87f159d6d91bc8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/utils/db.py"}, "region": {"startLine": 177}}}]}, {"ruleId": "MINED001", "level": "error", "message": {"text": "[MINED001] Bare Except Pass: except: pass or except Exception: pass \u2014 silently swallows everything including KeyboardInterrupt and bugs."}, "properties": {"repobilityId": 142867, "scanner": "repobility-threat-engine", "fingerprint": "da75b0a1d6ff396530026e7afa42d328135dffe103dee779adf6d6f381a4241c", "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": "bare-except-pass", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347744+00:00", "triaged_in_corpus": 15, "observations_count": 1550824, "ai_coder_pattern_id": 6}, "scanner": "repobility-threat-engine", "correlation_key": "fp|da75b0a1d6ff396530026e7afa42d328135dffe103dee779adf6d6f381a4241c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/urls.py"}, "region": {"startLine": 119}}}]}, {"ruleId": "SEC004", "level": "error", "message": {"text": "[SEC004] SQL Injection Risk: String interpolation in SQL execution. Allows SQL injection."}, "properties": {"repobilityId": 142860, "scanner": "repobility-threat-engine", "fingerprint": "ca77518d7047e4459b44d88bf9c35461d394101ec69a83044b9fd1851358172a", "category": "injection", "severity": "high", "confidence": 0.5, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "SQL string interpolation found, but user-controlled taint was not proven from local context.", "evidence": {"match": ".execute(f'SELECT", "reason": "SQL string interpolation found, but user-controlled taint was not proven from local context.", "rule_id": "SEC004", "scanner": "repobility-threat-engine", "confidence": 0.5, "correlation_key": "code|injection|token|55|sec004"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/management/commands/locked_migrate.py"}, "region": {"startLine": 55}}}]}, {"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": 142854, "scanner": "repobility-threat-engine", "fingerprint": "54bdb69e3c1f2df19375989a1d3b2cf74a376eb6499c723f269785698e29a82b", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "task_annotation.save()", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|54bdb69e3c1f2df19375989a1d3b2cf74a376eb6499c723f269785698e29a82b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/old_ls_migration.py"}, "region": {"startLine": 64}}}]}, {"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": 142853, "scanner": "repobility-threat-engine", "fingerprint": "f0b6ac2bc444d5d93bb89bcb00d1ff22e9a017a2335387a1d86d81addaf7fad9", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "migration.save()", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|f0b6ac2bc444d5d93bb89bcb00d1ff22e9a017a2335387a1d86d81addaf7fad9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/migration_helpers.py"}, "region": {"startLine": 25}}}]}, {"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": 142852, "scanner": "repobility-threat-engine", "fingerprint": "8e35bee4a62093d7d3527854fa73484aea8e19bc46178969f07fefde8d31674e", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "env_ff.update(env_fflag)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|8e35bee4a62093d7d3527854fa73484aea8e19bc46178969f07fefde8d31674e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/feature_flags/base.py"}, "region": {"startLine": 130}}}]}, {"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": 142836, "scanner": "repobility-threat-engine", "fingerprint": "7a1373bc9eb9ed5399f8279d9c9f8b0705393cbcbc8f15b0077dd0cdc60f6dc4", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "map((s) => `#${s}", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|7a1373bc9eb9ed5399f8279d9c9f8b0705393cbcbc8f15b0077dd0cdc60f6dc4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/apps/labelstudio/src/utils/colors.js"}, "region": {"startLine": 3}}}]}, {"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": 142835, "scanner": "repobility-threat-engine", "fingerprint": "a9ab309324135d818af64fe1145aeb6cb3e3d5c042ec60ffd9ef0f681c06e437", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "map(\n      (page) =>\n        `<div class=\"release-note\"><button class=\"release-note-toggle\"></button", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|a9ab309324135d818af64fe1145aeb6cb3e3d5c042ec60ffd9ef0f681c06e437"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docs/scripts/release-notes.js"}, "region": {"startLine": 27}}}]}, {"ruleId": "SEC100", "level": "error", "message": {"text": "[SEC100] CORS permissive Access-Control-Allow-Origin: *: Permissive CORS policy (`*` origin) allows any website to make authenticated cross-origin requests. Especially dangerous when combined with `Access-Control-Allow-Credentials: true`."}, "properties": {"repobilityId": 142830, "scanner": "repobility-threat-engine", "fingerprint": "a2d952ab4c53413b0fab3eea1a5b8c3573a1e75795bba3f1a77c2fa79522acd0", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "\"Access-Control-Allow-Origin\": \"*\"", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC100", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|a2d952ab4c53413b0fab3eea1a5b8c3573a1e75795bba3f1a77c2fa79522acd0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "web/webpack.config.js"}, "region": {"startLine": 350}}}]}, {"ruleId": "SEC100", "level": "error", "message": {"text": "[SEC100] CORS permissive Access-Control-Allow-Origin: *: Permissive CORS policy (`*` origin) allows any website to make authenticated cross-origin requests. Especially dangerous when combined with `Access-Control-Allow-Credentials: true`."}, "properties": {"repobilityId": 142829, "scanner": "repobility-threat-engine", "fingerprint": "5e487301034cbbb9c360f63b0062df019fb613c815b7118bb28d7f71ac0353aa", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "\"Access-Control-Allow-Origin\": \"*\"", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC100", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|5e487301034cbbb9c360f63b0062df019fb613c815b7118bb28d7f71ac0353aa"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docs/netlify/functions/gather-feedback/gather-feedback.js"}, "region": {"startLine": 17}}}]}, {"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": 142827, "scanner": "repobility-threat-engine", "fingerprint": "77f1827e9af85ea4189e16b4416e22e71d4623b955fe14b058e6d271b46e9843", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "url(s", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|77f1827e9af85ea4189e16b4416e22e71d4623b955fe14b058e6d271b46e9843"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/storage.py"}, "region": {"startLine": 62}}}]}, {"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": 142826, "scanner": "repobility-threat-engine", "fingerprint": "23246f4dc6a46f54a2943d2a168c8ca4847ae2b755a88731d81f8a0ed3e49888", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "Url(e", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|23246f4dc6a46f54a2943d2a168c8ca4847ae2b755a88731d81f8a0ed3e49888"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/static/js/sw.js"}, "region": {"startLine": 40}}}]}, {"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": 142825, "scanner": "repobility-threat-engine", "fingerprint": "e6ccc809b7d32d035bd7150b2b61749d30927ffcdd0d074fc7ebd4fa23c9a917", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "URL(r", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|e6ccc809b7d32d035bd7150b2b61749d30927ffcdd0d074fc7ebd4fa23c9a917"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docs/netlify/edge-functions/content-negociation.ts"}, "region": {"startLine": 8}}}]}, {"ruleId": "MINED012", "level": "error", "message": {"text": "[MINED012] Curl Pipe Bash: curl ... | sh / bash \u2014 runs unverified network code."}, "properties": {"repobilityId": 142824, "scanner": "repobility-threat-engine", "fingerprint": "8237d706c357dcbe0db5cbce6e3646896c647dc3200633dd34633bf939ad1d19", "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": "curl-pipe-bash", "owasp": "A08:2021", "cwe_ids": ["CWE-494"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347926+00:00", "triaged_in_corpus": 15, "observations_count": 135001, "ai_coder_pattern_id": 25}, "scanner": "repobility-threat-engine", "correlation_key": "fp|8237d706c357dcbe0db5cbce6e3646896c647dc3200633dd34633bf939ad1d19"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "deploy/install_npm.sh"}, "region": {"startLine": 10}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.ACTIONS_STEP_DEBUG` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.ACTIONS_STEP_DEBUG }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 143150, "scanner": "repobility-supply-chain", "fingerprint": "410062cddb3bada8c090fd1bcefe6ffabf048ef8e58ea76642b6ee9eba5c3b71", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|410062cddb3bada8c090fd1bcefe6ffabf048ef8e58ea76642b6ee9eba5c3b71"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/submodules-validator.yml"}, "region": {"startLine": 19}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GIT_PAT` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GIT_PAT }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 143149, "scanner": "repobility-supply-chain", "fingerprint": "b0d946e358bd675dad68051cf17fa46464856169b0421e012e5615471965aaee", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|b0d946e358bd675dad68051cf17fa46464856169b0421e012e5615471965aaee"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/validator-poetry-lock.yml"}, "region": {"startLine": 32}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.ACTIONS_STEP_DEBUG` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.ACTIONS_STEP_DEBUG }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 143148, "scanner": "repobility-supply-chain", "fingerprint": "716db0242dbb30bb98c8bfc8beacffd39c66e8b895c0b2c4e206a4677d77f740", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|716db0242dbb30bb98c8bfc8beacffd39c66e8b895c0b2c4e206a4677d77f740"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/validator-poetry-lock.yml"}, "region": {"startLine": 17}}}]}, {"ruleId": "MINED125", "level": "error", "message": {"text": "[MINED125] GHA script injection via github.event.pull_request.head.ref in run-step: `run:` step interpolates ${{ github.event.pull_request.head.ref }} directly into shell. PR title/body/branch/comment fields are attacker-controllable."}, "properties": {"repobilityId": 143145, "scanner": "repobility-supply-chain", "fingerprint": "6186d55b97b8ce02211167177e92e50bbb6d7dea1cf9afb08ce5073f8d0233dc", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-script-injection", "owasp": "A03:2021", "cwe_ids": ["CWE-78", "CWE-94"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|6186d55b97b8ce02211167177e92e50bbb6d7dea1cf9afb08ce5073f8d0233dc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cancel_cicd_pipeline.yml"}, "region": {"startLine": 21}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GIT_PAT` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GIT_PAT }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 143144, "scanner": "repobility-supply-chain", "fingerprint": "87c6d88d344bde994b34344972acd21b1b9d46bdc02e71306d2718527b492d10", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|87c6d88d344bde994b34344972acd21b1b9d46bdc02e71306d2718527b492d10"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/validator-poetry-version.yml"}, "region": {"startLine": 29}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.ACTIONS_STEP_DEBUG` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.ACTIONS_STEP_DEBUG }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 143143, "scanner": "repobility-supply-chain", "fingerprint": "4f69e15ff63aa26ad7011244cb0ca18382f38216a5ba42cff121d837379085cf", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|4f69e15ff63aa26ad7011244cb0ca18382f38216a5ba42cff121d837379085cf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/validator-poetry-version.yml"}, "region": {"startLine": 17}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GIT_PAT` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GIT_PAT }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 143139, "scanner": "repobility-supply-chain", "fingerprint": "5a2cf7d9825462ce76efbdacbf0d8dc7f6497eb9e9fa64e79fbf91f0d6948919", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|5a2cf7d9825462ce76efbdacbf0d8dc7f6497eb9e9fa64e79fbf91f0d6948919"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cicd_pipeline.yml"}, "region": {"startLine": 510}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GIT_PAT` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GIT_PAT }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 143138, "scanner": "repobility-supply-chain", "fingerprint": "1dd8b65a6eaeeafd989339ea5f8edf5bb005158bce20964ec9a8d0467ee3f38c", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|1dd8b65a6eaeeafd989339ea5f8edf5bb005158bce20964ec9a8d0467ee3f38c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cicd_pipeline.yml"}, "region": {"startLine": 411}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.JIRA_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.JIRA_TOKEN }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 143137, "scanner": "repobility-supply-chain", "fingerprint": "32a7c709c0feb3746f418b778774427d67d6f1f96f3fd309c03b82cff813a35e", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|32a7c709c0feb3746f418b778774427d67d6f1f96f3fd309c03b82cff813a35e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cicd_pipeline.yml"}, "region": {"startLine": 398}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.JIRA_USERNAME` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.JIRA_USERNAME }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 143136, "scanner": "repobility-supply-chain", "fingerprint": "003a2f6471150d4f835dc9f583c4e1121292bb0c32b9e67c97d8bcc37bb976ee", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|003a2f6471150d4f835dc9f583c4e1121292bb0c32b9e67c97d8bcc37bb976ee"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cicd_pipeline.yml"}, "region": {"startLine": 397}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GIT_PAT` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GIT_PAT }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 143135, "scanner": "repobility-supply-chain", "fingerprint": "d4fb5bab248014ff95c353e3516478f8a3d841ddd300fb6b7153d30cb7e206e5", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|d4fb5bab248014ff95c353e3516478f8a3d841ddd300fb6b7153d30cb7e206e5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cicd_pipeline.yml"}, "region": {"startLine": 395}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.JIRA_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.JIRA_TOKEN }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 143134, "scanner": "repobility-supply-chain", "fingerprint": "6e630cbf16a2237e823d9e07f3a3697c468a4f3be3d9f275050db5448951361e", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|6e630cbf16a2237e823d9e07f3a3697c468a4f3be3d9f275050db5448951361e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cicd_pipeline.yml"}, "region": {"startLine": 385}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.JIRA_USERNAME` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.JIRA_USERNAME }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 143133, "scanner": "repobility-supply-chain", "fingerprint": "48a1ab048ce173ed4bca1e2660d19b0321d8a92b0133ff2a05c942abd3b0ec45", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|48a1ab048ce173ed4bca1e2660d19b0321d8a92b0133ff2a05c942abd3b0ec45"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cicd_pipeline.yml"}, "region": {"startLine": 384}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GIT_PAT` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GIT_PAT }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 143132, "scanner": "repobility-supply-chain", "fingerprint": "ccacaae13ae4ee09388a6fe22809a32c4d9153c5a29b7c6598ef8f8e7d07fd97", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|ccacaae13ae4ee09388a6fe22809a32c4d9153c5a29b7c6598ef8f8e7d07fd97"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cicd_pipeline.yml"}, "region": {"startLine": 379}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GIT_PAT` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GIT_PAT }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 143131, "scanner": "repobility-supply-chain", "fingerprint": "3e8be4b45e43e5cf1ebe5e6e316cee9289bfc1f0652eb508919e3bcc243f62cb", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|3e8be4b45e43e5cf1ebe5e6e316cee9289bfc1f0652eb508919e3bcc243f62cb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cicd_pipeline.yml"}, "region": {"startLine": 242}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GIT_PAT` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GIT_PAT }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 143130, "scanner": "repobility-supply-chain", "fingerprint": "d55bc6f7f7d23354ed0bcc6e16ced26707d059800ffd304a273aad187e8d8296", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|d55bc6f7f7d23354ed0bcc6e16ced26707d059800ffd304a273aad187e8d8296"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cicd_pipeline.yml"}, "region": {"startLine": 235}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GIT_PAT` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GIT_PAT }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 143129, "scanner": "repobility-supply-chain", "fingerprint": "d557dc2959f665ceb4347f4e858c73e945fa8f322a20a52de8013a954d5cfbf0", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|d557dc2959f665ceb4347f4e858c73e945fa8f322a20a52de8013a954d5cfbf0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cicd_pipeline.yml"}, "region": {"startLine": 93}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `stat` used but not imported: The file uses `stat.something(...)` but never imports `stat`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 143093, "scanner": "repobility-ast-engine", "fingerprint": "a45d48ed1a07c2d3e25a08a8319e0f6fbbdd0bcc14518e653717134356b729e1", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|a45d48ed1a07c2d3e25a08a8319e0f6fbbdd0bcc14518e653717134356b729e1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/localfiles/models.py"}, "region": {"startLine": 148}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `signal` used but not imported: The file uses `signal.something(...)` but never imports `signal`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 143091, "scanner": "repobility-ast-engine", "fingerprint": "6572f602363610a9be3c8024b89c3d0d26dc1cf096c88fbf6213268d4d50b608", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|6572f602363610a9be3c8024b89c3d0d26dc1cf096c88fbf6213268d4d50b608"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/utils/common.py"}, "region": {"startLine": 602}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `string` used but not imported: The file uses `string.something(...)` but never imports `string`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 143059, "scanner": "repobility-ast-engine", "fingerprint": "14ec183552811fe86149c8863be0f6a09fb47085e8466a944d88fc9a1243bfaa", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|14ec183552811fe86149c8863be0f6a09fb47085e8466a944d88fc9a1243bfaa"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/tasks/validation.py"}, "region": {"startLine": 254}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `queue` used but not imported: The file uses `queue.something(...)` but never imports `queue`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 143055, "scanner": "repobility-ast-engine", "fingerprint": "ee1ed7e44d7129fb87aa6368f947d3587c54c1f28b2cace4cd8f53f4704c941b", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|ee1ed7e44d7129fb87aa6368f947d3587c54c1f28b2cace4cd8f53f4704c941b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/redis.py"}, "region": {"startLine": 205}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `xml` used but not imported: The file uses `xml.something(...)` but never imports `xml`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 143051, "scanner": "repobility-ast-engine", "fingerprint": "b31befa7cde51324aba1204608f180fddaffea7df1bbde21ff7c002c4ee77617", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|b31befa7cde51324aba1204608f180fddaffea7df1bbde21ff7c002c4ee77617"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/label_config.py"}, "region": {"startLine": 89}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `time` used but not imported: The file uses `time.something(...)` but never imports `time`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 143050, "scanner": "repobility-ast-engine", "fingerprint": "4ced19711a376ae1c0b938d84f63825c46db7441b8e571d6445d3dfb5383509e", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|4ced19711a376ae1c0b938d84f63825c46db7441b8e571d6445d3dfb5383509e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/label_config.py"}, "region": {"startLine": 421}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `queue` used but not imported: The file uses `queue.something(...)` but never imports `queue`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 143043, "scanner": "repobility-ast-engine", "fingerprint": "43a21613ca85e14b0f62f9261c27707730cf2e87e36174906fe72ae137632c4c", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|43a21613ca85e14b0f62f9261c27707730cf2e87e36174906fe72ae137632c4c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/io_storages/base_models.py"}, "region": {"startLine": 263}}}]}, {"ruleId": "MINED018", "level": "error", "message": {"text": "[MINED018] Unsafe Deserialization Pickle: pickle.loads / yaml.load (without Loader=SafeLoader) / unmarshal of network/file data \u2014 RCE."}, "properties": {"repobilityId": 142882, "scanner": "repobility-threat-engine", "fingerprint": "1ab25a50b5bf389156beb944ae65ef6bfb71d883eaeaef662dfaed2e9683e011", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "unsafe-deserialization-pickle", "owasp": "A08:2021", "cwe_ids": ["CWE-502"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347940+00:00", "triaged_in_corpus": 20, "observations_count": 58759, "ai_coder_pattern_id": 32}, "scanner": "repobility-threat-engine", "correlation_key": "fp|1ab25a50b5bf389156beb944ae65ef6bfb71d883eaeaef662dfaed2e9683e011"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/update_ml_tutorials.py"}, "region": {"startLine": 74}}}]}, {"ruleId": "SEC116", "level": "error", "message": {"text": "[SEC116] Ruby YAML.load / Marshal.load on untrusted input: `YAML.load` (pre-3.1) and `Marshal.load` instantiate arbitrary Ruby classes \u2014 direct RCE on untrusted input. `unsafe_load` is even more dangerous."}, "properties": {"repobilityId": 142879, "scanner": "repobility-threat-engine", "fingerprint": "d42082da0f368afb24d211f1ec644e349eb74d55cfc07d65c05fec47f0f65bcd", "category": "deserialization", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "yaml.load(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC116", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|deserialization|token|74|sec116"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/update_ml_tutorials.py"}, "region": {"startLine": 74}}}]}, {"ruleId": "SEC116", "level": "error", "message": {"text": "[SEC116] Ruby YAML.load / Marshal.load on untrusted input: `YAML.load` (pre-3.1) and `Marshal.load` instantiate arbitrary Ruby classes \u2014 direct RCE on untrusted input. `unsafe_load` is even more dangerous."}, "properties": {"repobilityId": 142878, "scanner": "repobility-threat-engine", "fingerprint": "423ac28abd737c2d4eed2fb7d64e102f9edfb412bb37d52f90d0724eb14c5920", "category": "deserialization", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "yaml.load(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC116", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|deserialization|token|140|sec116"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/utils/io.py"}, "region": {"startLine": 140}}}]}, {"ruleId": "SEC079", "level": "error", "message": {"text": "[SEC079] Python: yaml.load without SafeLoader: yaml.load() without explicit SafeLoader can execute arbitrary Python objects (CVE-2017-18342). Ported from bandit B506 / dlint DUO109 (Apache-2.0 / BSD-3)."}, "properties": {"repobilityId": 142877, "scanner": "repobility-threat-engine", "fingerprint": "c8f324d20770914c92278cd7822357dab727e39423e17090a13a4edd0b846f4d", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "yaml.load(parsed_content['header'], Loader=yaml.FullLoader)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC079", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|c8f324d20770914c92278cd7822357dab727e39423e17090a13a4edd0b846f4d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/update_ml_tutorials.py"}, "region": {"startLine": 74}}}]}, {"ruleId": "MINED007", "level": "error", "message": {"text": "[MINED007] Sql String Concat: cursor.execute(f\"... {user_input} ...\") \u2014 SQL injection."}, "properties": {"repobilityId": 142862, "scanner": "repobility-threat-engine", "fingerprint": "3d637ec3cfaeba0a87d9daabd07f200821f7bfa648af71a5a2a955ed1c1738b5", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "sql-string-concat", "owasp": "A03:2021", "cwe_ids": ["CWE-89"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347914+00:00", "triaged_in_corpus": 20, "observations_count": 210457, "ai_coder_pattern_id": 12}, "scanner": "repobility-threat-engine", "correlation_key": "fp|3d637ec3cfaeba0a87d9daabd07f200821f7bfa648af71a5a2a955ed1c1738b5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "label_studio/core/management/commands/locked_migrate.py"}, "region": {"startLine": 55}}}]}]}]}