{"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": "NET001", "name": "requests.* without timeout argument", "shortDescription": {"text": "requests.* without timeout argument"}, "fullDescription": {"text": "requests.get/post/etc. without timeout= can hang forever."}, "properties": {"scanner": "repobility", "category": "ssrf", "severity": "medium", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "QUAL008", "name": "input() call in production code", "shortDescription": {"text": "input() call in production code"}, "fullDescription": {"text": "input() blocks for stdin. Inappropriate in services."}, "properties": {"scanner": "repobility", "category": "quality", "severity": "medium", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "QUAL003", "name": "Magic number used as default arg", "shortDescription": {"text": "Magic number used as default arg"}, "fullDescription": {"text": "Using hardcoded default values for complex configuration objects makes the code brittle and difficult to manage. Consider using a dedicated factory or builder pattern.\n\nAuto-promoted from proposal 444 on 2026-05-12. Synth confidence: 0.85. FP estimate: 0.00."}, "properties": {"scanner": "repobility", "category": "quality", "severity": "medium", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "TEST002", "name": "Function is stub-only (pass/raise NotImplementedError)", "shortDescription": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "fullDescription": {"text": "Function declared but body is just pass, return None, raise NotImplementedError, or TODO comment."}, "properties": {"scanner": "repobility", "category": "test_quality", "severity": "medium", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "ERRH005", "name": "PHP @ error-suppress operator", "shortDescription": {"text": "PHP @ error-suppress operator"}, "fullDescription": {"text": "@function() suppresses errors silently. Hides real issues."}, "properties": {"scanner": "repobility", "category": "error_handling", "severity": "medium", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "LOG001", "name": "PII printed to stdout/stderr", "shortDescription": {"text": "PII printed to stdout/stderr"}, "fullDescription": {"text": "Logging password/token/email/ssn directly to stdout."}, "properties": {"scanner": "repobility", "category": "logging", "severity": "medium", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "CONC002", "name": "Concurrency \u2014 TOCTOU race via os.path.exists+open", "shortDescription": {"text": "Concurrency \u2014 TOCTOU race via os.path.exists+open"}, "fullDescription": {"text": "if os.path.exists(p): open(p) \u2014 file can be replaced/deleted between check and use."}, "properties": {"scanner": "repobility", "category": "race_condition", "severity": "medium", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "DKR007", "name": "Docker build context has no .dockerignore", "shortDescription": {"text": "Docker build context has no .dockerignore"}, "fullDescription": {"text": "Without .dockerignore, build context can include source history, local env files, dependencies, and generated artifacts."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.9, "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": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC005", "name": "[SEC005] Command Injection Risk: Unsafe shell execution or eval of user input.", "shortDescription": {"text": "[SEC005] Command Injection Risk: Unsafe shell execution or eval of user input."}, "fullDescription": {"text": "Use subprocess with shell=False and a list of args. Never eval user input."}, "properties": {"scanner": "repobility-threat-engine", "category": "injection", "severity": "medium", "confidence": 0.5, "cwe": "", "owasp": ""}}, {"id": "AIC003", "name": "Duplicated implementation block across source files", "shortDescription": {"text": "Duplicated implementation block across source files"}, "fullDescription": {"text": "Duplicated blocks are a common artifact when generated code is pasted or recreated instead of reused. They increase maintenance cost because every future bug fix must be found in multiple locations."}, "properties": {"scanner": "repobility-ai-code-hygiene", "category": "quality", "severity": "medium", "confidence": 0.86, "cwe": "", "owasp": ""}}, {"id": "QUAL005", "name": "Cluster of TODOs in one file", "shortDescription": {"text": "Cluster of TODOs in one file"}, "fullDescription": {"text": "Code path with a TODO/FIXME/HACK comment that gates correctness \u2014 left for later but never resolved."}, "properties": {"scanner": "repobility", "category": "quality", "severity": "low", "confidence": 0.85, "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": "Variable-selected base images can be safe, but Repobility cannot verify that the resolved image is pinned."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "info", "confidence": 0.48, "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": "SEC011", "name": "[SEC011] Unsafe PyTorch Model Loading: torch.load() uses pickle internally and can execute arbitrary code from untrusted", "shortDescription": {"text": "[SEC011] Unsafe PyTorch Model Loading: torch.load() uses pickle internally and can execute arbitrary code from untrusted model files."}, "fullDescription": {"text": "Use torch.load(..., weights_only=True) or use safetensors format."}, "properties": {"scanner": "repobility-threat-engine", "category": "deserialization", "severity": "info", "confidence": 0.1, "cwe": "", "owasp": ""}}, {"id": "TEST001", "name": "Phantom test coverage \u2014 test files without real assertions", "shortDescription": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "fullDescription": {"text": "Test function that runs code but contains no assert/expect/should \u2014 passes regardless of behaviour."}, "properties": {"scanner": "repobility", "category": "test_quality", "severity": "high", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "NULL010", "name": "Scala: .get on Option", "shortDescription": {"text": "Scala: .get on Option"}, "fullDescription": {"text": "Option.get throws NoSuchElementException on None. Use getOrElse / fold / match."}, "properties": {"scanner": "repobility", "category": "null_safety", "severity": "high", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "ERRH003", "name": "except BaseException \u2014 catches SystemExit/KeyboardInterrupt", "shortDescription": {"text": "except BaseException \u2014 catches SystemExit/KeyboardInterrupt"}, "fullDescription": {"text": "except BaseException: ... \u2014 prevents Ctrl+C and SystemExit from working."}, "properties": {"scanner": "repobility", "category": "error_handling", "severity": "high", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "ERRH001", "name": "Bare except: pass \u2014 silent failure", "shortDescription": {"text": "Bare except: pass \u2014 silent failure"}, "fullDescription": {"text": "except: pass or except Exception: pass \u2014 silently swallows everything including KeyboardInterrupt and bugs."}, "properties": {"scanner": "repobility", "category": "error_handling", "severity": "high", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "LOG002", "name": "Credential interpolated into log f-string", "shortDescription": {"text": "Credential interpolated into log f-string"}, "fullDescription": {"text": "logger.error(f\"failed for {api_key}\") \u2014 secrets end up in log aggregators / sentry."}, "properties": {"scanner": "repobility", "category": "logging", "severity": "high", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "CMDI006", "name": "Command injection \u2014 Ruby system/exec call", "shortDescription": {"text": "Command injection \u2014 Ruby system/exec call"}, "fullDescription": {"text": "system / backtick run shell. Command injection if any arg dynamic."}, "properties": {"scanner": "repobility", "category": "command_injection", "severity": "high", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "CMDI003", "name": "Command injection \u2014 subprocess shell=True", "shortDescription": {"text": "Command injection \u2014 subprocess shell=True"}, "fullDescription": {"text": "subprocess(..., shell=True) enables command injection."}, "properties": {"scanner": "repobility", "category": "command_injection", "severity": "high", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "EVAL006", "name": "Code execution \u2014 Lua loadstring", "shortDescription": {"text": "Code execution \u2014 Lua loadstring"}, "fullDescription": {"text": "loadstring/load executes Lua code. Code injection."}, "properties": {"scanner": "repobility", "category": "code_execution", "severity": "critical", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "EVAL005", "name": "Code execution \u2014 PHP eval", "shortDescription": {"text": "Code execution \u2014 PHP eval"}, "fullDescription": {"text": "eval() executes arbitrary PHP. Code injection."}, "properties": {"scanner": "repobility", "category": "code_execution", "severity": "critical", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "EVAL004", "name": "Code execution \u2014 Ruby eval", "shortDescription": {"text": "Code execution \u2014 Ruby eval"}, "fullDescription": {"text": "eval() executes arbitrary code. Code injection."}, "properties": {"scanner": "repobility", "category": "code_execution", "severity": "critical", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "EVAL002", "name": "Code execution \u2014 JS eval()", "shortDescription": {"text": "Code execution \u2014 JS eval()"}, "fullDescription": {"text": "eval() executes arbitrary code. Code injection risk."}, "properties": {"scanner": "repobility", "category": "code_execution", "severity": "critical", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "DSER002", "name": "Insecure deserialization \u2014 pickle.loads", "shortDescription": {"text": "Insecure deserialization \u2014 pickle.loads"}, "fullDescription": {"text": "pickle.loads() can execute arbitrary code via __reduce__."}, "properties": {"scanner": "repobility", "category": "deserialization", "severity": "critical", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "DSER001", "name": "Insecure deserialization \u2014 pickle/yaml/marshal", "shortDescription": {"text": "Insecure deserialization \u2014 pickle/yaml/marshal"}, "fullDescription": {"text": "pickle.loads / yaml.load (without Loader=SafeLoader) / unmarshal of network/file data \u2014 RCE."}, "properties": {"scanner": "repobility", "category": "deserialization", "severity": "critical", "confidence": 0.85, "cwe": "", "owasp": ""}}]}}, "automationDetails": {"id": "repobility/323"}, "properties": {"repository": "pytorch/torchtitan", "repoUrl": "https://github.com/pytorch/torchtitan", "branch": "main"}, "results": [{"ruleId": "NET001", "level": "warning", "message": {"text": "requests.* without timeout argument"}, "properties": {"repobilityId": 22382, "scanner": "repobility", "fingerprint": "4f52923252fdffd7e56474baf2099e62", "category": "ssrf", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "requests.get(image, timeout=10)", "aljefra_cwe": ["CWE-400"], "aljefra_owasp": null, "aljefra_pattern_slug": "python-requests-no-timeout"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/hf_datasets/multimodal/utils/image.py"}, "region": {"startLine": 37}}}]}, {"ruleId": "QUAL008", "level": "warning", "message": {"text": "input() call in production code"}, "properties": {"repobilityId": 22350, "scanner": "repobility", "fingerprint": "22ef91c7b9d7ec1970b44da85df01aab", "category": "quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "input (", "aljefra_cwe": [], "aljefra_owasp": null, "aljefra_pattern_slug": "python-input-call"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/common/token_dispatcher.py"}, "region": {"startLine": 350}}}]}, {"ruleId": "QUAL003", "level": "warning", "message": {"text": "Magic number used as default arg"}, "properties": {"repobilityId": 21991, "scanner": "repobility", "fingerprint": "4c16f2bd0e78bb377ba06258dc7ef8ab", "category": "quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "default 1", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "magic-number-default"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/config/configs.py"}, "region": {"startLine": 188}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21180, "scanner": "repobility", "fingerprint": "924571190b61a49dc9675bd445db5a94", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def get_nparams_and_flops(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/protocols/model.py"}, "region": {"startLine": 74}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21179, "scanner": "repobility", "fingerprint": "f8c1147d255cbb5c05ce4538b67c23c4", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def update_from_config(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/protocols/model.py"}, "region": {"startLine": 65}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21178, "scanner": "repobility", "fingerprint": "e9132aca14abefb1f23b8747b9abd2a9", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def __init__(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/protocols/state_dict_adapter.py"}, "region": {"startLine": 35}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21177, "scanner": "repobility", "fingerprint": "1e20c05498567e00e8fb0724dffeabe2", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def __call__(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/distributed/utils.py"}, "region": {"startLine": 309}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21176, "scanner": "repobility", "fingerprint": "a4ec192197e834c362b2cb4df3072978", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def load_state_dict(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/ft/tests/test_ft_checkpoint.py"}, "region": {"startLine": 51}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21175, "scanner": "repobility", "fingerprint": "dd4d9cf2d8e2095a6d461c096ebdb18b", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def load_state_dict(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/ft/tests/test_ft_checkpoint.py"}, "region": {"startLine": 40}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21174, "scanner": "repobility", "fingerprint": "1ca3e065472046332bba2161969e8123", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def init_cache_state_dict(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/ft/tests/test_ft_checkpoint.py"}, "region": {"startLine": 32}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21173, "scanner": "repobility", "fingerprint": "f2ffaeb0308871b9323364596c8c0fdb", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def convert(...): raise NotImplementedError", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/quantization/__init__.py"}, "region": {"startLine": 47}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21172, "scanner": "repobility", "fingerprint": "1c8ef503c06e61ede782ef847b780105", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def close(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/metrics.py"}, "region": {"startLine": 111}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21171, "scanner": "repobility", "fingerprint": "b2bf375fee40ade5326a4bf5aa872cb0", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def log(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/metrics.py"}, "region": {"startLine": 108}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21170, "scanner": "repobility", "fingerprint": "f80583198c49164faa2565edaaf388e0", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def get_vocab_size(...): ...", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/tokenizer.py"}, "region": {"startLine": 40}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21169, "scanner": "repobility", "fingerprint": "143fb1e0e8b988a6aed1fa970fd0bebe", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def decode(...): ...", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/tokenizer.py"}, "region": {"startLine": 36}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21168, "scanner": "repobility", "fingerprint": "1ede42d3e61e5a0836b87f621e47d9ef", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def encode(...): ...", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/tokenizer.py"}, "region": {"startLine": 32}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21167, "scanner": "repobility", "fingerprint": "cf27a025f05b355841429c23ada04e0d", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def __iter__(...): ...", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/dataloader.py"}, "region": {"startLine": 51}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21166, "scanner": "repobility", "fingerprint": "3578f9bc4ac23770ab5d456914532ead", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def zero_grad(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/optimizer.py"}, "region": {"startLine": 417}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21165, "scanner": "repobility", "fingerprint": "7f080916b6cb44997d7f2dc7d3465b9e", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def step(...): ...", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/optimizer.py"}, "region": {"startLine": 411}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21164, "scanner": "repobility", "fingerprint": "5ca944c640af8c5d759fbe4beaf63924", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def step(...): ...", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/optimizer.py"}, "region": {"startLine": 407}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21163, "scanner": "repobility", "fingerprint": "07c3be2522181f901bacf7243b6566b3", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def step(...): ...", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/optimizer.py"}, "region": {"startLine": 259}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21162, "scanner": "repobility", "fingerprint": "8da4ca445b03326cf98233c53125c645", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def step(...): ...", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/optimizer.py"}, "region": {"startLine": 255}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21161, "scanner": "repobility", "fingerprint": "b246a03538ff577616ba6e40a6daad82", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def validate(...): raise NotImplementedError", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/validate.py"}, "region": {"startLine": 43}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21160, "scanner": "repobility", "fingerprint": "87ace13d3a77e3a70e3862dfc443d665", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def __init__(...): ...", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/loss.py"}, "region": {"startLine": 55}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21159, "scanner": "repobility", "fingerprint": "709cf55f4fd7759b94c87939edd0e1e9", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def update_from_config(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/model/model.py"}, "region": {"startLine": 56}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21158, "scanner": "repobility", "fingerprint": "5fa6a4d6930dc0236606f7f9b7382ee3", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def load_state_dict(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_checkpoint.py"}, "region": {"startLine": 61}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21157, "scanner": "repobility", "fingerprint": "5d706f8c895310a5596dd7e4004399cf", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def load_state_dict(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_checkpoint.py"}, "region": {"startLine": 48}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21156, "scanner": "repobility", "fingerprint": "8da7592e27678690565e4a1d3d838089", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def __init__(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_checkpoint.py"}, "region": {"startLine": 42}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21155, "scanner": "repobility", "fingerprint": "672e1556a7053645efa5eaedcb9c31e2", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def init_cache_state_dict(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_checkpoint.py"}, "region": {"startLine": 35}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21154, "scanner": "repobility", "fingerprint": "e15df67c757747a9120d481de63de16b", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def update_from_config(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_train_spec.py"}, "region": {"startLine": 25}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21153, "scanner": "repobility", "fingerprint": "c413796d000171427b824357e55637be", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def update_from_config(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_module.py"}, "region": {"startLine": 323}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21152, "scanner": "repobility", "fingerprint": "b93bb46c367686678ad92fa7de083993", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def update_from_config(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_module.py"}, "region": {"startLine": 302}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21151, "scanner": "repobility", "fingerprint": "91366e17f5e24222727946486fb39988", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def update_from_config(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_module.py"}, "region": {"startLine": 281}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21150, "scanner": "repobility", "fingerprint": "671c13be59ceaee6d94dae6a7283cdf5", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def verify_module_protocol(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_module.py"}, "region": {"startLine": 333}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18938, "scanner": "repobility", "fingerprint": "aa0032f4dd72ef4bd2d976dc49487659", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/config/configs.py"}, "region": {"startLine": 344}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18937, "scanner": "repobility", "fingerprint": "caf66dd82d682ff598b253001a3fb851", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/config/configs.py"}, "region": {"startLine": 306}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18936, "scanner": "repobility", "fingerprint": "4cfad9a1dc46687d38f4bcd1352fc4c7", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/config/configs.py"}, "region": {"startLine": 295}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18935, "scanner": "repobility", "fingerprint": "074a12e87b15b3dc93d6e1a01410e5c5", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/config/configs.py"}, "region": {"startLine": 231}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18934, "scanner": "repobility", "fingerprint": "79dc99c0c2ecab3cd019bcc85bfbcae5", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/config/configs.py"}, "region": {"startLine": 82}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18933, "scanner": "repobility", "fingerprint": "a36f8dfc418d5f33e754c212f4400c94", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/config/configs.py"}, "region": {"startLine": 25}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18932, "scanner": "repobility", "fingerprint": "a92053e9747f090cd7aea4d971b995fe", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/config/function.py"}, "region": {"startLine": 32}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18931, "scanner": "repobility", "fingerprint": "c1c7da1867c55f9706e0090a10aae89f", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/config/configurable.py"}, "region": {"startLine": 138}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18930, "scanner": "repobility", "fingerprint": "e7df307922ebed7cacec5aa44d902324", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/config/configurable.py"}, "region": {"startLine": 134}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18929, "scanner": "repobility", "fingerprint": "188d04ccfeca789ede51d98c3d1fb2b7", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/config/configurable.py"}, "region": {"startLine": 38}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18928, "scanner": "repobility", "fingerprint": "6960131fb10a2a61a30451a47b02c175", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/config/configurable.py"}, "region": {"startLine": 34}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18927, "scanner": "repobility", "fingerprint": "35d339c92073457ce1d91458092a6fe6", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/config/configurable.py"}, "region": {"startLine": 33}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18926, "scanner": "repobility", "fingerprint": "ac4320a29112bc6810657244d928eb9c", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/config/configurable.py"}, "region": {"startLine": 21}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18925, "scanner": "repobility", "fingerprint": "19a6308c726aa8edde7fc5e856cfa3af", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/protocols/sharding.py"}, "region": {"startLine": 60}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18924, "scanner": "repobility", "fingerprint": "0ea418b639c493092f4c023bd03dd6d9", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/protocols/sharding.py"}, "region": {"startLine": 35}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18923, "scanner": "repobility", "fingerprint": "c6c6934100dd4d607b674bef456e36a3", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/protocols/model.py"}, "region": {"startLine": 55}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18922, "scanner": "repobility", "fingerprint": "20ed19efec3e885f0e5a1842c3001d1c", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/protocols/module.py"}, "region": {"startLine": 42}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18921, "scanner": "repobility", "fingerprint": "0f9ee713e8b6a20ce880105dbf888f42", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/tools/profiler.py"}, "region": {"startLine": 100}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18920, "scanner": "repobility", "fingerprint": "58f020a4773630d8d0c1292cfd86fed1", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/tools/utils.py"}, "region": {"startLine": 192}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18919, "scanner": "repobility", "fingerprint": "afe66c8c50d311382895fba72048d784", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/tools/utils.py"}, "region": {"startLine": 177}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18918, "scanner": "repobility", "fingerprint": "3cd2c1430ac99ed324c4baaebb7acb97", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/models/attention.py"}, "region": {"startLine": 219}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18917, "scanner": "repobility", "fingerprint": "dfb9b26b3c14f3a6d8d937d42b4d0cd3", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@register_backend(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/models/attention.py"}, "region": {"startLine": 32}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18916, "scanner": "repobility", "fingerprint": "68c28f7e6dea6310c5ea4e54dda5d52d", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@support_torch_compile(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/models/vllm_wrapper.py"}, "region": {"startLine": 140}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18915, "scanner": "repobility", "fingerprint": "8de258fd7e68ae6d3a1a6714fc60f87f", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/actors/generator.py"}, "region": {"startLine": 123}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18914, "scanner": "repobility", "fingerprint": "05562407abc76db47682356180ea3e64", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/actors/generator.py"}, "region": {"startLine": 92}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18913, "scanner": "repobility", "fingerprint": "9e7c7c2544e66a9d722e7c95dbe21591", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/actors/generator.py"}, "region": {"startLine": 33}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18912, "scanner": "repobility", "fingerprint": "50848bd82c9b63c6ff9f96d3b6124ecf", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/actors/trainer.py"}, "region": {"startLine": 63}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18911, "scanner": "repobility", "fingerprint": "eee75f26e73dc17245ff07f7efe22218", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/grpo.py"}, "region": {"startLine": 161}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18910, "scanner": "repobility", "fingerprint": "538bf685995b042cca44adc7252cec64", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/grpo.py"}, "region": {"startLine": 60}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18909, "scanner": "repobility", "fingerprint": "abc2ec58e9d0416a64153f35e02e2bdf", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/sum_digits.py"}, "region": {"startLine": 26}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18908, "scanner": "repobility", "fingerprint": "8a91b0e26b8f2f25dbfdb69f4b74601a", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/types.py"}, "region": {"startLine": 86}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18907, "scanner": "repobility", "fingerprint": "9a61e30a77ea1c5a2302c99adbdf57c8", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/types.py"}, "region": {"startLine": 68}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18906, "scanner": "repobility", "fingerprint": "0dcf95a0b279f390ef9904d918bef588", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/types.py"}, "region": {"startLine": 51}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18905, "scanner": "repobility", "fingerprint": "2fe90b3090df86b0bb3a3add404bd664", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/types.py"}, "region": {"startLine": 35}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18904, "scanner": "repobility", "fingerprint": "7f17161981c2d40868dd5d249f0e1546", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/types.py"}, "region": {"startLine": 12}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18903, "scanner": "repobility", "fingerprint": "66fb8147a21e7f2375b225cecd810dab", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/ft/config/job_config.py"}, "region": {"startLine": 14}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18902, "scanner": "repobility", "fingerprint": "3c2c44cda591f70a3714054b66f8bc18", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/ft/checkpoint.py"}, "region": {"startLine": 58}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18901, "scanner": "repobility", "fingerprint": "d67b04ba573efa8437898d153288b46f", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/ft/optimizer.py"}, "region": {"startLine": 27}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18900, "scanner": "repobility", "fingerprint": "fe6543b5456df81aa9302958997bbc1d", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/ft/trainer.py"}, "region": {"startLine": 32}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18899, "scanner": "repobility", "fingerprint": "32d77e68457c2166d9c4cf0af30e7786", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/ft/manager.py"}, "region": {"startLine": 37}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18898, "scanner": "repobility", "fingerprint": "87e92f27470dc9c8d340712794925311", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/autoparallel/configs.py"}, "region": {"startLine": 21}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18897, "scanner": "repobility", "fingerprint": "a5f0cfb7bb514900a06fd5096a862d79", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/autoparallel/configs.py"}, "region": {"startLine": 13}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18896, "scanner": "repobility", "fingerprint": "b78529976285c21f0f0ef0b4003ab919", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/forge/engine.py"}, "region": {"startLine": 35}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18895, "scanner": "repobility", "fingerprint": "445f81abd101b9aa06eac63200561868", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/qwen3/model.py"}, "region": {"startLine": 17}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18894, "scanner": "repobility", "fingerprint": "3c0ecb571d56907886842cf0a973a3ee", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/llama3/model.py"}, "region": {"startLine": 17}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18893, "scanner": "repobility", "fingerprint": "cc482f81cea25f171bb3d903b59400dc", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/deepseek_v3/model.py"}, "region": {"startLine": 17}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18892, "scanner": "repobility", "fingerprint": "fd1f6cf0417019134038c2c4fd9577c1", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@wraps(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_precompile.py"}, "region": {"startLine": 387}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18891, "scanner": "repobility", "fingerprint": "6a5a54e7ef9e37a5b17f79fbad32a21c", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_simple_fsdp.py"}, "region": {"startLine": 35}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18890, "scanner": "repobility", "fingerprint": "3d9653fbda66151a3b91079f0c56cbba", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_sac_peak_memory.py"}, "region": {"startLine": 50}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18889, "scanner": "repobility", "fingerprint": "bb23420229cb7465beb01d3b61eb42c9", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/simple_fsdp.py"}, "region": {"startLine": 42}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18888, "scanner": "repobility", "fingerprint": "a2eba3758dcd8c92d3066f8077961109", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/trainer.py"}, "region": {"startLine": 53}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18887, "scanner": "repobility", "fingerprint": "c1fc9699617a6fcea1f39e27aefc18c1", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/configs.py"}, "region": {"startLine": 18}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18886, "scanner": "repobility", "fingerprint": "f7f530bc938113b1718db19c0164100b", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/transformers_modeling_backend/model.py"}, "region": {"startLine": 87}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18885, "scanner": "repobility", "fingerprint": "7e63d4f5388d8174d5a9372e576a1271", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/transformers_modeling_backend/configs.py"}, "region": {"startLine": 12}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18884, "scanner": "repobility", "fingerprint": "076612a712ca0a72397cf4768962e86c", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/quantization/float8.py"}, "region": {"startLine": 211}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18883, "scanner": "repobility", "fingerprint": "f4dbe49243df8d7d0edfc25e94b63995", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/quantization/float8.py"}, "region": {"startLine": 178}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18882, "scanner": "repobility", "fingerprint": "177cb0196f021cb2a2ee12f175fa0568", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/quantization/float8.py"}, "region": {"startLine": 60}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18881, "scanner": "repobility", "fingerprint": "6e12048b7f7f7bda6efbebf22f14f38d", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/quantization/float8.py"}, "region": {"startLine": 38}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18880, "scanner": "repobility", "fingerprint": "d2044e5a6980cad3b275dde84c3d4f21", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/quantization/__init__.py"}, "region": {"startLine": 42}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18879, "scanner": "repobility", "fingerprint": "eefe7511e44bdd51b7a22d2c5099ac6e", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/quantization/__init__.py"}, "region": {"startLine": 22}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18878, "scanner": "repobility", "fingerprint": "f0c543bbb4a1f7280a65b33a878ddb70", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/quantization/mx.py"}, "region": {"startLine": 157}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18877, "scanner": "repobility", "fingerprint": "9b991ff90db89e041ad75ded19872deb", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/quantization/mx.py"}, "region": {"startLine": 113}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18876, "scanner": "repobility", "fingerprint": "ecce3b797453c80ede8addac21610bd9", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/quantization/mx.py"}, "region": {"startLine": 49}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18875, "scanner": "repobility", "fingerprint": "049ee671d4b33ccbe195f13ad4cab857", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/quantization/mx.py"}, "region": {"startLine": 27}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18874, "scanner": "repobility", "fingerprint": "577cbb25b8cfb0a77ec0cd7ffff2e6a3", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/metrics.py"}, "region": {"startLine": 278}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18873, "scanner": "repobility", "fingerprint": "ad223446d3b882991980aeb60ccf9107", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/tokenizer.py"}, "region": {"startLine": 515}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18872, "scanner": "repobility", "fingerprint": "78d557b54c85fbef774c1c4799c2e1c7", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/tokenizer.py"}, "region": {"startLine": 113}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18871, "scanner": "repobility", "fingerprint": "1df93b0b37d6da0eba210428cbc787bd", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/tokenizer.py"}, "region": {"startLine": 20}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18870, "scanner": "repobility", "fingerprint": "2f6b1d5733f1297b87d2cdc971e4996a", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/checkpoint.py"}, "region": {"startLine": 166}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18869, "scanner": "repobility", "fingerprint": "2f8fe3fe0b3516c9346fbf62ace19a9f", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/dataloader.py"}, "region": {"startLine": 71}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18868, "scanner": "repobility", "fingerprint": "512126d1f6bb95281f3020a02283a9c9", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/dataloader.py"}, "region": {"startLine": 45}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18867, "scanner": "repobility", "fingerprint": "06a585c67c4cab6d393dec8f42eb68c5", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/optimizer.py"}, "region": {"startLine": 358}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18866, "scanner": "repobility", "fingerprint": "6b7480d45febe662181d747e87a5c5a9", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/optimizer.py"}, "region": {"startLine": 93}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18865, "scanner": "repobility", "fingerprint": "fdc32bf2f0a8f4d05512ef4ffb93cda7", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/optimizer.py"}, "region": {"startLine": 38}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18864, "scanner": "repobility", "fingerprint": "b9be8197bf1f441251a99b247dbb1ef6", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/validate.py"}, "region": {"startLine": 69}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18863, "scanner": "repobility", "fingerprint": "76cda4bacabb7d6bd83d9c95341871da", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/validate.py"}, "region": {"startLine": 31}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18862, "scanner": "repobility", "fingerprint": "6c2a9ccdd96ab3a83d7b3f68c298669f", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/loss.py"}, "region": {"startLine": 228}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18861, "scanner": "repobility", "fingerprint": "21097c786c3aaec65f1b85bfee28de4f", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/loss.py"}, "region": {"startLine": 94}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18860, "scanner": "repobility", "fingerprint": "eed24373afc3ff48e0b4f99958a5bf17", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/loss.py"}, "region": {"startLine": 82}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18859, "scanner": "repobility", "fingerprint": "4d064728ec3a5b496d8b39160ddd8111", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/loss.py"}, "region": {"startLine": 50}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18858, "scanner": "repobility", "fingerprint": "68e927c851a42068942aa689d07f9cec", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/lr_scheduler.py"}, "region": {"startLine": 50}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18857, "scanner": "repobility", "fingerprint": "02098675e0cd49ed19552a2a60a01a52", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/hf_datasets/multimodal/mm_datasets.py"}, "region": {"startLine": 482}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18856, "scanner": "repobility", "fingerprint": "4f9f9ccc06f43c5d274b5c03d4cf1872", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/hf_datasets/text_datasets.py"}, "region": {"startLine": 552}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18855, "scanner": "repobility", "fingerprint": "67c414c17ab1ca06c4ab2f743cb0ad4a", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/hf_datasets/text_datasets.py"}, "region": {"startLine": 241}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18854, "scanner": "repobility", "fingerprint": "1e18e38c0a712611cf8ee00600eaa531", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/common/embedding.py"}, "region": {"startLine": 26}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18853, "scanner": "repobility", "fingerprint": "7aa0d399ed756775e5612bcdf2fa6bb0", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/common/decoder.py"}, "region": {"startLine": 66}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18852, "scanner": "repobility", "fingerprint": "351912e8da16d2fe22a1d399c01a70ee", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/common/decoder.py"}, "region": {"startLine": 50}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18851, "scanner": "repobility", "fingerprint": "5fd160ecda52915f451c54e1472325ad", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/common/rmsnorm.py"}, "region": {"startLine": 24}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18850, "scanner": "repobility", "fingerprint": "0afd6b985d34ea7d7dc2bffef422ed9b", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/common/token_dispatcher.py"}, "region": {"startLine": 542}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18849, "scanner": "repobility", "fingerprint": "4888631cf7717d95ba13c6ffcb298b07", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/common/token_dispatcher.py"}, "region": {"startLine": 525}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18848, "scanner": "repobility", "fingerprint": "c2c6037b300857d7fd99eeb4713c4ce1", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/common/token_dispatcher.py"}, "region": {"startLine": 471}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18847, "scanner": "repobility", "fingerprint": "c439afac73f94c955f8091c2e5fc2576", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/common/token_dispatcher.py"}, "region": {"startLine": 161}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18846, "scanner": "repobility", "fingerprint": "1acea2e92326f0fc2077658eea8ad6a9", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/common/token_dispatcher.py"}, "region": {"startLine": 48}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18845, "scanner": "repobility", "fingerprint": "b03e3a728fd028338ed94d52bb309513", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/common/token_dispatcher.py"}, "region": {"startLine": 29}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18844, "scanner": "repobility", "fingerprint": "40c1e24e383ea5eea0e0e62465750901", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/common/token_dispatcher.py"}, "region": {"startLine": 21}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18843, "scanner": "repobility", "fingerprint": "8f705a4b4a704573c630ba7e0bb9754b", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/common/moe.py"}, "region": {"startLine": 321}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18842, "scanner": "repobility", "fingerprint": "2354b36a71e09e758f6ef0a58d8284ae", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/common/moe.py"}, "region": {"startLine": 152}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18841, "scanner": "repobility", "fingerprint": "776f92cbe066580c502d3fedad6857b1", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/common/moe.py"}, "region": {"startLine": 77}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18840, "scanner": "repobility", "fingerprint": "85a8ba40044cee4ec12c3af0f005fcb3", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/common/linear.py"}, "region": {"startLine": 24}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18839, "scanner": "repobility", "fingerprint": "5bc6bdb2e8a8deadf9817778c268a166", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/common/rope.py"}, "region": {"startLine": 39}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18838, "scanner": "repobility", "fingerprint": "03b77593eaaedb3b6f5c5510b7433bae", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/common/attention.py"}, "region": {"startLine": 596}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18837, "scanner": "repobility", "fingerprint": "f5ef60667d4ac98920f67bd1cb3970ad", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/common/attention.py"}, "region": {"startLine": 553}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18836, "scanner": "repobility", "fingerprint": "884db4cc47af0e5b13ad65e7475b76f4", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/common/attention.py"}, "region": {"startLine": 519}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18835, "scanner": "repobility", "fingerprint": "b4467708a29b58173afec01e0062cf9c", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/common/attention.py"}, "region": {"startLine": 497}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18834, "scanner": "repobility", "fingerprint": "cd06c5d0f3f5958f829d4e054efd5cd2", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/common/attention.py"}, "region": {"startLine": 464}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18833, "scanner": "repobility", "fingerprint": "925fcd841bc69313f3e958ba23560b44", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/common/attention.py"}, "region": {"startLine": 261}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18832, "scanner": "repobility", "fingerprint": "14037d84df1b2f1a84b993b3f62891bf", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/common/attention.py"}, "region": {"startLine": 177}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18831, "scanner": "repobility", "fingerprint": "9560b662a2a839c25f2888fd6bbc712b", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/common/attention.py"}, "region": {"startLine": 75}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18830, "scanner": "repobility", "fingerprint": "65c963aaf0cbb1cac8c6256e019dc3a0", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/common/feed_forward.py"}, "region": {"startLine": 41}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18829, "scanner": "repobility", "fingerprint": "d6bfaf952fed686f58fe1f97300e93f8", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/deepseek_v3/model.py"}, "region": {"startLine": 183}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18828, "scanner": "repobility", "fingerprint": "6b95514036d6e670e6f22a1c4326c0fc", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/deepseek_v3/model.py"}, "region": {"startLine": 143}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18827, "scanner": "repobility", "fingerprint": "d5e64d050ac8ff34f197657f9563a7f6", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/deepseek_v3/model.py"}, "region": {"startLine": 36}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18826, "scanner": "repobility", "fingerprint": "5f74856a8f8a92a10a35cff0b00af30c", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/model/model.py"}, "region": {"startLine": 30}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18825, "scanner": "repobility", "fingerprint": "6d6e40ae59917c529d278d2efed5e69b", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/model/layers.py"}, "region": {"startLine": 355}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18824, "scanner": "repobility", "fingerprint": "afc5304c98874d13bf4337887f4fac3a", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/model/layers.py"}, "region": {"startLine": 299}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18823, "scanner": "repobility", "fingerprint": "67d1f0f7daa0f4e5c87c5de9537a5c93", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/model/layers.py"}, "region": {"startLine": 192}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18822, "scanner": "repobility", "fingerprint": "d9618d268f6943f7c741d86fed4ee921", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/model/layers.py"}, "region": {"startLine": 169}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18821, "scanner": "repobility", "fingerprint": "705925ac7ed06730e050315bdddbbb21", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/model/layers.py"}, "region": {"startLine": 134}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18820, "scanner": "repobility", "fingerprint": "682af852a316a5ec9004f673e4895383", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/model/layers.py"}, "region": {"startLine": 117}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18819, "scanner": "repobility", "fingerprint": "ed55a4ac556af61ee088953749b9566e", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/model/layers.py"}, "region": {"startLine": 99}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18818, "scanner": "repobility", "fingerprint": "4dcf8d964f6a3f3de8a6b233cc4cbbda", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/model/layers.py"}, "region": {"startLine": 45}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18817, "scanner": "repobility", "fingerprint": "360bc3d378d921c09264bf0d6fe860a0", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/tokenizer.py"}, "region": {"startLine": 27}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18816, "scanner": "repobility", "fingerprint": "63d5cce4e329b4ef479e84065ed74718", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/flux_datasets.py"}, "region": {"startLine": 358}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18815, "scanner": "repobility", "fingerprint": "e28f7944e46da8eb095d59646d0211c7", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/trainer.py"}, "region": {"startLine": 33}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18814, "scanner": "repobility", "fingerprint": "222e9fa1e95fffa54c7cc0080d2ba9b3", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/validate.py"}, "region": {"startLine": 48}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18813, "scanner": "repobility", "fingerprint": "b07f744a516582bb445aa1800e8fa668", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/configs.py"}, "region": {"startLine": 53}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18812, "scanner": "repobility", "fingerprint": "b147403e8959ee83cbfc19f31bb00b0e", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/configs.py"}, "region": {"startLine": 26}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18811, "scanner": "repobility", "fingerprint": "1671d9474b620ca4c556d1db8d09d964", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/configs.py"}, "region": {"startLine": 10}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18810, "scanner": "repobility", "fingerprint": "be35d858b8341a0997ebc840cf9e0e6b", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/qwen3_vl/model.py"}, "region": {"startLine": 53}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18809, "scanner": "repobility", "fingerprint": "8df9511dd6953c38a86ec704db21edae", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/qwen3_vl/vision_encoder.py"}, "region": {"startLine": 465}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18808, "scanner": "repobility", "fingerprint": "e0187d7959ae5a287d9fae73b8eab2fe", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/gpt_oss/model.py"}, "region": {"startLine": 183}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18807, "scanner": "repobility", "fingerprint": "69682dc0c913e8901a78f850dbaba2ef", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/gpt_oss/model.py"}, "region": {"startLine": 130}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18806, "scanner": "repobility", "fingerprint": "854bf0e08902306d0e794e31e2d9a13a", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/gpt_oss/model.py"}, "region": {"startLine": 40}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18805, "scanner": "repobility", "fingerprint": "3576b44cf0df9dd05a91c1b54fd664f6", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/gpt_oss/moe.py"}, "region": {"startLine": 227}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18804, "scanner": "repobility", "fingerprint": "07d55251a5b3ecc0e0df73549157fefa", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/gpt_oss/moe.py"}, "region": {"startLine": 130}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18803, "scanner": "repobility", "fingerprint": "3d28a47577054c92df91577a37a4a63c", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/qwen3/model.py"}, "region": {"startLine": 82}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18802, "scanner": "repobility", "fingerprint": "40e5c92c2088ea5d49816229ea6753a8", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/qwen3/model.py"}, "region": {"startLine": 36}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18801, "scanner": "repobility", "fingerprint": "22e31f18ddc20b1f17e62e7de5ee73d0", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/llama4/model.py"}, "region": {"startLine": 116}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18800, "scanner": "repobility", "fingerprint": "e7a7b523ae7be339cf5d48322dc19fef", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/llama4/model.py"}, "region": {"startLine": 72}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18799, "scanner": "repobility", "fingerprint": "49b474c470d914d5f03c3a985c9bd33d", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/llama3/model.py"}, "region": {"startLine": 66}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18798, "scanner": "repobility", "fingerprint": "2f7eb2f850559514212ebfbe8c5d6c92", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/llama3/model.py"}, "region": {"startLine": 32}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18797, "scanner": "repobility", "fingerprint": "40cc2c672b30dc18febd6ef773f5e7f6", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/trainer.py"}, "region": {"startLine": 53}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18796, "scanner": "repobility", "fingerprint": "86575883713cd02ea59c1db993bd9ef9", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_embedding.py"}, "region": {"startLine": 81}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18795, "scanner": "repobility", "fingerprint": "afe4489f060b789ba23d6fc1715b7d4b", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_download_hf_assets.py"}, "region": {"startLine": 168}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18794, "scanner": "repobility", "fingerprint": "a508212c94b846b37a4b499aca2a3588", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_download_hf_assets.py"}, "region": {"startLine": 144}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18793, "scanner": "repobility", "fingerprint": "04081b4d56e6e543cb4c4e454ff02a8c", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_download_hf_assets.py"}, "region": {"startLine": 130}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18792, "scanner": "repobility", "fingerprint": "13b17f065dac454c242b309c677d16c4", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_download_hf_assets.py"}, "region": {"startLine": 129}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18791, "scanner": "repobility", "fingerprint": "a26f66d99a013c0bf3b550a6e7544c29", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_download_hf_assets.py"}, "region": {"startLine": 121}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18790, "scanner": "repobility", "fingerprint": "e0166d44f4dc17e9bb43e51fba1e4087", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_download_hf_assets.py"}, "region": {"startLine": 120}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18789, "scanner": "repobility", "fingerprint": "24d0b1df17bdb4558dc7fc2761f0278b", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_download_hf_assets.py"}, "region": {"startLine": 107}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18788, "scanner": "repobility", "fingerprint": "41ba66dc6c1db7ad3e4e95c896575b99", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_download_hf_assets.py"}, "region": {"startLine": 106}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18787, "scanner": "repobility", "fingerprint": "d6c06737b78ca0eeeebe6788e319980d", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_download_hf_assets.py"}, "region": {"startLine": 94}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18786, "scanner": "repobility", "fingerprint": "11c05e87df9d83ad9894645e72de8655", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_download_hf_assets.py"}, "region": {"startLine": 93}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18785, "scanner": "repobility", "fingerprint": "933c5e4a6af7985f5ab378415bf9386f", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_parallel_dims.py"}, "region": {"startLine": 233}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18784, "scanner": "repobility", "fingerprint": "b3baed215557d06da79ac32731398563", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_parallel_dims.py"}, "region": {"startLine": 199}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18783, "scanner": "repobility", "fingerprint": "2440b33aafd5791c95fb5dd87929c630", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_parallel_dims.py"}, "region": {"startLine": 184}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18782, "scanner": "repobility", "fingerprint": "9488b02d44e9274c50e8b4b3ef5f595e", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_parallel_dims.py"}, "region": {"startLine": 123}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18781, "scanner": "repobility", "fingerprint": "973178f6732b8b45031d5375188e94d6", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_parallel_dims.py"}, "region": {"startLine": 109}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18780, "scanner": "repobility", "fingerprint": "02aaca869121de82c8d6690f2e25718e", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_parallel_dims.py"}, "region": {"startLine": 95}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18779, "scanner": "repobility", "fingerprint": "6a68223ff035243fca67b3606dff315c", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_parallel_dims.py"}, "region": {"startLine": 81}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18778, "scanner": "repobility", "fingerprint": "f7e4c5490e3754d383d8f433ce5aa34a", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_parallel_dims.py"}, "region": {"startLine": 67}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18777, "scanner": "repobility", "fingerprint": "6388664e512831005adf0033e1b6b493", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_parallel_dims.py"}, "region": {"startLine": 47}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18776, "scanner": "repobility", "fingerprint": "cf72915fd77d5449cda1e8442a2cfd57", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_parallel_dims.py"}, "region": {"startLine": 27}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18775, "scanner": "repobility", "fingerprint": "5b076d6bdee38e55fb0a986f55ab8e35", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_train_spec.py"}, "region": {"startLine": 21}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18774, "scanner": "repobility", "fingerprint": "9020cd7957904ac8c0ffe1c0c3b8c76f", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_set_determinism.py"}, "region": {"startLine": 300}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18773, "scanner": "repobility", "fingerprint": "ff2d6b8440acd86aec95b5d543e8bfb7", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_set_determinism.py"}, "region": {"startLine": 299}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18772, "scanner": "repobility", "fingerprint": "6588917755e22ee369110dd83c3c1d45", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_set_determinism.py"}, "region": {"startLine": 280}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18771, "scanner": "repobility", "fingerprint": "8fd51c93879f42cf626e6ff93f202a8c", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_set_determinism.py"}, "region": {"startLine": 279}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18770, "scanner": "repobility", "fingerprint": "9c99715cddd4af8b8621e5af82baa6d0", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_set_determinism.py"}, "region": {"startLine": 256}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18769, "scanner": "repobility", "fingerprint": "8132a3938e130d6726f6076e2100b4d8", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_set_determinism.py"}, "region": {"startLine": 255}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18768, "scanner": "repobility", "fingerprint": "b5ddfe5b13152207c0fa7535ac88a0c8", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_set_determinism.py"}, "region": {"startLine": 176}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18767, "scanner": "repobility", "fingerprint": "d820eab16e94d8f09b2018aaa71d937a", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_set_determinism.py"}, "region": {"startLine": 175}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18766, "scanner": "repobility", "fingerprint": "2dc62715f7787a9e8a7d4787c5e2c763", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_set_determinism.py"}, "region": {"startLine": 112}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18765, "scanner": "repobility", "fingerprint": "39687aa7dfd9c5291cc3cc855fac237e", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@patch(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_set_determinism.py"}, "region": {"startLine": 111}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18764, "scanner": "repobility", "fingerprint": "a8994c0b2845c7f795636bc9b3fc8b2f", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@parametrize(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_tokenizer.py"}, "region": {"startLine": 301}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18763, "scanner": "repobility", "fingerprint": "ec45020823c0c05c583abd73303df9c5", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_configurable.py"}, "region": {"startLine": 126}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18762, "scanner": "repobility", "fingerprint": "a2f87a278b470f48b0a3b31b115f5ce2", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_configurable.py"}, "region": {"startLine": 117}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18761, "scanner": "repobility", "fingerprint": "1213e34ef3ffac468e2698c22ba463b1", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_configurable.py"}, "region": {"startLine": 65}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18760, "scanner": "repobility", "fingerprint": "95d9d2e8f4e309ee6fb1516232eaf5ca", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_configurable.py"}, "region": {"startLine": 56}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18759, "scanner": "repobility", "fingerprint": "50b09cc0332f6ea5d848f7728b46ee8e", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_configurable.py"}, "region": {"startLine": 39}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18758, "scanner": "repobility", "fingerprint": "e7a7a12cbfd14709a6c51df216ead261", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_configurable.py"}, "region": {"startLine": 28}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18757, "scanner": "repobility", "fingerprint": "274d91aa127d3170a966bf0fc240fa3b", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_configurable.py"}, "region": {"startLine": 17}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18756, "scanner": "repobility", "fingerprint": "99032b4558aad22dfd54b769cc78ff6d", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_module.py"}, "region": {"startLine": 321}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18755, "scanner": "repobility", "fingerprint": "7e72696f3b9c995e5901185b15c94578", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_module.py"}, "region": {"startLine": 300}}}]}, {"ruleId": "ERRH005", "level": "warning", "message": {"text": "PHP @ error-suppress operator"}, "properties": {"repobilityId": 18754, "scanner": "repobility", "fingerprint": "b3b10588874c15af18de26e279e82e42", "category": "error_handling", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "@dataclass(", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-error-suppress"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_module.py"}, "region": {"startLine": 279}}}]}, {"ruleId": "LOG001", "level": "warning", "message": {"text": "PII printed to stdout/stderr"}, "properties": {"repobilityId": 16831, "scanner": "repobility", "fingerprint": "bb9d47b91b0d97e60086389ae09f2b64", "category": "logging", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "print(f\"Warning: Could not load official token", "aljefra_cwe": ["CWE-532"], "aljefra_owasp": "A09:2021", "aljefra_pattern_slug": "print-pii"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_tokenizer.py"}, "region": {"startLine": 346}}}]}, {"ruleId": "LOG001", "level": "warning", "message": {"text": "PII printed to stdout/stderr"}, "properties": {"repobilityId": 16830, "scanner": "repobility", "fingerprint": "4b119f46833dbb57b441b554c8270d4e", "category": "logging", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "print(\n                    \"You need to pass a valid `--hf_token", "aljefra_cwe": ["CWE-532"], "aljefra_owasp": "A09:2021", "aljefra_pattern_slug": "print-pii"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/download_hf_assets.py"}, "region": {"startLine": 156}}}]}, {"ruleId": "CONC002", "level": "warning", "message": {"text": "Concurrency \u2014 TOCTOU race via os.path.exists+open"}, "properties": {"repobilityId": 16278, "scanner": "repobility", "fingerprint": "d7397291c4523c5311cabc563404cc38", "category": "race_condition", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "if os.path.exists(self._code_path):\n            with open(", "aljefra_cwe": ["CWE-367"], "aljefra_owasp": null, "aljefra_pattern_slug": "toctou-os-path-exists"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/custom_codegen.py"}, "region": {"startLine": 426}}}]}, {"ruleId": "CONC002", "level": "warning", "message": {"text": "Concurrency \u2014 TOCTOU race via os.path.exists+open"}, "properties": {"repobilityId": 16277, "scanner": "repobility", "fingerprint": "bb7280e98eed6e6ad785875605c2edcb", "category": "race_condition", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "if os.path.exists(config_path):\n            with open(", "aljefra_cwe": ["CWE-367"], "aljefra_owasp": null, "aljefra_pattern_slug": "toctou-os-path-exists"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/tokenizer.py"}, "region": {"startLine": 164}}}]}, {"ruleId": "CONC002", "level": "warning", "message": {"text": "Concurrency \u2014 TOCTOU race via os.path.exists+open"}, "properties": {"repobilityId": 16276, "scanner": "repobility", "fingerprint": "b8334b38d7ea44d5d10262b9b663a568", "category": "race_condition", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "if os.path.exists(jinja_path):\n                with open(", "aljefra_cwe": ["CWE-367"], "aljefra_owasp": null, "aljefra_pattern_slug": "toctou-os-path-exists"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/tokenizer.py"}, "region": {"startLine": 156}}}]}, {"ruleId": "CONC002", "level": "warning", "message": {"text": "Concurrency \u2014 TOCTOU race via os.path.exists+open"}, "properties": {"repobilityId": 16275, "scanner": "repobility", "fingerprint": "de2ec669daae0df1ba459dc35a6101ec", "category": "race_condition", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "if os.path.exists(mapping_path):\n                    with open(", "aljefra_cwe": ["CWE-367"], "aljefra_owasp": null, "aljefra_pattern_slug": "toctou-os-path-exists"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/model/state_dict_adapter.py"}, "region": {"startLine": 48}}}]}, {"ruleId": "DKR007", "level": "warning", "message": {"text": "Docker build context has no .dockerignore"}, "properties": {"repobilityId": 10292, "scanner": "repobility-docker", "fingerprint": "c98378cf8c37e4866e89d6ca06a24b7e8c44654aa34e6e4bf1367c4a4c0c5b44", "category": "docker", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Dockerfile exists but repository root has no .dockerignore.", "evidence": {"rule_id": "DKR007", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|c98378cf8c37e4866e89d6ca06a24b7e8c44654aa34e6e4bf1367c4a4c0c5b44"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".dockerignore"}, "region": {"startLine": 1}}}]}, {"ruleId": "SEC007", "level": "warning", "message": {"text": "[SEC007] Unsafe Deserialization: Unsafe deserialization can execute arbitrary code."}, "properties": {"repobilityId": 10290, "scanner": "repobility-threat-engine", "fingerprint": "f14fee717513b7f190f41dc116d40e6a50f8a5d7ff45e00d7ea99e6a8bcfd76f", "category": "deserialization", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "pickle.loads(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC007", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|deserialization|token|269|sec007"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/precompile.py"}, "region": {"startLine": 269}}}]}, {"ruleId": "SEC007", "level": "warning", "message": {"text": "[SEC007] Unsafe Deserialization: Unsafe deserialization can execute arbitrary code."}, "properties": {"repobilityId": 10289, "scanner": "repobility-threat-engine", "fingerprint": "27685627a020bda6ce81c00116bf4b5ee36f90aa13088ec1d7de4fe09dd970c1", "category": "deserialization", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "pickle.loads(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC007", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|deserialization|token|167|sec007"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/dataloader.py"}, "region": {"startLine": 167}}}]}, {"ruleId": "SEC005", "level": "warning", "message": {"text": "[SEC005] Command Injection Risk: Unsafe shell execution or eval of user input."}, "properties": {"repobilityId": 10286, "scanner": "repobility-threat-engine", "fingerprint": "d29332570c2b5d959b975d8020ba4a3d905adfba8623ae77bc52bc0acf220060", "category": "injection", "severity": "medium", "confidence": 0.5, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "shell=True detected \u2014 verify command source is not user-controllable", "evidence": {"match": "eval(\n                            input", "reason": "shell=True detected \u2014 verify command source is not user-controllable", "rule_id": "SEC005", "scanner": "repobility-threat-engine", "confidence": 0.5, "correlation_key": "code|injection|token|289|sec005"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/validate.py"}, "region": {"startLine": 289}}}]}, {"ruleId": "SEC005", "level": "warning", "message": {"text": "[SEC005] Command Injection Risk: Unsafe shell execution or eval of user input."}, "properties": {"repobilityId": 10285, "scanner": "repobility-threat-engine", "fingerprint": "5bec1d91b99b5975fb9f6926b325ec7e32fcd4107c6ac87a8fdde4a6abd756c5", "category": "injection", "severity": "medium", "confidence": 0.5, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "shell=True detected \u2014 verify command source is not user-controllable", "evidence": {"match": "subprocess.Popen(\n            cmd,\n            shell=True", "reason": "shell=True detected \u2014 verify command source is not user-controllable", "rule_id": "SEC005", "scanner": "repobility-threat-engine", "confidence": 0.5, "correlation_key": "code|injection|scripts/loss_compare.py|124|sec005"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/loss_compare.py"}, "region": {"startLine": 124}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 10284, "scanner": "repobility-ai-code-hygiene", "fingerprint": "4cd01ea36141d025bc3c92d4995b35e332e4355e77523701ba8a2576e4dd3e98", "category": "quality", "severity": "medium", "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": "torchtitan/experiments/graph_trainer/llama3/parallelize.py", "duplicate_line": 24, "correlation_key": "fp|4cd01ea36141d025bc3c92d4995b35e332e4355e77523701ba8a2576e4dd3e98"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/llama3/parallelize.py"}, "region": {"startLine": 25}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 10283, "scanner": "repobility-ai-code-hygiene", "fingerprint": "8b82b2339f7bfc1fc8872ad95a8cec90a35190e565a5ec7cfd2136a677c4fc2e", "category": "quality", "severity": "medium", "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": "torchtitan/models/gpt_oss/model.py", "duplicate_line": 141, "correlation_key": "fp|8b82b2339f7bfc1fc8872ad95a8cec90a35190e565a5ec7cfd2136a677c4fc2e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/llama3/model.py"}, "region": {"startLine": 51}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 10282, "scanner": "repobility-ai-code-hygiene", "fingerprint": "845253e4e09a5b63636fda8addff14403079573d0069d247949ce9149b3b55a6", "category": "quality", "severity": "medium", "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": "torchtitan/models/deepseek_v3/config_registry.py", "duplicate_line": 26, "correlation_key": "fp|845253e4e09a5b63636fda8addff14403079573d0069d247949ce9149b3b55a6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/llama3/config_registry.py"}, "region": {"startLine": 29}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 10281, "scanner": "repobility-ai-code-hygiene", "fingerprint": "ac0599eb53edbc2488df778d39455008392217c6639eb059f9d4632323d95f68", "category": "quality", "severity": "medium", "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": "torchtitan/models/deepseek_v3/parallelize.py", "duplicate_line": 18, "correlation_key": "fp|ac0599eb53edbc2488df778d39455008392217c6639eb059f9d4632323d95f68"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/gpt_oss/parallelize.py"}, "region": {"startLine": 28}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 10280, "scanner": "repobility-ai-code-hygiene", "fingerprint": "6319d641e2ecdc0320657c370f36380736ae0a21a37f39398a8cfadb045fb4ec", "category": "quality", "severity": "medium", "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": "torchtitan/models/deepseek_v3/config_registry.py", "duplicate_line": 26, "correlation_key": "fp|6319d641e2ecdc0320657c370f36380736ae0a21a37f39398a8cfadb045fb4ec"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/gpt_oss/config_registry.py"}, "region": {"startLine": 24}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 10279, "scanner": "repobility-ai-code-hygiene", "fingerprint": "db10e59d6d85c211eec0743c9d6bbee68b27ba0d81dd1bc203ef073ce1c323f9", "category": "quality", "severity": "medium", "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": "torchtitan/hf_datasets/text_datasets.py", "duplicate_line": 37, "correlation_key": "fp|db10e59d6d85c211eec0743c9d6bbee68b27ba0d81dd1bc203ef073ce1c323f9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/flux_datasets.py"}, "region": {"startLine": 101}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 10278, "scanner": "repobility-ai-code-hygiene", "fingerprint": "4ed7768cdd429563da799a6eb6f1725bb92b4e017028ca62f771b33b12f09592", "category": "quality", "severity": "medium", "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": "torchtitan/distributed/pipeline_parallel.py", "duplicate_line": 15, "correlation_key": "fp|4ed7768cdd429563da799a6eb6f1725bb92b4e017028ca62f771b33b12f09592"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/transformers_modeling_backend/pipeline.py"}, "region": {"startLine": 10}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 10277, "scanner": "repobility-ai-code-hygiene", "fingerprint": "c94f9dfcfb9e72e9db1ab1c4401edbde8f233b9fb98ea30f4f5a1a3dfb383fe8", "category": "quality", "severity": "medium", "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": "torchtitan/experiments/graph_trainer/llama3/parallelize.py", "duplicate_line": 24, "correlation_key": "fp|c94f9dfcfb9e72e9db1ab1c4401edbde8f233b9fb98ea30f4f5a1a3dfb383fe8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/transformers_modeling_backend/parallelize.py"}, "region": {"startLine": 29}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 10276, "scanner": "repobility-ai-code-hygiene", "fingerprint": "b95af7ade9b3049535fb99ac303c9d81ad23ad462520dd09a55eb991270da768", "category": "quality", "severity": "medium", "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": "torchtitan/experiments/graph_trainer/deepseek_v3/parallelize.py", "duplicate_line": 1, "correlation_key": "fp|b95af7ade9b3049535fb99ac303c9d81ad23ad462520dd09a55eb991270da768"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/qwen3/parallelize.py"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 10275, "scanner": "repobility-ai-code-hygiene", "fingerprint": "b271c842280daeb5aceab2b17511449161a5791117f447a5e52eab113e840137", "category": "quality", "severity": "medium", "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": "torchtitan/experiments/graph_trainer/deepseek_v3/parallelize.py", "duplicate_line": 2, "correlation_key": "fp|b271c842280daeb5aceab2b17511449161a5791117f447a5e52eab113e840137"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/llama3/parallelize.py"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 10274, "scanner": "repobility-ai-code-hygiene", "fingerprint": "1d76706819e0c558d2e227e8576456baaa8cdf90dfa5cbf9175a36ce5a763bd5", "category": "quality", "severity": "medium", "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": "torchtitan/experiments/forge/example_train.py", "duplicate_line": 191, "correlation_key": "fp|1d76706819e0c558d2e227e8576456baaa8cdf90dfa5cbf9175a36ce5a763bd5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/ft/trainer.py"}, "region": {"startLine": 282}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 10273, "scanner": "repobility-ai-code-hygiene", "fingerprint": "1231a30475fa96f7ac9c0495375327a7f72145bafb48c1c45079ee8169c1a542", "category": "quality", "severity": "medium", "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": "tests/integration_tests/features.py", "duplicate_line": 82, "correlation_key": "fp|1231a30475fa96f7ac9c0495375327a7f72145bafb48c1c45079ee8169c1a542"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/integration_tests/h100.py"}, "region": {"startLine": 12}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22159, "scanner": "repobility", "fingerprint": "041b677de08b0e8a401f7ad5f56a91f9", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "TODO: Switch to upstream PyTorch implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/passes.py"}, "region": {"startLine": 197}}}]}, {"ruleId": "DKR002", "level": "none", "message": {"text": "Dockerfile base image is selected through a build variable"}, "properties": {"repobilityId": 10291, "scanner": "repobility-docker", "fingerprint": "7d2a9336878750cb650d36822d3ba43a70ed3dea11bfc780ae9cd45d4c870fd1", "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": "${BASE_IMAGE}", "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|7d2a9336878750cb650d36822d3ba43a70ed3dea11bfc780ae9cd45d4c870fd1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".ci/docker/ubuntu/Dockerfile"}, "region": {"startLine": 3}}}]}, {"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": 10288, "scanner": "repobility-threat-engine", "fingerprint": "0c7c4333832b2d48b45374a6e46c0b70165456dc47f3ba29d84ac5c3796dc3a0", "category": "credential_exposure", "severity": "info", "confidence": 0.15, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "The token term appears to refer to NLP/model token counts, a tokenizer, or blockchain token metadata rather than credential material", "evidence": {"match": "logger.info(\"Loading tokenizer from tokenizer.json\")", "reason": "The token term appears to refer to NLP/model token counts, a tokenizer, or blockchain token metadata rather than credential material", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.15, "correlation_key": "secret|token|19|logger.info loading tokenizer from tokenizer.json"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/tokenizer.py"}, "region": {"startLine": 191}}}]}, {"ruleId": "SEC011", "level": "none", "message": {"text": "[SEC011] Unsafe PyTorch Model Loading: torch.load() uses pickle internally and can execute arbitrary code from untrusted model files."}, "properties": {"repobilityId": 10287, "scanner": "repobility-threat-engine", "fingerprint": "9e7b39d3e3414d227a586d859898e543c278d5a2197e19f81050f18d505b7a54", "category": "deserialization", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe pattern 'weights_only\\s*=\\s*True' detected on same line", "evidence": {"match": "torch.load(", "reason": "Safe pattern 'weights_only\\s*=\\s*True' detected on same line", "rule_id": "SEC011", "scanner": "repobility-threat-engine", "confidence": 0.1, "correlation_key": "code|deserialization|token|228|sec011"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/checkpoint.py"}, "region": {"startLine": 228}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18990, "scanner": "repobility", "fingerprint": "d28ef43c9829b93efc9e6f82df302f36", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vllm_decode_vs_prefill", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/tests/test_bitwise_parity.py"}, "region": {"startLine": 529}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18989, "scanner": "repobility", "fingerprint": "2ccb096d744d0bf5e3b6990eb0ae3620", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_trainer_vs_vllm_prefill", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/tests/test_bitwise_parity.py"}, "region": {"startLine": 503}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18988, "scanner": "repobility", "fingerprint": "3e3075d5db0d1321ddc722bf7c1c2da3", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_batch_invariance", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/tests/test_bitwise_parity.py"}, "region": {"startLine": 473}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18987, "scanner": "repobility", "fingerprint": "3c5c697a5bfdf561678fb335a76de799", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_llama4_fsdp", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_trace_module.py"}, "region": {"startLine": 1056}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18986, "scanner": "repobility", "fingerprint": "2bbdf50c1778c0c24d3912afa548323d", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_deepseek_v3_fsdp", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_trace_module.py"}, "region": {"startLine": 1047}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18985, "scanner": "repobility", "fingerprint": "f0c3cb6593704f6ba82226ee4a862c76", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_qwen3_fsdp", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_trace_module.py"}, "region": {"startLine": 1040}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18984, "scanner": "repobility", "fingerprint": "51ca5314cbed1c5f2e1a2b2f18d1f7a4", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_llama3_fsdp", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_trace_module.py"}, "region": {"startLine": 1034}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18983, "scanner": "repobility", "fingerprint": "5bb2c08b08a819beb38cc0a3965641b9", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_gpt_oss", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_trace_module.py"}, "region": {"startLine": 815}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18982, "scanner": "repobility", "fingerprint": "b399fc4e1452c282136ad3e432f8af2d", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_llama4", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_trace_module.py"}, "region": {"startLine": 798}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18981, "scanner": "repobility", "fingerprint": "0744e9fe95c905eb81350f805fbaa723", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_deepseek_v3", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_trace_module.py"}, "region": {"startLine": 658}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18980, "scanner": "repobility", "fingerprint": "43802b023d6ea2edcd96f2461d9e85e4", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_qwen3_moe", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_trace_module.py"}, "region": {"startLine": 651}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18979, "scanner": "repobility", "fingerprint": "83fa8c6ccec475181dba9feb9216b724", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_qwen3", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_trace_module.py"}, "region": {"startLine": 644}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18978, "scanner": "repobility", "fingerprint": "2f7ea08a4e1e6980ef57d5d62104fd15", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_llama3", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_trace_module.py"}, "region": {"startLine": 638}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18977, "scanner": "repobility", "fingerprint": "51dcaaa685d02fb3ded6fd37b9cee515", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_delete_nonexistent_noop", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_precompile.py"}, "region": {"startLine": 60}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18976, "scanner": "repobility", "fingerprint": "f1d6571e47329910cb914d3967b15659", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_eager_self_deterministic", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_bitwise_deterministic.py"}, "region": {"startLine": 430}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18975, "scanner": "repobility", "fingerprint": "41ab957a61c5d77778c70f22dddafd52", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_precompile_vs_trace", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_bitwise_deterministic.py"}, "region": {"startLine": 407}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18974, "scanner": "repobility", "fingerprint": "0e7c7d0bd92fd90eb9e45e1331be5417", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_aot_fx_trace_vs_eager", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_bitwise_deterministic.py"}, "region": {"startLine": 399}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18973, "scanner": "repobility", "fingerprint": "5b69e0e01eea25163917ae8f0a73a75d", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_eager_self_deterministic", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_bitwise_deterministic.py"}, "region": {"startLine": 381}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18972, "scanner": "repobility", "fingerprint": "9b56a33ca8f7b456cc2c3278ea054b5d", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_precompile_vs_trace", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_bitwise_deterministic.py"}, "region": {"startLine": 358}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18971, "scanner": "repobility", "fingerprint": "c4023209b5506971689c86a7a7bd7fb4", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_aot_fx_trace_vs_eager", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_bitwise_deterministic.py"}, "region": {"startLine": 351}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18970, "scanner": "repobility", "fingerprint": "aafdb0326b53f71884eb31d8bcf339fc", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_eager_self_deterministic", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_bitwise_deterministic.py"}, "region": {"startLine": 333}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18969, "scanner": "repobility", "fingerprint": "c5b2007572924044502d05521dac732d", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_precompile_vs_trace", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_bitwise_deterministic.py"}, "region": {"startLine": 315}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18968, "scanner": "repobility", "fingerprint": "3a0d5cd36e6516271480885b0bf7cee9", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_aot_fx_trace_vs_eager", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_bitwise_deterministic.py"}, "region": {"startLine": 308}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18967, "scanner": "repobility", "fingerprint": "43e7ffa7b10e9f52e67a9cd826aef429", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_eager_self_deterministic", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_bitwise_deterministic.py"}, "region": {"startLine": 290}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18966, "scanner": "repobility", "fingerprint": "950890138645910ba7b23a4858d1aee0", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_list_files", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_download_hf_assets.py"}, "region": {"startLine": 145}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18965, "scanner": "repobility", "fingerprint": "84679364f0ee255f92085d3226fc63f0", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_additional_patterns", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_download_hf_assets.py"}, "region": {"startLine": 131}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18964, "scanner": "repobility", "fingerprint": "51648165c6085705e0160cbdcfec1853", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_download_all_files", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_download_hf_assets.py"}, "region": {"startLine": 122}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18963, "scanner": "repobility", "fingerprint": "7d0a50ce5018af9aa1f83996d9b5e875", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_download_multiple_asset_types", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_download_hf_assets.py"}, "region": {"startLine": 108}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18962, "scanner": "repobility", "fingerprint": "990be5115443780e2113505f282405c4", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_download_single_asset_types", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_download_hf_assets.py"}, "region": {"startLine": 95}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18961, "scanner": "repobility", "fingerprint": "96e345e7a62a015e09f62b85fe8ec9d5", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_set_determinism_single_gpu", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_set_determinism.py"}, "region": {"startLine": 257}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18960, "scanner": "repobility", "fingerprint": "8eba84aa28be4359fdc1058ef2b88bb3", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_download_and_build_tokenizer", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_tokenizer.py"}, "region": {"startLine": 310}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18959, "scanner": "repobility", "fingerprint": "1cbcfd1b1f8e1ffb88a70bf91eafa1fb", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_step_noop_when_both_profilers_none", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_profiler.py"}, "region": {"startLine": 105}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18958, "scanner": "repobility", "fingerprint": "91461377bc57fd97600a47ab96688360", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_default_args_context_manager", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_profiler.py"}, "region": {"startLine": 99}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18957, "scanner": "repobility", "fingerprint": "7f30f3cefdfedb30336fc3d607fa88db", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_override_skips_verification", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_module.py"}, "region": {"startLine": 316}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18956, "scanner": "repobility", "fingerprint": "eed9e727819411ada0429a4183ac36f6", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_passes_for_all_module", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_module.py"}, "region": {"startLine": 274}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18955, "scanner": "repobility", "fingerprint": "dfdb646104b065e36cbfabb176d1f64a", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_sequential_init_states", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_module.py"}, "region": {"startLine": 224}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18954, "scanner": "repobility", "fingerprint": "542b75fd5a4435dddd23e69e376fbfd3", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_init_states_noop_for_parameterless", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_module.py"}, "region": {"startLine": 166}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18953, "scanner": "repobility", "fingerprint": "855d6bbe5590e5d6365add3856d0ae97", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_no_params_no_error", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_module.py"}, "region": {"startLine": 66}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18952, "scanner": "repobility", "fingerprint": "3f6a0440da6be617a8570668d5bd2e7d", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_pp_guard_does_not_raise_without_weight_tying", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_weight_tying.py"}, "region": {"startLine": 81}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18951, "scanner": "repobility", "fingerprint": "6bbef4a4b21a0e886a216ee9c2782c8e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_llama3_tp1_skips_check", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_tp_kv_heads_validation.py"}, "region": {"startLine": 148}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18950, "scanner": "repobility", "fingerprint": "f5055f0dc4538aa5741e0ae96a6b442d", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_llama3_mha_none_kv_heads_does_not_raise", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_tp_kv_heads_validation.py"}, "region": {"startLine": 143}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18949, "scanner": "repobility", "fingerprint": "e7d97159406f05f2e58ae6f5fc2402c1", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_llama3_valid_gqa_does_not_raise", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_tp_kv_heads_validation.py"}, "region": {"startLine": 138}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 18948, "scanner": "repobility", "fingerprint": "0dbdf85697ac1983e49bc4de79694078", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_generate", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/generate/test_generate.py"}, "region": {"startLine": 71}}}]}, {"ruleId": "NULL010", "level": "error", "message": {"text": "Scala: .get on Option"}, "properties": {"repobilityId": 18947, "scanner": "repobility", "fingerprint": "442c2891298d0eb1e3bea3b0e5eb8499", "category": "null_safety", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": ".get()", "aljefra_cwe": ["CWE-476"], "aljefra_owasp": null, "aljefra_pattern_slug": "scala-get-on-option"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/grpo.py"}, "region": {"startLine": 548}}}]}, {"ruleId": "NULL010", "level": "error", "message": {"text": "Scala: .get on Option"}, "properties": {"repobilityId": 18946, "scanner": "repobility", "fingerprint": "8df66917300724191fd47697862141eb", "category": "null_safety", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": ".get()", "aljefra_cwe": ["CWE-476"], "aljefra_owasp": null, "aljefra_pattern_slug": "scala-get-on-option"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/grpo.py"}, "region": {"startLine": 546}}}]}, {"ruleId": "NULL010", "level": "error", "message": {"text": "Scala: .get on Option"}, "properties": {"repobilityId": 18945, "scanner": "repobility", "fingerprint": "6379ec8782365f9b0059422673ad5d47", "category": "null_safety", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": ".get()", "aljefra_cwe": ["CWE-476"], "aljefra_owasp": null, "aljefra_pattern_slug": "scala-get-on-option"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/grpo.py"}, "region": {"startLine": 541}}}]}, {"ruleId": "NULL010", "level": "error", "message": {"text": "Scala: .get on Option"}, "properties": {"repobilityId": 18944, "scanner": "repobility", "fingerprint": "8faf820ebcee0436673f3bf3bc253659", "category": "null_safety", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": ".get()", "aljefra_cwe": ["CWE-476"], "aljefra_owasp": null, "aljefra_pattern_slug": "scala-get-on-option"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/grpo.py"}, "region": {"startLine": 539}}}]}, {"ruleId": "NULL010", "level": "error", "message": {"text": "Scala: .get on Option"}, "properties": {"repobilityId": 18943, "scanner": "repobility", "fingerprint": "225c211002def18a2b91a88518f75697", "category": "null_safety", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": ".get()", "aljefra_cwe": ["CWE-476"], "aljefra_owasp": null, "aljefra_pattern_slug": "scala-get-on-option"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/grpo.py"}, "region": {"startLine": 501}}}]}, {"ruleId": "NULL010", "level": "error", "message": {"text": "Scala: .get on Option"}, "properties": {"repobilityId": 18942, "scanner": "repobility", "fingerprint": "5273e301995a20724bd01570480adf5d", "category": "null_safety", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": ".get()", "aljefra_cwe": ["CWE-476"], "aljefra_owasp": null, "aljefra_pattern_slug": "scala-get-on-option"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/grpo.py"}, "region": {"startLine": 446}}}]}, {"ruleId": "NULL010", "level": "error", "message": {"text": "Scala: .get on Option"}, "properties": {"repobilityId": 18941, "scanner": "repobility", "fingerprint": "830630738ede9497164311a611cfb870", "category": "null_safety", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": ".get()", "aljefra_cwe": ["CWE-476"], "aljefra_owasp": null, "aljefra_pattern_slug": "scala-get-on-option"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/grpo.py"}, "region": {"startLine": 438}}}]}, {"ruleId": "NULL010", "level": "error", "message": {"text": "Scala: .get on Option"}, "properties": {"repobilityId": 18940, "scanner": "repobility", "fingerprint": "740d7013aa39ad9c11deb5ac11d93f55", "category": "null_safety", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": ".get()", "aljefra_cwe": ["CWE-476"], "aljefra_owasp": null, "aljefra_pattern_slug": "scala-get-on-option"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/grpo.py"}, "region": {"startLine": 436}}}]}, {"ruleId": "NULL010", "level": "error", "message": {"text": "Scala: .get on Option"}, "properties": {"repobilityId": 18939, "scanner": "repobility", "fingerprint": "9c1345494659df6d43a2c139b6e02c02", "category": "null_safety", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": ".get()", "aljefra_cwe": ["CWE-476"], "aljefra_owasp": null, "aljefra_pattern_slug": "scala-get-on-option"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/checkpoint.py"}, "region": {"startLine": 106}}}]}, {"ruleId": "ERRH003", "level": "error", "message": {"text": "except BaseException \u2014 catches SystemExit/KeyboardInterrupt"}, "properties": {"repobilityId": 18462, "scanner": "repobility", "fingerprint": "add56d1fb4905a4d765180cf5c7b915d", "category": "error_handling", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "except BaseException", "aljefra_cwe": ["CWE-705"], "aljefra_owasp": null, "aljefra_pattern_slug": "overcatch-baseexception"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/storage.py"}, "region": {"startLine": 69}}}]}, {"ruleId": "ERRH001", "level": "error", "message": {"text": "Bare except: pass \u2014 silent failure"}, "properties": {"repobilityId": 17463, "scanner": "repobility", "fingerprint": "04f19ce0daf5146d7f78953e2d627094", "category": "error_handling", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "except: pass", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "bare-except-pass"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/grpo.py"}, "region": {"startLine": 237}}}]}, {"ruleId": "LOG002", "level": "error", "message": {"text": "Credential interpolated into log f-string"}, "properties": {"repobilityId": 17391, "scanner": "repobility", "fingerprint": "479d13e75703c7ab81c04ab8fb59dbdf", "category": "logging", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "logger.warning(\n                    f\"Temporarily switching to previous default tokenizer path {old_token", "aljefra_cwe": ["CWE-532"], "aljefra_owasp": "A09:2021", "aljefra_pattern_slug": "logging-credential-via-fstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/config/manager.py"}, "region": {"startLine": 208}}}]}, {"ruleId": "CMDI006", "level": "error", "message": {"text": "Command injection \u2014 Ruby system/exec call"}, "properties": {"repobilityId": 16127, "scanner": "repobility", "fingerprint": "914c92218f55147fd24ed7b3ebe2da2b", "category": "command_injection", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "exec(", "aljefra_cwe": ["CWE-78"], "aljefra_owasp": null, "aljefra_pattern_slug": "ruby-system-call"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/custom_codegen.py"}, "region": {"startLine": 484}}}]}, {"ruleId": "CMDI006", "level": "error", "message": {"text": "Command injection \u2014 Ruby system/exec call"}, "properties": {"repobilityId": 16126, "scanner": "repobility", "fingerprint": "3cf82f137b7b0cbee27ce903e842694b", "category": "command_injection", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "exec(", "aljefra_cwe": ["CWE-78"], "aljefra_owasp": null, "aljefra_pattern_slug": "ruby-system-call"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/custom_codegen.py"}, "region": {"startLine": 468}}}]}, {"ruleId": "CMDI006", "level": "error", "message": {"text": "Command injection \u2014 Ruby system/exec call"}, "properties": {"repobilityId": 16125, "scanner": "repobility", "fingerprint": "43bb2d22f451e6c1090ba2cf0b1608bf", "category": "command_injection", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "exec(", "aljefra_cwe": ["CWE-78"], "aljefra_owasp": null, "aljefra_pattern_slug": "ruby-system-call"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/custom_codegen.py"}, "region": {"startLine": 38}}}]}, {"ruleId": "CMDI003", "level": "error", "message": {"text": "Command injection \u2014 subprocess shell=True"}, "properties": {"repobilityId": 16117, "scanner": "repobility", "fingerprint": "d3f27004b1fce7778ff357628496fd3b", "category": "command_injection", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "subprocess.run(cmd, text=True, shell=True", "aljefra_cwe": ["CWE-78"], "aljefra_owasp": null, "aljefra_pattern_slug": "python-subprocess-shell-true"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/tests/integration_tests.py"}, "region": {"startLine": 122}}}]}, {"ruleId": "CMDI003", "level": "error", "message": {"text": "Command injection \u2014 subprocess shell=True"}, "properties": {"repobilityId": 16116, "scanner": "repobility", "fingerprint": "af52d776327b09712fc41435d43d6ed3", "category": "command_injection", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "subprocess.run([cmd], text=True, shell=True", "aljefra_cwe": ["CWE-78"], "aljefra_owasp": null, "aljefra_pattern_slug": "python-subprocess-shell-true"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/ft/tests/integration_tests.py"}, "region": {"startLine": 44}}}]}, {"ruleId": "CMDI003", "level": "error", "message": {"text": "Command injection \u2014 subprocess shell=True"}, "properties": {"repobilityId": 16115, "scanner": "repobility", "fingerprint": "45fb01b55727c9dcee313eea1545a1ab", "category": "command_injection", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "subprocess.run([cmd], text=True, shell=True", "aljefra_cwe": ["CWE-78"], "aljefra_owasp": null, "aljefra_pattern_slug": "python-subprocess-shell-true"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/run_precompile_tests.py"}, "region": {"startLine": 43}}}]}, {"ruleId": "CMDI003", "level": "error", "message": {"text": "Command injection \u2014 subprocess shell=True"}, "properties": {"repobilityId": 16114, "scanner": "repobility", "fingerprint": "012899f823d3ce8bd81dbd1caffbc13d", "category": "command_injection", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "subprocess.run(\n        [cmd],\n        encoding=\"utf-8\",\n        errors=\"replace\",\n        shell=True", "aljefra_cwe": ["CWE-78"], "aljefra_owasp": null, "aljefra_pattern_slug": "python-subprocess-shell-true"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/integration_tests/run_tests.py"}, "region": {"startLine": 28}}}]}, {"ruleId": "CMDI003", "level": "error", "message": {"text": "Command injection \u2014 subprocess shell=True"}, "properties": {"repobilityId": 16113, "scanner": "repobility", "fingerprint": "ca8fb1d017cd671c1ee43ed866661476", "category": "command_injection", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "subprocess.Popen(\n            cmd,\n            shell=True", "aljefra_cwe": ["CWE-78"], "aljefra_owasp": null, "aljefra_pattern_slug": "python-subprocess-shell-true"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/loss_compare.py"}, "region": {"startLine": 124}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16215, "scanner": "repobility", "fingerprint": "814f86e72412751e99d39b841cd14268", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/protocols/state_dict_adapter.py"}, "region": {"startLine": 95}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16214, "scanner": "repobility", "fingerprint": "387dfd099719718b3bf1a04639d03606", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/tests/test_bitwise_parity.py"}, "region": {"startLine": 139}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16213, "scanner": "repobility", "fingerprint": "e5eabe5fc7de18d628a2f4499877c430", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/models/vllm_wrapper.py"}, "region": {"startLine": 430}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16212, "scanner": "repobility", "fingerprint": "3a2c4c763f79c9edee71506b353f88fb", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/actors/trainer.py"}, "region": {"startLine": 184}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16211, "scanner": "repobility", "fingerprint": "0a3a6792655de7a595127feeb6b56ed7", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/ft/checkpoint.py"}, "region": {"startLine": 168}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16210, "scanner": "repobility", "fingerprint": "5a629b55dfb0799d400d9745d606942e", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/ft/checkpoint.py"}, "region": {"startLine": 165}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16209, "scanner": "repobility", "fingerprint": "18d6a6c3da5d41b3fe0ad6a7feae92b1", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/ft/trainer.py"}, "region": {"startLine": 479}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16208, "scanner": "repobility", "fingerprint": "208960982112d51b3168f8a75d22f035", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/forge/example_train.py"}, "region": {"startLine": 343}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16207, "scanner": "repobility", "fingerprint": "b6c36de5338c136a39d03029872a72e0", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_profiler.py"}, "region": {"startLine": 129}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16206, "scanner": "repobility", "fingerprint": "5a5b1c593554c212dc3c4458c9ae325f", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_precompile.py"}, "region": {"startLine": 70}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16205, "scanner": "repobility", "fingerprint": "94b615f38629bedcfd02862935bfe4a4", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_precompile.py"}, "region": {"startLine": 50}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16204, "scanner": "repobility", "fingerprint": "a70a64a7f1cea2f26f9c55f18362c522", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_precompile.py"}, "region": {"startLine": 36}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16203, "scanner": "repobility", "fingerprint": "5784876417b1c27f0154eaefa78d51a0", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_precompile.py"}, "region": {"startLine": 29}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16202, "scanner": "repobility", "fingerprint": "74875258e6a9599f88bc82bddb8462f2", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load (", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_bitwise_deterministic.py"}, "region": {"startLine": 211}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16201, "scanner": "repobility", "fingerprint": "2064b3a3943ab0df9580107b2ac0dbcd", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/precompile.py"}, "region": {"startLine": 436}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16200, "scanner": "repobility", "fingerprint": "4d5f6daf5ba5845938190a4e850ad994", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/precompile.py"}, "region": {"startLine": 181}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16199, "scanner": "repobility", "fingerprint": "cc7695be436a7e23ccdf51bfd304d55f", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/cudagraph.py"}, "region": {"startLine": 147}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16198, "scanner": "repobility", "fingerprint": "06c06cadab04dec3b588cc9ddda3ceda", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/storage.py"}, "region": {"startLine": 74}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16197, "scanner": "repobility", "fingerprint": "e80ca7413b7a2e129d5f69e31e6f343d", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/storage.py"}, "region": {"startLine": 31}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16196, "scanner": "repobility", "fingerprint": "a98692fc259ac4aef32daf7dd112c702", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/tokenizer.py"}, "region": {"startLine": 199}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16195, "scanner": "repobility", "fingerprint": "f88851862a54c6a0a917ffcf73498a31", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/tokenizer.py"}, "region": {"startLine": 166}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16194, "scanner": "repobility", "fingerprint": "9ad98a5717eddee0573672bdd27d1799", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/checkpoint.py"}, "region": {"startLine": 618}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16193, "scanner": "repobility", "fingerprint": "8120930c0d95f3952e518958f4ea2e87", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/checkpoint.py"}, "region": {"startLine": 546}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16192, "scanner": "repobility", "fingerprint": "8452a634e4492021f94f28f63973fb90", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/checkpoint.py"}, "region": {"startLine": 538}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16191, "scanner": "repobility", "fingerprint": "ece96ea59b519fc2ad475384b0f095bf", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/checkpoint.py"}, "region": {"startLine": 227}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16190, "scanner": "repobility", "fingerprint": "4d294808da878c14a8e2fbcd04cdd6b9", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/model/state_dict_adapter.py"}, "region": {"startLine": 50}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16189, "scanner": "repobility", "fingerprint": "9064e733496d39ea92a71f7f882407f2", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/inference/infer.py"}, "region": {"startLine": 38}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16188, "scanner": "repobility", "fingerprint": "8a726985b99cbe9d14cfd5d15aa8be09", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/trainer.py"}, "region": {"startLine": 809}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16187, "scanner": "repobility", "fingerprint": "b80a74b671ef09c402f4f6869b01a0d9", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_checkpoint.py"}, "region": {"startLine": 702}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16186, "scanner": "repobility", "fingerprint": "6ce2740ef8eceaa35c6ff04d2c7d394d", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_checkpoint.py"}, "region": {"startLine": 595}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16185, "scanner": "repobility", "fingerprint": "9b68366ca737dc595bb5951069d5328b", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_checkpoint.py"}, "region": {"startLine": 396}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16184, "scanner": "repobility", "fingerprint": "27f1c07fc7ec29e3bb51021377082bda", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_checkpoint.py"}, "region": {"startLine": 386}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16183, "scanner": "repobility", "fingerprint": "0753e71fd91737605c1610d0bb552491", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_checkpoint.py"}, "region": {"startLine": 302}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16182, "scanner": "repobility", "fingerprint": "04286dcab4d556d276881a18e6e031c7", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_checkpoint.py"}, "region": {"startLine": 278}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16181, "scanner": "repobility", "fingerprint": "961dd92e8811df91fad99ba2fa560054", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_checkpoint.py"}, "region": {"startLine": 232}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16180, "scanner": "repobility", "fingerprint": "35cac5362586701e5bede42d3f32e0d4", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_checkpoint.py"}, "region": {"startLine": 190}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16179, "scanner": "repobility", "fingerprint": "2e40d238f8dbe0d9f5eb7f617498a643", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_checkpoint.py"}, "region": {"startLine": 158}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16178, "scanner": "repobility", "fingerprint": "2792bee1603874b0e80fe043a4add282", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_tokenizer.py"}, "region": {"startLine": 478}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16177, "scanner": "repobility", "fingerprint": "824499600e493f8e8f5b3f4297e4ca9b", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit_tests/test_tokenizer.py"}, "region": {"startLine": 457}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16176, "scanner": "repobility", "fingerprint": "a565717019361a9e96d7370d9a1ad276", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load (", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/generate/test_generate.py"}, "region": {"startLine": 273}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16175, "scanner": "repobility", "fingerprint": "f1dbb58f5a9e47b6d2f671bd85990b1d", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/generate/test_generate.py"}, "region": {"startLine": 168}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16174, "scanner": "repobility", "fingerprint": "3cdd55fb796b0a5c2001e97cd08374cc", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/checkpoint_conversion/convert_from_hf.py"}, "region": {"startLine": 36}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16173, "scanner": "repobility", "fingerprint": "dbcfd389c4a10260c3ca1340bafda302", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/checkpoint_conversion/convert_to_hf.py"}, "region": {"startLine": 43}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16172, "scanner": "repobility", "fingerprint": "43f45c1573b79352bba183ce45162def", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/checkpoint_conversion/numerical_tests_example.py"}, "region": {"startLine": 85}}}]}, {"ruleId": "EVAL006", "level": "error", "message": {"text": "Code execution \u2014 Lua loadstring"}, "properties": {"repobilityId": 16171, "scanner": "repobility", "fingerprint": "d8c1380897c0a624aadf232a0b5b0756", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "load(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "lua-loadstring"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/checkpoint_conversion/numerical_tests_qwen3_vl.py"}, "region": {"startLine": 256}}}]}, {"ruleId": "EVAL005", "level": "error", "message": {"text": "Code execution \u2014 PHP eval"}, "properties": {"repobilityId": 16170, "scanner": "repobility", "fingerprint": "374e1c2bf3594f09455a78bbe6257da3", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-eval"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/tests/test_bitwise_parity.py"}, "region": {"startLine": 147}}}]}, {"ruleId": "EVAL005", "level": "error", "message": {"text": "Code execution \u2014 PHP eval"}, "properties": {"repobilityId": 16169, "scanner": "repobility", "fingerprint": "1b72bb8f2e0450ab8b16dc05cc88be95", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-eval"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/validate.py"}, "region": {"startLine": 293}}}]}, {"ruleId": "EVAL005", "level": "error", "message": {"text": "Code execution \u2014 PHP eval"}, "properties": {"repobilityId": 16168, "scanner": "repobility", "fingerprint": "6e4958916fdbe6d0eee8cb338514f287", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-eval"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/validate.py"}, "region": {"startLine": 285}}}]}, {"ruleId": "EVAL005", "level": "error", "message": {"text": "Code execution \u2014 PHP eval"}, "properties": {"repobilityId": 16167, "scanner": "repobility", "fingerprint": "18decfde4199aa42457440a03785c9d2", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-eval"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/validate.py"}, "region": {"startLine": 279}}}]}, {"ruleId": "EVAL005", "level": "error", "message": {"text": "Code execution \u2014 PHP eval"}, "properties": {"repobilityId": 16166, "scanner": "repobility", "fingerprint": "51848f1c9e70397bdee13b5dca69efd6", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-eval"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/validate.py"}, "region": {"startLine": 231}}}]}, {"ruleId": "EVAL005", "level": "error", "message": {"text": "Code execution \u2014 PHP eval"}, "properties": {"repobilityId": 16165, "scanner": "repobility", "fingerprint": "b315c3d0119ba9d69a69c038d15cbe6d", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-eval"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/model/hf_embedder.py"}, "region": {"startLine": 47}}}]}, {"ruleId": "EVAL005", "level": "error", "message": {"text": "Code execution \u2014 PHP eval"}, "properties": {"repobilityId": 16164, "scanner": "repobility", "fingerprint": "180b1107573aca53b0285cf2c6b46463", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-eval"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/validate.py"}, "region": {"startLine": 142}}}]}, {"ruleId": "EVAL005", "level": "error", "message": {"text": "Code execution \u2014 PHP eval"}, "properties": {"repobilityId": 16163, "scanner": "repobility", "fingerprint": "73f8bc36607666f2755320c4d4a6f382", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-eval"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/generate/test_generate.py"}, "region": {"startLine": 161}}}]}, {"ruleId": "EVAL005", "level": "error", "message": {"text": "Code execution \u2014 PHP eval"}, "properties": {"repobilityId": 16162, "scanner": "repobility", "fingerprint": "d6576d69aa64c28fad7d6f4a542dd30a", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-eval"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/checkpoint_conversion/numerical_tests_example.py"}, "region": {"startLine": 78}}}]}, {"ruleId": "EVAL005", "level": "error", "message": {"text": "Code execution \u2014 PHP eval"}, "properties": {"repobilityId": 16161, "scanner": "repobility", "fingerprint": "8f4ded3b3123eefcf66cb0c7f5cbe0b8", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-eval"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/checkpoint_conversion/numerical_tests_qwen3_vl.py"}, "region": {"startLine": 279}}}]}, {"ruleId": "EVAL005", "level": "error", "message": {"text": "Code execution \u2014 PHP eval"}, "properties": {"repobilityId": 16160, "scanner": "repobility", "fingerprint": "2b7aba3851a3bf272c1de3ad14cd78af", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "php-eval"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/checkpoint_conversion/numerical_tests_qwen3_vl.py"}, "region": {"startLine": 220}}}]}, {"ruleId": "EVAL004", "level": "error", "message": {"text": "Code execution \u2014 Ruby eval"}, "properties": {"repobilityId": 16158, "scanner": "repobility", "fingerprint": "6dbeefea3f4ccfed8eabaf0fe81c6403", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "ruby-eval-call"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/tests/test_bitwise_parity.py"}, "region": {"startLine": 147}}}]}, {"ruleId": "EVAL004", "level": "error", "message": {"text": "Code execution \u2014 Ruby eval"}, "properties": {"repobilityId": 16157, "scanner": "repobility", "fingerprint": "ac17c36014995d2f3ebfc6f292657f4a", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "ruby-eval-call"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/validate.py"}, "region": {"startLine": 293}}}]}, {"ruleId": "EVAL004", "level": "error", "message": {"text": "Code execution \u2014 Ruby eval"}, "properties": {"repobilityId": 16156, "scanner": "repobility", "fingerprint": "f2deda7293f44af22068d86ca119ec4c", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "ruby-eval-call"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/validate.py"}, "region": {"startLine": 285}}}]}, {"ruleId": "EVAL004", "level": "error", "message": {"text": "Code execution \u2014 Ruby eval"}, "properties": {"repobilityId": 16155, "scanner": "repobility", "fingerprint": "1f0452e9f0945945c2ca7860b8763005", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "ruby-eval-call"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/validate.py"}, "region": {"startLine": 279}}}]}, {"ruleId": "EVAL004", "level": "error", "message": {"text": "Code execution \u2014 Ruby eval"}, "properties": {"repobilityId": 16154, "scanner": "repobility", "fingerprint": "4b7a6fd68bcdb30461bba433316eb5a0", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "ruby-eval-call"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/validate.py"}, "region": {"startLine": 231}}}]}, {"ruleId": "EVAL004", "level": "error", "message": {"text": "Code execution \u2014 Ruby eval"}, "properties": {"repobilityId": 16153, "scanner": "repobility", "fingerprint": "d58a084595bcc0161a951ff6aa40e393", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval ", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "ruby-eval-call"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/validate.py"}, "region": {"startLine": 229}}}]}, {"ruleId": "EVAL004", "level": "error", "message": {"text": "Code execution \u2014 Ruby eval"}, "properties": {"repobilityId": 16152, "scanner": "repobility", "fingerprint": "41ebb7e1d6c6d5e9b483785257eb6b69", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "ruby-eval-call"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/model/hf_embedder.py"}, "region": {"startLine": 47}}}]}, {"ruleId": "EVAL004", "level": "error", "message": {"text": "Code execution \u2014 Ruby eval"}, "properties": {"repobilityId": 16151, "scanner": "repobility", "fingerprint": "9af1fc3ece0b75db2e30602cce52f12c", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "ruby-eval-call"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/validate.py"}, "region": {"startLine": 142}}}]}, {"ruleId": "EVAL004", "level": "error", "message": {"text": "Code execution \u2014 Ruby eval"}, "properties": {"repobilityId": 16150, "scanner": "repobility", "fingerprint": "fb0ec1631ec56c0f93ef4b8173c5c043", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval ", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "ruby-eval-call"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/validate.py"}, "region": {"startLine": 139}}}]}, {"ruleId": "EVAL004", "level": "error", "message": {"text": "Code execution \u2014 Ruby eval"}, "properties": {"repobilityId": 16149, "scanner": "repobility", "fingerprint": "ee4fc932f906c3162672d8613c7bf020", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "ruby-eval-call"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/generate/test_generate.py"}, "region": {"startLine": 161}}}]}, {"ruleId": "EVAL004", "level": "error", "message": {"text": "Code execution \u2014 Ruby eval"}, "properties": {"repobilityId": 16148, "scanner": "repobility", "fingerprint": "975057b1b84cc8c7d3ee9393ff609563", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "ruby-eval-call"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/checkpoint_conversion/numerical_tests_example.py"}, "region": {"startLine": 78}}}]}, {"ruleId": "EVAL004", "level": "error", "message": {"text": "Code execution \u2014 Ruby eval"}, "properties": {"repobilityId": 16147, "scanner": "repobility", "fingerprint": "ac37128d34822302337de2d418d31725", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "ruby-eval-call"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/checkpoint_conversion/numerical_tests_qwen3_vl.py"}, "region": {"startLine": 279}}}]}, {"ruleId": "EVAL004", "level": "error", "message": {"text": "Code execution \u2014 Ruby eval"}, "properties": {"repobilityId": 16146, "scanner": "repobility", "fingerprint": "f9908393fc5a121d541aed058e681348", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "ruby-eval-call"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/checkpoint_conversion/numerical_tests_qwen3_vl.py"}, "region": {"startLine": 220}}}]}, {"ruleId": "EVAL002", "level": "error", "message": {"text": "Code execution \u2014 JS eval()"}, "properties": {"repobilityId": 16145, "scanner": "repobility", "fingerprint": "6ec1788be525e4943b3e090110919787", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "js-eval-usage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/rl/tests/test_bitwise_parity.py"}, "region": {"startLine": 147}}}]}, {"ruleId": "EVAL002", "level": "error", "message": {"text": "Code execution \u2014 JS eval()"}, "properties": {"repobilityId": 16144, "scanner": "repobility", "fingerprint": "1948a046f732e874db904e1590e0134d", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "js-eval-usage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/validate.py"}, "region": {"startLine": 293}}}]}, {"ruleId": "EVAL002", "level": "error", "message": {"text": "Code execution \u2014 JS eval()"}, "properties": {"repobilityId": 16143, "scanner": "repobility", "fingerprint": "1fa1216fee5f48c967cea424da6c11b9", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "js-eval-usage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/validate.py"}, "region": {"startLine": 285}}}]}, {"ruleId": "EVAL002", "level": "error", "message": {"text": "Code execution \u2014 JS eval()"}, "properties": {"repobilityId": 16142, "scanner": "repobility", "fingerprint": "1b80fc55eefd87a3f54f0e618a429bb3", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "js-eval-usage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/validate.py"}, "region": {"startLine": 279}}}]}, {"ruleId": "EVAL002", "level": "error", "message": {"text": "Code execution \u2014 JS eval()"}, "properties": {"repobilityId": 16141, "scanner": "repobility", "fingerprint": "f11c940c5f6bee635c9e82b19ebe1ba6", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "js-eval-usage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/validate.py"}, "region": {"startLine": 231}}}]}, {"ruleId": "EVAL002", "level": "error", "message": {"text": "Code execution \u2014 JS eval()"}, "properties": {"repobilityId": 16140, "scanner": "repobility", "fingerprint": "78a364889425a2d008d4798256ccffe0", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "js-eval-usage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/model/hf_embedder.py"}, "region": {"startLine": 47}}}]}, {"ruleId": "EVAL002", "level": "error", "message": {"text": "Code execution \u2014 JS eval()"}, "properties": {"repobilityId": 16139, "scanner": "repobility", "fingerprint": "90416dba3be3ca87969f5b8e9c408091", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "js-eval-usage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/models/flux/validate.py"}, "region": {"startLine": 142}}}]}, {"ruleId": "EVAL002", "level": "error", "message": {"text": "Code execution \u2014 JS eval()"}, "properties": {"repobilityId": 16138, "scanner": "repobility", "fingerprint": "3cde4284dec589a40e1ea16fa93e9d04", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "js-eval-usage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/generate/test_generate.py"}, "region": {"startLine": 161}}}]}, {"ruleId": "EVAL002", "level": "error", "message": {"text": "Code execution \u2014 JS eval()"}, "properties": {"repobilityId": 16137, "scanner": "repobility", "fingerprint": "7d9931f9ab401e6eecd24cf2897fda10", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "js-eval-usage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/checkpoint_conversion/numerical_tests_example.py"}, "region": {"startLine": 78}}}]}, {"ruleId": "EVAL002", "level": "error", "message": {"text": "Code execution \u2014 JS eval()"}, "properties": {"repobilityId": 16136, "scanner": "repobility", "fingerprint": "0c097f5fad3bf797ad92cca35c38a283", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "js-eval-usage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/checkpoint_conversion/numerical_tests_qwen3_vl.py"}, "region": {"startLine": 279}}}]}, {"ruleId": "EVAL002", "level": "error", "message": {"text": "Code execution \u2014 JS eval()"}, "properties": {"repobilityId": 16135, "scanner": "repobility", "fingerprint": "d9bd6df743255d5628655afe684b0479", "category": "code_execution", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "eval(", "aljefra_cwe": ["CWE-95"], "aljefra_owasp": null, "aljefra_pattern_slug": "js-eval-usage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/checkpoint_conversion/numerical_tests_qwen3_vl.py"}, "region": {"startLine": 220}}}]}, {"ruleId": "DSER002", "level": "error", "message": {"text": "Insecure deserialization \u2014 pickle.loads"}, "properties": {"repobilityId": 15849, "scanner": "repobility", "fingerprint": "e0025c884f6e5539d470ccfa7ea9c293", "category": "deserialization", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "pickle.loads", "aljefra_cwe": ["CWE-502"], "aljefra_owasp": null, "aljefra_pattern_slug": "python-pickle-loads"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_precompile.py"}, "region": {"startLine": 488}}}]}, {"ruleId": "DSER002", "level": "error", "message": {"text": "Insecure deserialization \u2014 pickle.loads"}, "properties": {"repobilityId": 15848, "scanner": "repobility", "fingerprint": "592d3a0f51a9df37cabe8b79b68fd4c7", "category": "deserialization", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "pickle.loads", "aljefra_cwe": ["CWE-502"], "aljefra_owasp": null, "aljefra_pattern_slug": "python-pickle-loads"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_precompile.py"}, "region": {"startLine": 92}}}]}, {"ruleId": "DSER002", "level": "error", "message": {"text": "Insecure deserialization \u2014 pickle.loads"}, "properties": {"repobilityId": 15847, "scanner": "repobility", "fingerprint": "9d6f4f45ce0140809b10e298088eb0b0", "category": "deserialization", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "pickle.loads", "aljefra_cwe": ["CWE-502"], "aljefra_owasp": null, "aljefra_pattern_slug": "python-pickle-loads"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/precompile.py"}, "region": {"startLine": 437}}}]}, {"ruleId": "DSER002", "level": "error", "message": {"text": "Insecure deserialization \u2014 pickle.loads"}, "properties": {"repobilityId": 15846, "scanner": "repobility", "fingerprint": "efc87a212c07ddac6e162895f39fd308", "category": "deserialization", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "pickle.loads", "aljefra_cwe": ["CWE-502"], "aljefra_owasp": null, "aljefra_pattern_slug": "python-pickle-loads"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/precompile.py"}, "region": {"startLine": 185}}}]}, {"ruleId": "DSER002", "level": "error", "message": {"text": "Insecure deserialization \u2014 pickle.loads"}, "properties": {"repobilityId": 15845, "scanner": "repobility", "fingerprint": "23dc9000a39f65fc3c772f78d4176a66", "category": "deserialization", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "pickle.loads", "aljefra_cwe": ["CWE-502"], "aljefra_owasp": null, "aljefra_pattern_slug": "python-pickle-loads"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/precompile.py"}, "region": {"startLine": 182}}}]}, {"ruleId": "DSER002", "level": "error", "message": {"text": "Insecure deserialization \u2014 pickle.loads"}, "properties": {"repobilityId": 15844, "scanner": "repobility", "fingerprint": "e0e3431c8b684364015e8e63fb148683", "category": "deserialization", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "pickle.loads", "aljefra_cwe": ["CWE-502"], "aljefra_owasp": null, "aljefra_pattern_slug": "python-pickle-loads"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/dataloader.py"}, "region": {"startLine": 167}}}]}, {"ruleId": "DSER001", "level": "error", "message": {"text": "Insecure deserialization \u2014 pickle/yaml/marshal"}, "properties": {"repobilityId": 15824, "scanner": "repobility", "fingerprint": "5be7a7e31295bdf59bedc797f8508903", "category": "deserialization", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "pickle.loads", "aljefra_cwe": ["CWE-502"], "aljefra_owasp": "A08:2021", "aljefra_pattern_slug": "unsafe-deserialization-pickle"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_precompile.py"}, "region": {"startLine": 488}}}]}, {"ruleId": "DSER001", "level": "error", "message": {"text": "Insecure deserialization \u2014 pickle/yaml/marshal"}, "properties": {"repobilityId": 15823, "scanner": "repobility", "fingerprint": "358d5ce4564e050cf86dd13edf9a6574", "category": "deserialization", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "pickle.loads", "aljefra_cwe": ["CWE-502"], "aljefra_owasp": "A08:2021", "aljefra_pattern_slug": "unsafe-deserialization-pickle"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/tests/test_precompile.py"}, "region": {"startLine": 92}}}]}, {"ruleId": "DSER001", "level": "error", "message": {"text": "Insecure deserialization \u2014 pickle/yaml/marshal"}, "properties": {"repobilityId": 15822, "scanner": "repobility", "fingerprint": "01688a331b50965f2314ca030736d277", "category": "deserialization", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "pickle.loads", "aljefra_cwe": ["CWE-502"], "aljefra_owasp": "A08:2021", "aljefra_pattern_slug": "unsafe-deserialization-pickle"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/precompile.py"}, "region": {"startLine": 437}}}]}, {"ruleId": "DSER001", "level": "error", "message": {"text": "Insecure deserialization \u2014 pickle/yaml/marshal"}, "properties": {"repobilityId": 15821, "scanner": "repobility", "fingerprint": "10f69a94a3fd2e037d2a18513e1918e5", "category": "deserialization", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "pickle.loads", "aljefra_cwe": ["CWE-502"], "aljefra_owasp": "A08:2021", "aljefra_pattern_slug": "unsafe-deserialization-pickle"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/precompile.py"}, "region": {"startLine": 185}}}]}, {"ruleId": "DSER001", "level": "error", "message": {"text": "Insecure deserialization \u2014 pickle/yaml/marshal"}, "properties": {"repobilityId": 15820, "scanner": "repobility", "fingerprint": "183cde1bea93d8f8e76e77c99be061b4", "category": "deserialization", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "pickle.loads", "aljefra_cwe": ["CWE-502"], "aljefra_owasp": "A08:2021", "aljefra_pattern_slug": "unsafe-deserialization-pickle"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/experiments/graph_trainer/precompile.py"}, "region": {"startLine": 182}}}]}, {"ruleId": "DSER001", "level": "error", "message": {"text": "Insecure deserialization \u2014 pickle/yaml/marshal"}, "properties": {"repobilityId": 15819, "scanner": "repobility", "fingerprint": "36021fc179f8113fe1ddd0f0a8a1cef4", "category": "deserialization", "severity": "critical", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "pickle.loads", "aljefra_cwe": ["CWE-502"], "aljefra_owasp": "A08:2021", "aljefra_pattern_slug": "unsafe-deserialization-pickle"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "torchtitan/components/dataloader.py"}, "region": {"startLine": 167}}}]}]}]}