{"$schema":"https://json.schemastore.org/sarif-2.1.0.json","version":"2.1.0","runs":[{"tool":{"driver":{"name":"codehealth","informationUri":"https://codehealth.canine.dev","rules":[{"id":"D1","name":"Cyclomatic Complexity","shortDescription":{"text":"Cyclomatic Complexity"},"helpUri":"https://codehealth.canine.dev/dimensions/D1"},{"id":"D2","name":"Cognitive Complexity","shortDescription":{"text":"Cognitive Complexity"},"helpUri":"https://codehealth.canine.dev/dimensions/D2"},{"id":"D3","name":"God Classes","shortDescription":{"text":"God Classes"},"helpUri":"https://codehealth.canine.dev/dimensions/D3"},{"id":"D4","name":"Code Duplication","shortDescription":{"text":"Code Duplication"},"helpUri":"https://codehealth.canine.dev/dimensions/D4"},{"id":"D13","name":"Secret Scanning","shortDescription":{"text":"Secret Scanning"},"helpUri":"https://codehealth.canine.dev/dimensions/D13","relationships":[{"target":{"id":"CWE-798","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-259","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]}],"properties":{"cwe":["CWE-798","CWE-259"]}},{"id":"D15","name":"Churn \u00D7 Complexity Hotspots","shortDescription":{"text":"Churn \u00D7 Complexity Hotspots"},"helpUri":"https://codehealth.canine.dev/dimensions/D15"},{"id":"D16","name":"Bus Factor","shortDescription":{"text":"Bus Factor"},"helpUri":"https://codehealth.canine.dev/dimensions/D16"},{"id":"D19","name":"Documentation Quality","shortDescription":{"text":"Documentation Quality"},"helpUri":"https://codehealth.canine.dev/dimensions/D19"},{"id":"D21","name":"Naming Consistency","shortDescription":{"text":"Naming Consistency"},"helpUri":"https://codehealth.canine.dev/dimensions/D21"},{"id":"D28","name":"Secrets (history)","shortDescription":{"text":"Secrets (history)"},"helpUri":"https://codehealth.canine.dev/dimensions/D28","relationships":[{"target":{"id":"CWE-798","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-259","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]}],"properties":{"cwe":["CWE-798","CWE-259"]}},{"id":"D29","name":"Static Analysis (SAST)","shortDescription":{"text":"Static Analysis (SAST)"},"helpUri":"https://codehealth.canine.dev/dimensions/D29","relationships":[{"target":{"id":"CWE-79","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-89","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-78","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-94","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-77","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]}],"properties":{"cwe":["CWE-79","CWE-89","CWE-78","CWE-94","CWE-77"]}},{"id":"D34","name":"Knowledge Freshness","shortDescription":{"text":"Knowledge Freshness"},"helpUri":"https://codehealth.canine.dev/dimensions/D34"},{"id":"D35","name":"Change Coupling","shortDescription":{"text":"Change Coupling"},"helpUri":"https://codehealth.canine.dev/dimensions/D35"}]}},"results":[{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (11 lines \u00D7 4): data/src/main/java/com/vestrel00/business/search/data/repository/BusinessDataRepository.java:128-138 | data/src/main/java/com/vestrel00/business/search/data/repository/BusinessDataRepository.java:159-169 | data/src/main/java/com/vestrel00/business/search/data/repository/BusinessDataRepository.java:199-209 | data/src/main/java/com/vestrel00/business/search/data/repository/BusinessDataRepository.java:229-239 \u2014 all 4 copies are in the same file, so extract the block into one function there and call it from every one of those sites \u2014 resolving only two of them leaves the rest to drift apart the first time one is edited. Read the line range as the matched WINDOW rather than a finished unit: at \u0060data/src/main/java/com/vestrel00/business/search/data/repository/BusinessDataRepository.java:128\u0060 it begins part-way through the construct above it, so those exact lines cannot be lifted as they stand \u2014 widen the region to the smallest complete statement or declaration that contains it, and extract that."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"data/src/main/java/com/vestrel00/business/search/data/repository/BusinessDataRepository.java"},"region":{"startLine":128}}}],"partialFingerprints":{"codehealthFindingId/v1":"c6761988ccf15147062b1f41e1091fcdc64581b814dd25290ef5d4842856b8dc"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 2): data/src/main/java/com/vestrel00/business/search/data/entity/mapper/BusinessEntityMapper.java:63-69 | presentation-java/src/main/java/com/vestrel00/business/search/presentation/java/model/mapper/BusinessModelMapper.java:63-69 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it somewhere both call sites can already reach \u2014 a location they all depend on today, or a new shared one if there is none \u2014 and call it from each site; until then, every change has to be made twice. The matched lines also transfer control out of the body holding them, which cannot survive a move into a called unit unchanged: have the extracted unit return that decision and let each site act on it."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"data/src/main/java/com/vestrel00/business/search/data/entity/mapper/BusinessEntityMapper.java"},"region":{"startLine":63}}}],"partialFingerprints":{"codehealthFindingId/v1":"85a1936799ad21ba8ff161fcfe13aaabc65461af65fdb67109dd7c8d71ee9299"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 2): presentation-java/src/main/java/com/vestrel00/business/search/presentation/java/model/mapper/BusinessModelMapper.java:64-70 | presentation-java/src/main/java/com/vestrel00/business/search/presentation/java/model/mapper/BusinessModelMapper.java:86-92 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited. Read the line range as the matched WINDOW rather than a finished unit: at \u0060presentation-java/src/main/java/com/vestrel00/business/search/presentation/java/model/mapper/BusinessModelMapper.java:64\u0060 it begins part-way through the construct above it, so those exact lines cannot be lifted as they stand \u2014 widen the region to the smallest complete statement or declaration that contains it, and extract that."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"presentation-java/src/main/java/com/vestrel00/business/search/presentation/java/model/mapper/BusinessModelMapper.java"},"region":{"startLine":64}}}],"partialFingerprints":{"codehealthFindingId/v1":"474e176be00b9c230090867e8c6949a8fe3468cbf162d6ff51ed521f0af0ae80"}},{"ruleId":"D16","level":"warning","message":{"text":"single-maintainer \u2014 knowledge-concentration (bus factor) risk: single-maintainer \u2014 knowledge-concentration (bus factor) risk (1 author(s) across 181 commit(s) sampled)."},"locations":[],"partialFingerprints":{"codehealthFindingId/v1":"b4b49d961df742f0e507f4cc5c8094fb077ba0391a27fd015d18320865187719"}},{"ruleId":"D34","level":"note","message":{"text":"Dormant codebase: 43 of 43 significant files have no living knowledge \u2014 the codebase as a whole is dormant, not 43 separate risks. Re-engage owners or document before change."},"locations":[],"partialFingerprints":{"codehealthFindingId/v1":"4c69f1e54b7dd6fe9029dd02df6ba8f8145b789f2f18dbdaa086c40ded49dba6"}},{"ruleId":"D35","level":"warning","message":{"text":"Change coupling: BusinessEntityParser.java \u2194 BusinessModel.java: \u0060data/src/main/java/com/vestrel00/business/search/data/entity/parser/BusinessEntityParser.java\u0060 and \u0060presentation-java/src/main/java/com/vestrel00/business/search/presentation/java/model/BusinessModel.java\u0060 change together 64% of the time (9 of the 14 commits that touched the less-changed of the two, renames followed) with no explicit dependency \u2014 the edge is real but nothing declares it. Read the pair before acting: if one registers itself into the other through a hook or an initialiser, the missing dependency is DELIBERATE (that is what the inversion buys) and the thing to add is a comment saying so, not a merge; if they simply belong together, co-locate them; if neither holds, the coupling is hidden and worth breaking."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"data/src/main/java/com/vestrel00/business/search/data/entity/parser/BusinessEntityParser.java"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"039ffaf6aa4c2ff824d01ca4dc1df201315bd23997ccbf220aa952850ba7d57e"}},{"ruleId":"D35","level":"warning","message":{"text":"Change coupling: BusinessEntity.java \u2194 BusinessModelMapper.java: \u0060data/src/main/java/com/vestrel00/business/search/data/entity/BusinessEntity.java\u0060 and \u0060presentation-java/src/main/java/com/vestrel00/business/search/presentation/java/model/mapper/BusinessModelMapper.java\u0060 change together 57% of the time (8 of the 14 commits that touched the less-changed of the two, renames followed) with no explicit dependency \u2014 the edge is real but nothing declares it. Read the pair before acting: if one registers itself into the other through a hook or an initialiser, the missing dependency is DELIBERATE (that is what the inversion buys) and the thing to add is a comment saying so, not a merge; if they simply belong together, co-locate them; if neither holds, the coupling is hidden and worth breaking."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"data/src/main/java/com/vestrel00/business/search/data/entity/BusinessEntity.java"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"2b584b45f93a380ccdc543f8688cc630ca014673039ca62a4b44c6bc0aec54cd"}},{"ruleId":"D35","level":"warning","message":{"text":"Change coupling: BusinessEntityParser.java \u2194 BusinessModelMapper.java: \u0060data/src/main/java/com/vestrel00/business/search/data/entity/parser/BusinessEntityParser.java\u0060 and \u0060presentation-java/src/main/java/com/vestrel00/business/search/presentation/java/model/mapper/BusinessModelMapper.java\u0060 change together 57% of the time (8 of the 14 commits that touched the less-changed of the two, renames followed) with no explicit dependency \u2014 the edge is real but nothing declares it. Read the pair before acting: if one registers itself into the other through a hook or an initialiser, the missing dependency is DELIBERATE (that is what the inversion buys) and the thing to add is a comment saying so, not a merge; if they simply belong together, co-locate them; if neither holds, the coupling is hidden and worth breaking."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"data/src/main/java/com/vestrel00/business/search/data/entity/parser/BusinessEntityParser.java"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"41a8a9d4854c8c1f1d22e65da9a97ffa859cace3b2c7e023d4ae482431e8cabd"}},{"ruleId":"D35","level":"warning","message":{"text":"Change coupling: BusinessEntityParser.java \u2194 Business.java: \u0060data/src/main/java/com/vestrel00/business/search/data/entity/parser/BusinessEntityParser.java\u0060 and \u0060domain/src/main/java/com/vestrel00/business/search/domain/Business.java\u0060 change together 57% of the time (8 of the 14 commits that touched the less-changed of the two, renames followed) with no explicit dependency \u2014 the edge is real but nothing declares it. Read the pair before acting: if one registers itself into the other through a hook or an initialiser, the missing dependency is DELIBERATE (that is what the inversion buys) and the thing to add is a comment saying so, not a merge; if they simply belong together, co-locate them; if neither holds, the coupling is hidden and worth breaking."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"data/src/main/java/com/vestrel00/business/search/data/entity/parser/BusinessEntityParser.java"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"6bc768566826af9d355f3161159c915f92f71c9c984e8b71c59630f61dc48c48"}},{"ruleId":"D35","level":"warning","message":{"text":"Change coupling: BusinessEntityMapper.java \u2194 BusinessEntityParser.java: \u0060data/src/main/java/com/vestrel00/business/search/data/entity/mapper/BusinessEntityMapper.java\u0060 and \u0060data/src/main/java/com/vestrel00/business/search/data/entity/parser/BusinessEntityParser.java\u0060 change together 57% of the time (8 of the 14 commits that touched the less-changed of the two, renames followed) with no explicit dependency \u2014 the edge is real but nothing declares it. Read the pair before acting: if one registers itself into the other through a hook or an initialiser, the missing dependency is DELIBERATE (that is what the inversion buys) and the thing to add is a comment saying so, not a merge; if they simply belong together, co-locate them; if neither holds, the coupling is hidden and worth breaking."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"data/src/main/java/com/vestrel00/business/search/data/entity/mapper/BusinessEntityMapper.java"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"eefc79fdef0ae9346ffed573d276aebcffc1a1ff79afd97a3e69446433db8fb3"}},{"ruleId":"D35","level":"warning","message":{"text":"Change coupling: BusinessEntityMapper.java \u2194 BusinessModelMapper.java: \u0060data/src/main/java/com/vestrel00/business/search/data/entity/mapper/BusinessEntityMapper.java\u0060 and \u0060presentation-java/src/main/java/com/vestrel00/business/search/presentation/java/model/mapper/BusinessModelMapper.java\u0060 change together 57% of the time (8 of the 14 commits that touched the less-changed of the two, renames followed) with no explicit dependency \u2014 the edge is real but nothing declares it. Read the pair before acting: if one registers itself into the other through a hook or an initialiser, the missing dependency is DELIBERATE (that is what the inversion buys) and the thing to add is a comment saying so, not a merge; if they simply belong together, co-locate them; if neither holds, the coupling is hidden and worth breaking."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"data/src/main/java/com/vestrel00/business/search/data/entity/mapper/BusinessEntityMapper.java"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"ddb31c60328a970ec147f776253ebe3db10b9d796c43ca4a9585503a55bfeecc"}},{"ruleId":"D35","level":"warning","message":{"text":"Change coupling: BusinessEntityMapper.java \u2194 BusinessModel.java: \u0060data/src/main/java/com/vestrel00/business/search/data/entity/mapper/BusinessEntityMapper.java\u0060 and \u0060presentation-java/src/main/java/com/vestrel00/business/search/presentation/java/model/BusinessModel.java\u0060 change together 50% of the time (8 of the 16 commits that touched the less-changed of the two, renames followed) with no explicit dependency \u2014 the edge is real but nothing declares it. Read the pair before acting: if one registers itself into the other through a hook or an initialiser, the missing dependency is DELIBERATE (that is what the inversion buys) and the thing to add is a comment saying so, not a merge; if they simply belong together, co-locate them; if neither holds, the coupling is hidden and worth breaking."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"data/src/main/java/com/vestrel00/business/search/data/entity/mapper/BusinessEntityMapper.java"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"3a8ab66c84a243f00655c20026e85f297cb92db15890c1da5628021dac6def50"}},{"ruleId":"D35","level":"warning","message":{"text":"Change coupling: BusinessDataRepository.java \u2194 LocationFormatter.java: \u0060data/src/main/java/com/vestrel00/business/search/data/repository/BusinessDataRepository.java\u0060 and \u0060data/src/main/java/com/vestrel00/business/search/data/util/LocationFormatter.java\u0060 change together 50% of the time (5 of the 10 commits that touched the less-changed of the two, renames followed) with no explicit dependency \u2014 the edge is real but nothing declares it. Read the pair before acting: if one registers itself into the other through a hook or an initialiser, the missing dependency is DELIBERATE (that is what the inversion buys) and the thing to add is a comment saying so, not a merge; if they simply belong together, co-locate them; if neither holds, the coupling is hidden and worth breaking."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"data/src/main/java/com/vestrel00/business/search/data/repository/BusinessDataRepository.java"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"7382bc48acbede27c717e3866ee8344f5ed4e76e4a2b62e89e67746a98a2d102"}}],"taxonomies":[{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d","organization":"MITRE","informationUri":"https://cwe.mitre.org/","isComprehensive":false,"shortDescription":{"text":"The MITRE Common Weakness Enumeration (CWE)."},"taxa":[{"id":"CWE-259","guid":"ae9ad959-fbb6-9d5e-892d-3dca66da0b69","name":"Use of Hard-coded Password","shortDescription":{"text":"Use of Hard-coded Password"},"helpUri":"https://cwe.mitre.org/data/definitions/259.html"},{"id":"CWE-77","guid":"332c8ade-6612-9f56-a06b-d8d90b1a8750","name":"Command Injection","shortDescription":{"text":"Command Injection"},"helpUri":"https://cwe.mitre.org/data/definitions/77.html"},{"id":"CWE-78","guid":"2e31ceaf-c7ae-2e5e-9661-cfb1362789cf","name":"OS Command Injection","shortDescription":{"text":"OS Command Injection"},"helpUri":"https://cwe.mitre.org/data/definitions/78.html"},{"id":"CWE-79","guid":"fd45580b-e8c4-fc5e-8c2f-aa8fab0b4dbf","name":"Cross-site Scripting (XSS)","shortDescription":{"text":"Cross-site Scripting (XSS)"},"helpUri":"https://cwe.mitre.org/data/definitions/79.html"},{"id":"CWE-798","guid":"5e8f057d-fee3-995a-a0cb-9fc5b0d174d1","name":"Use of Hard-coded Credentials","shortDescription":{"text":"Use of Hard-coded Credentials"},"helpUri":"https://cwe.mitre.org/data/definitions/798.html"},{"id":"CWE-89","guid":"6d08fdad-37eb-c150-bbf0-d7d946863407","name":"SQL Injection","shortDescription":{"text":"SQL Injection"},"helpUri":"https://cwe.mitre.org/data/definitions/89.html"},{"id":"CWE-94","guid":"75e7f50c-6c2f-dd52-bf40-bf6c52b861fd","name":"Code Injection","shortDescription":{"text":"Code Injection"},"helpUri":"https://cwe.mitre.org/data/definitions/94.html"}]}],"properties":{"codehealthPublication":{"public":true,"notice":"This is the PUBLIC form of this artifact. Findings are listed in full, but the details of SECURITY findings \u2014 which rule fired, in which file, on which line, and how to fix it \u2014 are deliberately withheld, and any secret-scanner results are excluded entirely. Where detail is absent here it was REMOVED FOR PUBLICATION; it is not missing from the analysis. The complete artifact is available from the repository owner.","securityFindingsRedacted":0,"secretScannerRunsExcluded":0}}}]}