@intentius/chant 0.41.19 → 0.42.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (150) hide show
  1. package/dist/cli/build-params-cli.d.ts +7 -4
  2. package/dist/cli/build-params-cli.d.ts.map +1 -1
  3. package/dist/cli/commands/build.d.ts.map +1 -1
  4. package/dist/cli/commands/carve-apply.d.ts +9 -0
  5. package/dist/cli/commands/carve-apply.d.ts.map +1 -1
  6. package/dist/cli/commands/carve-bridge.d.ts +7 -0
  7. package/dist/cli/commands/carve-bridge.d.ts.map +1 -1
  8. package/dist/cli/commands/carve-emit.d.ts +7 -0
  9. package/dist/cli/commands/carve-emit.d.ts.map +1 -1
  10. package/dist/cli/commands/import.d.ts +16 -0
  11. package/dist/cli/commands/import.d.ts.map +1 -1
  12. package/dist/cli/commands/init.d.ts +2 -0
  13. package/dist/cli/commands/init.d.ts.map +1 -1
  14. package/dist/cli/handlers/carve-apply.d.ts.map +1 -1
  15. package/dist/cli/handlers/components.d.ts.map +1 -1
  16. package/dist/cli/handlers/explain.d.ts +11 -0
  17. package/dist/cli/handlers/explain.d.ts.map +1 -0
  18. package/dist/cli/handlers/lifecycle.d.ts.map +1 -1
  19. package/dist/cli/handlers/misc.d.ts.map +1 -1
  20. package/dist/cli/main.d.ts.map +1 -1
  21. package/dist/cli/mcp/tools/explain.d.ts.map +1 -1
  22. package/dist/cli/registry.d.ts +4 -0
  23. package/dist/cli/registry.d.ts.map +1 -1
  24. package/dist/codegen/docs-rule-scanning.d.ts +11 -0
  25. package/dist/codegen/docs-rule-scanning.d.ts.map +1 -1
  26. package/dist/codegen/okf-lexicon.d.ts +36 -0
  27. package/dist/codegen/okf-lexicon.d.ts.map +1 -0
  28. package/dist/codegen/package.d.ts +2 -1
  29. package/dist/codegen/package.d.ts.map +1 -1
  30. package/dist/components/deploy-units.d.ts.map +1 -1
  31. package/dist/components/verbs/sbom.d.ts +1 -1
  32. package/dist/components/verbs/sbom.d.ts.map +1 -1
  33. package/dist/components/verbs/vuln-gate.d.ts +15 -4
  34. package/dist/components/verbs/vuln-gate.d.ts.map +1 -1
  35. package/dist/components/verbs/vuln-scan.d.ts +18 -6
  36. package/dist/components/verbs/vuln-scan.d.ts.map +1 -1
  37. package/dist/config.d.ts +12 -0
  38. package/dist/config.d.ts.map +1 -1
  39. package/dist/deep-observation.d.ts +13 -0
  40. package/dist/deep-observation.d.ts.map +1 -1
  41. package/dist/governance.d.ts +37 -0
  42. package/dist/governance.d.ts.map +1 -0
  43. package/dist/lexicon.d.ts +3 -0
  44. package/dist/lexicon.d.ts.map +1 -1
  45. package/dist/lifecycle/observe.d.ts.map +1 -1
  46. package/dist/lifecycle/snapshot.d.ts.map +1 -1
  47. package/dist/okf.d.ts +57 -0
  48. package/dist/okf.d.ts.map +1 -0
  49. package/dist/reconcile.d.ts +15 -0
  50. package/dist/reconcile.d.ts.map +1 -1
  51. package/dist/terraform/__fixtures__/build-graph.d.ts +13 -0
  52. package/dist/terraform/__fixtures__/build-graph.d.ts.map +1 -0
  53. package/dist/terraform/adopt-state.d.ts +33 -1
  54. package/dist/terraform/adopt-state.d.ts.map +1 -1
  55. package/dist/terraform/bridge.d.ts +7 -1
  56. package/dist/terraform/bridge.d.ts.map +1 -1
  57. package/dist/terraform/carve.d.ts +12 -0
  58. package/dist/terraform/carve.d.ts.map +1 -1
  59. package/dist/terraform/excise.d.ts +31 -0
  60. package/dist/terraform/excise.d.ts.map +1 -0
  61. package/dist/terraform/graduate.d.ts +12 -0
  62. package/dist/terraform/graduate.d.ts.map +1 -1
  63. package/dist/terraform/graph.d.ts +35 -5
  64. package/dist/terraform/graph.d.ts.map +1 -1
  65. package/dist/terraform/manifest.d.ts +89 -0
  66. package/dist/terraform/manifest.d.ts.map +1 -0
  67. package/dist/terraform/parse.d.ts +9 -4
  68. package/dist/terraform/parse.d.ts.map +1 -1
  69. package/dist/terraform/types.d.ts +7 -0
  70. package/dist/terraform/types.d.ts.map +1 -1
  71. package/dist/terraform/unified-diff.d.ts +11 -0
  72. package/dist/terraform/unified-diff.d.ts.map +1 -0
  73. package/package.json +1 -1
  74. package/src/__snapshots__/okf.test.ts.snap +381 -0
  75. package/src/cli/build-params-cli.test.ts +47 -3
  76. package/src/cli/build-params-cli.ts +22 -5
  77. package/src/cli/commands/build.test.ts +44 -0
  78. package/src/cli/commands/build.ts +15 -2
  79. package/src/cli/commands/carve-apply.test.ts +94 -2
  80. package/src/cli/commands/carve-apply.ts +62 -11
  81. package/src/cli/commands/carve-bridge.test.ts +82 -4
  82. package/src/cli/commands/carve-bridge.ts +79 -11
  83. package/src/cli/commands/carve-emit-state.test.ts +110 -1
  84. package/src/cli/commands/carve-emit.ts +184 -8
  85. package/src/cli/commands/import.ts +53 -5
  86. package/src/cli/commands/init.ts +1 -1
  87. package/src/cli/handlers/build.test.ts +3 -1
  88. package/src/cli/handlers/carve-apply.ts +1 -0
  89. package/src/cli/handlers/components.ts +4 -2
  90. package/src/cli/handlers/explain.test.ts +93 -0
  91. package/src/cli/handlers/explain.ts +60 -0
  92. package/src/cli/handlers/lifecycle.ts +9 -7
  93. package/src/cli/handlers/misc.ts +40 -1
  94. package/src/cli/handlers/run.test.ts +3 -1
  95. package/src/cli/main.ts +25 -5
  96. package/src/cli/mcp/server.test.ts +17 -0
  97. package/src/cli/mcp/tools/explain.ts +15 -3
  98. package/src/cli/registry.ts +4 -0
  99. package/src/codegen/__snapshots__/okf-lexicon.test.ts.snap +170 -0
  100. package/src/codegen/docs-rule-scanning.ts +35 -14
  101. package/src/codegen/okf-lexicon.test.ts +248 -0
  102. package/src/codegen/okf-lexicon.ts +303 -0
  103. package/src/codegen/package.ts +29 -4
  104. package/src/codegen/publish-order.test.ts +1 -1
  105. package/src/codegen/release-wiring.test.ts +7 -3
  106. package/src/components/config-defaults.test.ts +30 -0
  107. package/src/components/deploy-units.ts +3 -0
  108. package/src/components/verbs/__fixtures__/grype-with-kev-epss.json +1 -0
  109. package/src/components/verbs/__fixtures__/trivy-with-kev-epss.json +631 -0
  110. package/src/components/verbs/exploitability-roundtrip.test.ts +190 -0
  111. package/src/components/verbs/sbom.ts +1 -1
  112. package/src/components/verbs/vuln-gate.test.ts +144 -1
  113. package/src/components/verbs/vuln-gate.ts +61 -10
  114. package/src/components/verbs/vuln-scan.test.ts +94 -0
  115. package/src/components/verbs/vuln-scan.ts +44 -9
  116. package/src/config.test.ts +21 -0
  117. package/src/config.ts +18 -0
  118. package/src/deep-observation.test.ts +19 -0
  119. package/src/deep-observation.ts +32 -13
  120. package/src/governance.test.ts +72 -0
  121. package/src/governance.ts +54 -0
  122. package/src/lexicon.ts +3 -0
  123. package/src/lifecycle/observe.test.ts +18 -0
  124. package/src/lifecycle/observe.ts +10 -3
  125. package/src/lifecycle/snapshot.ts +5 -4
  126. package/src/okf.test.ts +169 -0
  127. package/src/okf.ts +308 -0
  128. package/src/reconcile.ts +32 -1
  129. package/src/terraform/__fixtures__/build-graph.ts +25 -0
  130. package/src/terraform/adopt-state.test.ts +34 -1
  131. package/src/terraform/adopt-state.ts +69 -2
  132. package/src/terraform/bridge.test.ts +38 -14
  133. package/src/terraform/bridge.ts +48 -14
  134. package/src/terraform/carve.test.ts +9 -7
  135. package/src/terraform/carve.ts +0 -0
  136. package/src/terraform/excise.test.ts +92 -0
  137. package/src/terraform/excise.ts +139 -0
  138. package/src/terraform/graduate.test.ts +73 -6
  139. package/src/terraform/graduate.ts +49 -0
  140. package/src/terraform/graph.test.ts +56 -10
  141. package/src/terraform/graph.ts +112 -45
  142. package/src/terraform/manifest.test.ts +105 -0
  143. package/src/terraform/manifest.ts +162 -0
  144. package/src/terraform/parse.test.ts +39 -1
  145. package/src/terraform/parse.ts +36 -9
  146. package/src/terraform/score.test.ts +8 -8
  147. package/src/terraform/state.test.ts +4 -4
  148. package/src/terraform/types.ts +7 -0
  149. package/src/terraform/unified-diff.test.ts +77 -0
  150. package/src/terraform/unified-diff.ts +146 -0
@@ -0,0 +1,631 @@
1
+ {
2
+ "SchemaVersion": 2,
3
+ "Trivy": {
4
+ "Version": "0.73.0"
5
+ },
6
+ "ReportID": "019fde2e-9bc2-7c7b-aa52-e0344330ccfe",
7
+ "CreatedAt": "2026-08-07T15:43:44.322819-06:00",
8
+ "ArtifactName": "/private/tmp/claude-501/-Users-alex-Documents-checkouts-intentius-chant/406f2906-e1f1-488c-a98a-e79ee1f2e062/scratchpad/log4j.cdx.json",
9
+ "ArtifactType": "cyclonedx",
10
+ "Results": [
11
+ {
12
+ "Target": "Java",
13
+ "Class": "lang-pkgs",
14
+ "Type": "jar",
15
+ "Packages": [
16
+ {
17
+ "ID": "org.apache.logging.log4j:log4j-core:2.14.1",
18
+ "Name": "org.apache.logging.log4j:log4j-core",
19
+ "Identifier": {
20
+ "PURL": "pkg:maven/org.apache.logging.log4j/log4j-core@2.14.1",
21
+ "UID": "45fa651edb220601",
22
+ "BOMRef": "pkg:maven/org.apache.logging.log4j/log4j-core@2.14.1"
23
+ },
24
+ "Version": "2.14.1"
25
+ }
26
+ ],
27
+ "Vulnerabilities": [
28
+ {
29
+ "VulnerabilityID": "CVE-2021-44228",
30
+ "VendorIDs": [
31
+ "GHSA-jfh8-c2jp-5v3q"
32
+ ],
33
+ "PkgID": "org.apache.logging.log4j:log4j-core:2.14.1",
34
+ "PkgName": "org.apache.logging.log4j:log4j-core",
35
+ "PkgIdentifier": {
36
+ "PURL": "pkg:maven/org.apache.logging.log4j/log4j-core@2.14.1",
37
+ "UID": "45fa651edb220601",
38
+ "BOMRef": "pkg:maven/org.apache.logging.log4j/log4j-core@2.14.1"
39
+ },
40
+ "InstalledVersion": "2.14.1",
41
+ "FixedVersion": "2.15.0, 2.3.1, 2.12.2",
42
+ "Status": "fixed",
43
+ "SeveritySource": "ghsa",
44
+ "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-44228",
45
+ "DataSource": {
46
+ "ID": "ghsa",
47
+ "Name": "GitHub Security Advisory Maven",
48
+ "URL": "https://github.com/advisories?query=type%3Areviewed+ecosystem%3Amaven"
49
+ },
50
+ "Fingerprint": "sha256:a147e6e943843481b72c9120072d043ff40de9e5178b59823b31519e19377a93",
51
+ "Title": "log4j-core: Remote code execution in Log4j 2.x when logs contain an attacker-controlled string value",
52
+ "Description": "Apache Log4j2 2.0-beta9 through 2.15.0 (excluding security releases 2.12.2, 2.12.3, and 2.3.1) JNDI features used in configuration, log messages, and parameters do not protect against attacker controlled LDAP and other JNDI related endpoints. An attacker who can control log messages or log message parameters can execute arbitrary code loaded from LDAP servers when message lookup substitution is enabled. From log4j 2.15.0, this behavior has been disabled by default. From version 2.16.0 (along with 2.12.2, 2.12.3, and 2.3.1), this functionality has been completely removed. Note that this vulnerability is specific to log4j-core and does not affect log4net, log4cxx, or other Apache Logging Services projects.",
53
+ "Severity": "CRITICAL",
54
+ "CweIDs": [
55
+ "CWE-20",
56
+ "CWE-400",
57
+ "CWE-502",
58
+ "CWE-917"
59
+ ],
60
+ "VendorSeverity": {
61
+ "amazon": 4,
62
+ "ghsa": 4,
63
+ "nvd": 4,
64
+ "redhat": 4,
65
+ "ubuntu": 3
66
+ },
67
+ "CVSS": {
68
+ "ghsa": {
69
+ "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H/E:H",
70
+ "V3Score": 10
71
+ },
72
+ "nvd": {
73
+ "V2Vector": "AV:N/AC:M/Au:N/C:C/I:C/A:C",
74
+ "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H",
75
+ "V2Score": 9.3,
76
+ "V3Score": 10
77
+ },
78
+ "redhat": {
79
+ "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
80
+ "V3Score": 9.8
81
+ }
82
+ },
83
+ "References": [
84
+ "http://packetstormsecurity.com/files/165225/Apache-Log4j2-2.14.1-Remote-Code-Execution.html",
85
+ "http://packetstormsecurity.com/files/165260/VMware-Security-Advisory-2021-0028.html",
86
+ "http://packetstormsecurity.com/files/165261/Apache-Log4j2-2.14.1-Information-Disclosure.html",
87
+ "http://packetstormsecurity.com/files/165270/Apache-Log4j2-2.14.1-Remote-Code-Execution.html",
88
+ "http://packetstormsecurity.com/files/165281/Log4j2-Log4Shell-Regexes.html",
89
+ "http://packetstormsecurity.com/files/165282/Log4j-Payload-Generator.html",
90
+ "http://packetstormsecurity.com/files/165306/L4sh-Log4j-Remote-Code-Execution.html",
91
+ "http://packetstormsecurity.com/files/165307/Log4j-Remote-Code-Execution-Word-Bypassing.html",
92
+ "http://packetstormsecurity.com/files/165311/log4j-scan-Extensive-Scanner.html",
93
+ "http://packetstormsecurity.com/files/165371/VMware-Security-Advisory-2021-0028.4.html",
94
+ "http://packetstormsecurity.com/files/165532/Log4Shell-HTTP-Header-Injection.html",
95
+ "http://packetstormsecurity.com/files/165642/VMware-vCenter-Server-Unauthenticated-Log4Shell-JNDI-Injection-Remote-Code-Execution.html",
96
+ "http://packetstormsecurity.com/files/165673/UniFi-Network-Application-Unauthenticated-Log4Shell-Remote-Code-Execution.html",
97
+ "http://packetstormsecurity.com/files/167794/Open-Xchange-App-Suite-7.10.x-Cross-Site-Scripting-Command-Injection.html",
98
+ "http://packetstormsecurity.com/files/167917/MobileIron-Log4Shell-Remote-Command-Execution.html",
99
+ "http://packetstormsecurity.com/files/171626/AD-Manager-Plus-7122-Remote-Code-Execution.html",
100
+ "http://seclists.org/fulldisclosure/2022/Dec/2",
101
+ "http://seclists.org/fulldisclosure/2022/Jul/11",
102
+ "http://seclists.org/fulldisclosure/2022/Mar/23",
103
+ "http://www.openwall.com/lists/oss-security/2021/12/10/1",
104
+ "http://www.openwall.com/lists/oss-security/2021/12/10/2",
105
+ "http://www.openwall.com/lists/oss-security/2021/12/10/3",
106
+ "http://www.openwall.com/lists/oss-security/2021/12/13/1",
107
+ "http://www.openwall.com/lists/oss-security/2021/12/13/2",
108
+ "http://www.openwall.com/lists/oss-security/2021/12/14/4",
109
+ "http://www.openwall.com/lists/oss-security/2021/12/15/3",
110
+ "https://access.redhat.com/security/cve/CVE-2021-44228",
111
+ "https://cert-portal.siemens.com/productcert/pdf/ssa-397453.pdf",
112
+ "https://cert-portal.siemens.com/productcert/pdf/ssa-479842.pdf",
113
+ "https://cert-portal.siemens.com/productcert/pdf/ssa-661247.pdf",
114
+ "https://cert-portal.siemens.com/productcert/pdf/ssa-714170.pdf",
115
+ "https://github.com/advisories/GHSA-7rjr-3q55-vv33",
116
+ "https://github.com/advisories/GHSA-jfh8-c2jp-5v3q",
117
+ "https://github.com/apache/logging-log4j2",
118
+ "https://github.com/apache/logging-log4j2/commit/c77b3cb39312b83b053d23a2158b99ac7de44dd3",
119
+ "https://github.com/apache/logging-log4j2/pull/608",
120
+ "https://github.com/cisagov/log4j-affected-db",
121
+ "https://github.com/cisagov/log4j-affected-db/blob/develop/SOFTWARE-LIST.md",
122
+ "https://github.com/github/advisory-database/pull/5501",
123
+ "https://github.com/nu11secur1ty/CVE-mitre/tree/main/CVE-2021-44228",
124
+ "https://github.com/tangxiaofeng7/apache-log4j-poc",
125
+ "https://issues.apache.org/jira/browse/LOG4J2-3198",
126
+ "https://issues.apache.org/jira/browse/LOG4J2-3201",
127
+ "https://issues.apache.org/jira/browse/LOG4J2-3214",
128
+ "https://issues.apache.org/jira/browse/LOG4J2-3221",
129
+ "https://lists.debian.org/debian-lts-announce/2021/12/msg00007.html",
130
+ "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/M5CSVUNV4HWZZXGOKNSK6L7RPM7BOKIB",
131
+ "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/M5CSVUNV4HWZZXGOKNSK6L7RPM7BOKIB/",
132
+ "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU57UJDCFIASIO35GC55JMKSRXJMCDFM",
133
+ "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU57UJDCFIASIO35GC55JMKSRXJMCDFM/",
134
+ "https://logging.apache.org/log4j/2.x/changes-report.html#a2.15.0",
135
+ "https://logging.apache.org/log4j/2.x/manual/lookups.html#JndiLookup",
136
+ "https://logging.apache.org/log4j/2.x/manual/migration.html",
137
+ "https://logging.apache.org/log4j/2.x/security.html",
138
+ "https://msrc-blog.microsoft.com/2021/12/11/microsofts-response-to-cve-2021-44228-apache-log4j2",
139
+ "https://msrc-blog.microsoft.com/2021/12/11/microsofts-response-to-cve-2021-44228-apache-log4j2/",
140
+ "https://nvd.nist.gov/vuln/detail/CVE-2021-44228",
141
+ "https://packetstormsecurity.com/files/165673/UniFi-Network-Application-Unauthenticated-Log4Shell-Remote-Code-Execution.html",
142
+ "https://packetstormsecurity.com/files/167794/Open-Xchange-App-Suite-7.10.x-Cross-Site-Scripting-Command-Injection.html",
143
+ "https://packetstormsecurity.com/files/167917/MobileIron-Log4Shell-Remote-Command-Execution.html",
144
+ "https://packetstormsecurity.com/files/171626/AD-Manager-Plus-7122-Remote-Code-Execution.html",
145
+ "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2021-0032",
146
+ "https://sec.cloudapps.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-apache-log4j-qRuKNEbd",
147
+ "https://seclists.org/fulldisclosure/2022/Dec/2",
148
+ "https://seclists.org/fulldisclosure/2022/Jul/11",
149
+ "https://seclists.org/fulldisclosure/2022/Mar/23",
150
+ "https://security.netapp.com/advisory/ntap-20211210-0007",
151
+ "https://security.netapp.com/advisory/ntap-20211210-0007/",
152
+ "https://support.apple.com/kb/HT213189",
153
+ "https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-apache-log4j-qRuKNEbd",
154
+ "https://twitter.com/kurtseifried/status/1469345530182455296",
155
+ "https://ubuntu.com/security/notices/USN-5192-1",
156
+ "https://ubuntu.com/security/notices/USN-5192-2",
157
+ "https://ubuntu.com/security/notices/USN-5197-1",
158
+ "https://wiki.ubuntu.com/SecurityTeam/KnowledgeBase/Log4Shell",
159
+ "https://www.bentley.com/en/common-vulnerability-exposure/be-2022-0001",
160
+ "https://www.cisa.gov/known-exploited-vulnerabilities-catalog",
161
+ "https://www.cisa.gov/known-exploited-vulnerabilities-catalog?field_cve=CVE-2021-44228",
162
+ "https://www.cve.org/CVERecord?id=CVE-2021-44228",
163
+ "https://www.debian.org/security/2021/dsa-5020",
164
+ "https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00646.html",
165
+ "https://www.kb.cert.org/vuls/id/930724",
166
+ "https://www.lunasec.io/docs/blog/log4j-zero-day/",
167
+ "https://www.nu11secur1ty.com/2021/12/cve-2021-44228.html",
168
+ "https://www.oracle.com/security-alerts/alert-cve-2021-44228.html",
169
+ "https://www.oracle.com/security-alerts/cpuapr2022.html",
170
+ "https://www.oracle.com/security-alerts/cpujan2022.html"
171
+ ],
172
+ "PublishedDate": "2021-12-10T10:15:09.143Z",
173
+ "LastModifiedDate": "2026-06-17T04:12:05.46Z"
174
+ },
175
+ {
176
+ "VulnerabilityID": "CVE-2021-45046",
177
+ "VendorIDs": [
178
+ "GHSA-7rjr-3q55-vv33"
179
+ ],
180
+ "PkgID": "org.apache.logging.log4j:log4j-core:2.14.1",
181
+ "PkgName": "org.apache.logging.log4j:log4j-core",
182
+ "PkgIdentifier": {
183
+ "PURL": "pkg:maven/org.apache.logging.log4j/log4j-core@2.14.1",
184
+ "UID": "45fa651edb220601",
185
+ "BOMRef": "pkg:maven/org.apache.logging.log4j/log4j-core@2.14.1"
186
+ },
187
+ "InstalledVersion": "2.14.1",
188
+ "FixedVersion": "2.16.0, 2.12.2",
189
+ "Status": "fixed",
190
+ "SeveritySource": "ghsa",
191
+ "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-45046",
192
+ "DataSource": {
193
+ "ID": "ghsa",
194
+ "Name": "GitHub Security Advisory Maven",
195
+ "URL": "https://github.com/advisories?query=type%3Areviewed+ecosystem%3Amaven"
196
+ },
197
+ "Fingerprint": "sha256:1796e91f7edd8542c80d3e3e8f2c6d817f6498054b2bd59d4077c8c518b0b2f3",
198
+ "Title": "log4j-core: DoS in log4j 2.x with thread context message pattern and context lookup pattern (incomplete fix for CVE-2021-44228)",
199
+ "Description": "It was found that the fix to address CVE-2021-44228 in Apache Log4j 2.15.0 was incomplete in certain non-default configurations. This could allows attackers with control over Thread Context Map (MDC) input data when the logging configuration uses a non-default Pattern Layout with either a Context Lookup (for example, $${ctx:loginId}) or a Thread Context Map pattern (%X, %mdc, or %MDC) to craft malicious input data using a JNDI Lookup pattern resulting in an information leak and remote code execution in some environments and local code execution in all environments. Log4j 2.16.0 (Java 8) and 2.12.2 (Java 7) fix this issue by removing support for message lookup patterns and disabling JNDI functionality by default.",
200
+ "Severity": "CRITICAL",
201
+ "CweIDs": [
202
+ "CWE-917"
203
+ ],
204
+ "VendorSeverity": {
205
+ "amazon": 4,
206
+ "ghsa": 4,
207
+ "nvd": 4,
208
+ "redhat": 2,
209
+ "ubuntu": 3
210
+ },
211
+ "CVSS": {
212
+ "ghsa": {
213
+ "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:H/E:H",
214
+ "V3Score": 9.1
215
+ },
216
+ "nvd": {
217
+ "V2Vector": "AV:N/AC:H/Au:N/C:P/I:P/A:P",
218
+ "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:H",
219
+ "V2Score": 5.1,
220
+ "V3Score": 9
221
+ },
222
+ "redhat": {
223
+ "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
224
+ "V3Score": 8.1
225
+ }
226
+ },
227
+ "References": [
228
+ "http://www.openwall.com/lists/oss-security/2021/12/14/4",
229
+ "http://www.openwall.com/lists/oss-security/2021/12/15/3",
230
+ "http://www.openwall.com/lists/oss-security/2021/12/18/1",
231
+ "https://access.redhat.com/security/cve/CVE-2021-44228",
232
+ "https://access.redhat.com/security/cve/CVE-2021-45046",
233
+ "https://cert-portal.siemens.com/productcert/pdf/ssa-397453.pdf",
234
+ "https://cert-portal.siemens.com/productcert/pdf/ssa-479842.pdf",
235
+ "https://cert-portal.siemens.com/productcert/pdf/ssa-661247.pdf",
236
+ "https://cert-portal.siemens.com/productcert/pdf/ssa-714170.pdf",
237
+ "https://github.com/advisories/GHSA-jfh8-c2jp-5v3q",
238
+ "https://issues.apache.org/jira/browse/LOG4J2-3221",
239
+ "https://lists.apache.org/thread/83y7dx5xvn3h5290q1twn16tltolv88f",
240
+ "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EOKPQGV24RRBBI4TBZUDQMM4MEH7MXCY",
241
+ "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EOKPQGV24RRBBI4TBZUDQMM4MEH7MXCY/",
242
+ "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SIG7FZULMNK2XF6FZRU4VWYDQXNMUGAJ",
243
+ "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SIG7FZULMNK2XF6FZRU4VWYDQXNMUGAJ/",
244
+ "https://logging.apache.org/log4j/2.x/security.html",
245
+ "https://nvd.nist.gov/vuln/detail/CVE-2021-45046",
246
+ "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2021-0032",
247
+ "https://sec.cloudapps.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-apache-log4j-qRuKNEbd",
248
+ "https://security.gentoo.org/glsa/202310-16",
249
+ "https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-apache-log4j-qRuKNEbd",
250
+ "https://ubuntu.com/security/notices/USN-5197-1",
251
+ "https://wiki.ubuntu.com/SecurityTeam/KnowledgeBase/Log4Shell",
252
+ "https://www.cisa.gov/known-exploited-vulnerabilities-catalog",
253
+ "https://www.cisa.gov/known-exploited-vulnerabilities-catalog?field_cve=CVE-2021-45046",
254
+ "https://www.cve.org/CVERecord?id=CVE-2021-44228",
255
+ "https://www.cve.org/CVERecord?id=CVE-2021-45046",
256
+ "https://www.debian.org/security/2021/dsa-5022",
257
+ "https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00646.html",
258
+ "https://www.kb.cert.org/vuls/id/930724",
259
+ "https://www.openwall.com/lists/oss-security/2021/12/14/4",
260
+ "https://www.oracle.com/security-alerts/alert-cve-2021-44228.html",
261
+ "https://www.oracle.com/security-alerts/cpuapr2022.html",
262
+ "https://www.oracle.com/security-alerts/cpujan2022.html",
263
+ "https://www.oracle.com/security-alerts/cpujul2022.html"
264
+ ],
265
+ "PublishedDate": "2021-12-14T19:15:07.733Z",
266
+ "LastModifiedDate": "2026-06-17T04:13:05.57Z"
267
+ },
268
+ {
269
+ "VulnerabilityID": "CVE-2021-45105",
270
+ "VendorIDs": [
271
+ "GHSA-p6xc-xr62-6r2g"
272
+ ],
273
+ "PkgID": "org.apache.logging.log4j:log4j-core:2.14.1",
274
+ "PkgName": "org.apache.logging.log4j:log4j-core",
275
+ "PkgIdentifier": {
276
+ "PURL": "pkg:maven/org.apache.logging.log4j/log4j-core@2.14.1",
277
+ "UID": "45fa651edb220601",
278
+ "BOMRef": "pkg:maven/org.apache.logging.log4j/log4j-core@2.14.1"
279
+ },
280
+ "InstalledVersion": "2.14.1",
281
+ "FixedVersion": "2.12.3, 2.17.0, 2.3.1",
282
+ "Status": "fixed",
283
+ "SeveritySource": "ghsa",
284
+ "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-45105",
285
+ "DataSource": {
286
+ "ID": "ghsa",
287
+ "Name": "GitHub Security Advisory Maven",
288
+ "URL": "https://github.com/advisories?query=type%3Areviewed+ecosystem%3Amaven"
289
+ },
290
+ "Fingerprint": "sha256:1276160c0dc5a9521f870ca2e6bffd2bebce7d4e4fc1bfd8eebc885ad7724742",
291
+ "Title": "log4j-core: DoS in log4j 2.x with Thread Context Map (MDC) input data contains a recursive lookup and context lookup pattern",
292
+ "Description": "Apache Log4j2 versions 2.0-alpha1 through 2.16.0 (excluding 2.12.3 and 2.3.1) did not protect from uncontrolled recursion from self-referential lookups. This allows an attacker with control over Thread Context Map data to cause a denial of service when a crafted string is interpreted. This issue was fixed in Log4j 2.17.0, 2.12.3, and 2.3.1.",
293
+ "Severity": "HIGH",
294
+ "CweIDs": [
295
+ "CWE-20",
296
+ "CWE-674"
297
+ ],
298
+ "VendorSeverity": {
299
+ "amazon": 4,
300
+ "ghsa": 3,
301
+ "nvd": 2,
302
+ "redhat": 2,
303
+ "ubuntu": 2
304
+ },
305
+ "CVSS": {
306
+ "ghsa": {
307
+ "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:N/A:H",
308
+ "V3Score": 8.6
309
+ },
310
+ "nvd": {
311
+ "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P",
312
+ "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
313
+ "V2Score": 4.3,
314
+ "V3Score": 5.9
315
+ },
316
+ "redhat": {
317
+ "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
318
+ "V3Score": 5.9
319
+ }
320
+ },
321
+ "References": [
322
+ "http://www.openwall.com/lists/oss-security/2021/12/19/1",
323
+ "https://access.redhat.com/security/cve/CVE-2021-45105",
324
+ "https://cert-portal.siemens.com/productcert/pdf/ssa-479842.pdf",
325
+ "https://cert-portal.siemens.com/productcert/pdf/ssa-501673.pdf",
326
+ "https://issues.apache.org/jira/browse/LOG4J2-3230",
327
+ "https://lists.debian.org/debian-lts-announce/2021/12/msg00017.html",
328
+ "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EOKPQGV24RRBBI4TBZUDQMM4MEH7MXCY",
329
+ "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SIG7FZULMNK2XF6FZRU4VWYDQXNMUGAJ",
330
+ "https://logging.apache.org/log4j/2.x/security.html",
331
+ "https://logging.apache.org/log4j/2.x/security.html#CVE-2021-45105",
332
+ "https://nvd.nist.gov/vuln/detail/CVE-2021-45105",
333
+ "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2021-0032",
334
+ "https://sec.cloudapps.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-apache-log4j-qRuKNEbd",
335
+ "https://security.netapp.com/advisory/ntap-20211218-0001",
336
+ "https://security.netapp.com/advisory/ntap-20211218-0001/",
337
+ "https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-apache-log4j-qRuKNEbd",
338
+ "https://ubuntu.com/security/notices/USN-5203-1",
339
+ "https://ubuntu.com/security/notices/USN-5222-1",
340
+ "https://wiki.ubuntu.com/SecurityTeam/KnowledgeBase/Log4Shell",
341
+ "https://www.cve.org/CVERecord?id=CVE-2021-45105",
342
+ "https://www.debian.org/security/2021/dsa-5024",
343
+ "https://www.kb.cert.org/vuls/id/930724",
344
+ "https://www.openwall.com/lists/oss-security/2021/12/19/1",
345
+ "https://www.oracle.com/security-alerts/cpuapr2022.html",
346
+ "https://www.oracle.com/security-alerts/cpujan2022.html",
347
+ "https://www.oracle.com/security-alerts/cpujul2022.html",
348
+ "https://www.zerodayinitiative.com/advisories/ZDI-21-1541",
349
+ "https://www.zerodayinitiative.com/advisories/ZDI-21-1541/"
350
+ ],
351
+ "PublishedDate": "2021-12-18T12:15:07.433Z",
352
+ "LastModifiedDate": "2026-06-17T04:13:11.08Z"
353
+ },
354
+ {
355
+ "VulnerabilityID": "CVE-2021-44832",
356
+ "VendorIDs": [
357
+ "GHSA-8489-44mv-ggj8"
358
+ ],
359
+ "PkgID": "org.apache.logging.log4j:log4j-core:2.14.1",
360
+ "PkgName": "org.apache.logging.log4j:log4j-core",
361
+ "PkgIdentifier": {
362
+ "PURL": "pkg:maven/org.apache.logging.log4j/log4j-core@2.14.1",
363
+ "UID": "45fa651edb220601",
364
+ "BOMRef": "pkg:maven/org.apache.logging.log4j/log4j-core@2.14.1"
365
+ },
366
+ "InstalledVersion": "2.14.1",
367
+ "FixedVersion": "2.3.2, 2.12.4, 2.17.1",
368
+ "Status": "fixed",
369
+ "SeveritySource": "ghsa",
370
+ "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-44832",
371
+ "DataSource": {
372
+ "ID": "ghsa",
373
+ "Name": "GitHub Security Advisory Maven",
374
+ "URL": "https://github.com/advisories?query=type%3Areviewed+ecosystem%3Amaven"
375
+ },
376
+ "Fingerprint": "sha256:3374178e795c1f319ee802437de79e58534541595eff593ef696482d02ccbe8b",
377
+ "Title": "log4j-core: remote code execution via JDBC Appender",
378
+ "Description": "Apache Log4j2 versions 2.0-beta7 through 2.17.0 (excluding security fix releases 2.3.2 and 2.12.4) are vulnerable to a remote code execution (RCE) attack when a configuration uses a JDBC Appender with a JNDI LDAP data source URI when an attacker has control of the target LDAP server. This issue is fixed by limiting JNDI data source names to the java protocol in Log4j2 versions 2.17.1, 2.12.4, and 2.3.2.",
379
+ "Severity": "MEDIUM",
380
+ "CweIDs": [
381
+ "CWE-20",
382
+ "CWE-74"
383
+ ],
384
+ "VendorSeverity": {
385
+ "amazon": 4,
386
+ "ghsa": 2,
387
+ "nvd": 2,
388
+ "redhat": 2,
389
+ "ubuntu": 2
390
+ },
391
+ "CVSS": {
392
+ "ghsa": {
393
+ "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H",
394
+ "V3Score": 6.6
395
+ },
396
+ "nvd": {
397
+ "V2Vector": "AV:N/AC:M/Au:S/C:C/I:C/A:C",
398
+ "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H",
399
+ "V2Score": 8.5,
400
+ "V3Score": 6.6
401
+ },
402
+ "redhat": {
403
+ "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H",
404
+ "V3Score": 6.6
405
+ }
406
+ },
407
+ "References": [
408
+ "http://www.openwall.com/lists/oss-security/2021/12/28/1",
409
+ "https://access.redhat.com/security/cve/CVE-2021-44832",
410
+ "https://cert-portal.siemens.com/productcert/pdf/ssa-784507.pdf",
411
+ "https://github.com/apache/logging-log4j2",
412
+ "https://github.com/apache/logging-log4j2/commit/05db5f9527254632b59aed2a1d78a32c5ab74f16",
413
+ "https://issues.apache.org/jira/browse/LOG4J2-3293",
414
+ "https://lists.apache.org/thread/s1o5vlo78ypqxnzn6p8zf6t9shtq5143",
415
+ "https://lists.debian.org/debian-lts-announce/2021/12/msg00036.html",
416
+ "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EVV25FXL4FU5X6X5BSL7RLQ7T6F65MRA",
417
+ "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EVV25FXL4FU5X6X5BSL7RLQ7T6F65MRA/",
418
+ "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/T57MPJUW3MA6QGWZRTMCHHMMPQNVKGFC",
419
+ "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/T57MPJUW3MA6QGWZRTMCHHMMPQNVKGFC/",
420
+ "https://nvd.nist.gov/vuln/detail/CVE-2021-44832",
421
+ "https://sec.cloudapps.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-apache-log4j-qRuKNEbd",
422
+ "https://security.netapp.com/advisory/ntap-20220104-0001",
423
+ "https://security.netapp.com/advisory/ntap-20220104-0001/",
424
+ "https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-apache-log4j-qRuKNEbd",
425
+ "https://ubuntu.com/security/notices/USN-5222-1",
426
+ "https://www.cve.org/CVERecord?id=CVE-2021-44832",
427
+ "https://www.oracle.com/security-alerts/cpuapr2022.html",
428
+ "https://www.oracle.com/security-alerts/cpujan2022.html",
429
+ "https://www.oracle.com/security-alerts/cpujul2022.html"
430
+ ],
431
+ "PublishedDate": "2021-12-28T20:15:08.4Z",
432
+ "LastModifiedDate": "2026-06-17T04:12:52.013Z"
433
+ },
434
+ {
435
+ "VulnerabilityID": "CVE-2025-68161",
436
+ "VendorIDs": [
437
+ "GHSA-vc5p-v9hr-52mj"
438
+ ],
439
+ "PkgID": "org.apache.logging.log4j:log4j-core:2.14.1",
440
+ "PkgName": "org.apache.logging.log4j:log4j-core",
441
+ "PkgIdentifier": {
442
+ "PURL": "pkg:maven/org.apache.logging.log4j/log4j-core@2.14.1",
443
+ "UID": "45fa651edb220601",
444
+ "BOMRef": "pkg:maven/org.apache.logging.log4j/log4j-core@2.14.1"
445
+ },
446
+ "InstalledVersion": "2.14.1",
447
+ "FixedVersion": "2.25.3",
448
+ "Status": "fixed",
449
+ "SeveritySource": "ghsa",
450
+ "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2025-68161",
451
+ "DataSource": {
452
+ "ID": "ghsa",
453
+ "Name": "GitHub Security Advisory Maven",
454
+ "URL": "https://github.com/advisories?query=type%3Areviewed+ecosystem%3Amaven"
455
+ },
456
+ "Fingerprint": "sha256:bcb432fd881b6fdffdb22d7ecca0421845ebb06020217f8f815064b6819a9a4a",
457
+ "Title": "Apache Log4j: Apache Log4j Core: Information disclosure via missing TLS hostname verification",
458
+ "Description": "The Socket Appender in Apache Log4j Core versions 2.0-beta9 through 2.25.2 does not perform TLS hostname verification of the peer certificate, even when the verifyHostName https://logging.apache.org/log4j/2.x/manual/appenders/network.html#SslConfiguration-attr-verifyHostName configuration attribute or the log4j2.sslVerifyHostName https://logging.apache.org/log4j/2.x/manual/systemproperties.html#log4j2.sslVerifyHostName system property is set to true.\n\nThis issue may allow a man-in-the-middle attacker to intercept or redirect log traffic under the following conditions:\n\n * The attacker is able to intercept or redirect network traffic between the client and the log receiver.\n * The attacker can present a server certificate issued by a certification authority trusted by the Socket Appender’s configured trust store (or by the default Java trust store if no custom trust store is configured).\n\n\nUsers are advised to upgrade to Apache Log4j Core version 2.25.3, which addresses this issue.\n\nAs an alternative mitigation, the Socket Appender may be configured to use a private or restricted trust root to limit the set of trusted certificates.",
459
+ "Severity": "MEDIUM",
460
+ "CweIDs": [
461
+ "CWE-297",
462
+ "CWE-295"
463
+ ],
464
+ "VendorSeverity": {
465
+ "amazon": 2,
466
+ "ghsa": 2,
467
+ "nvd": 2,
468
+ "redhat": 2
469
+ },
470
+ "CVSS": {
471
+ "ghsa": {
472
+ "V40Vector": "CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:L/SA:N",
473
+ "V40Score": 6.3
474
+ },
475
+ "nvd": {
476
+ "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N",
477
+ "V3Score": 4.8
478
+ },
479
+ "redhat": {
480
+ "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
481
+ "V3Score": 5.9
482
+ }
483
+ },
484
+ "References": [
485
+ "http://www.openwall.com/lists/oss-security/2025/12/18/1",
486
+ "https://access.redhat.com/security/cve/CVE-2025-68161",
487
+ "https://github.com/apache/logging-log4j2",
488
+ "https://github.com/apache/logging-log4j2/commit/3b93748497e1adbbd027fda8a5e7268ec5d0d578",
489
+ "https://github.com/apache/logging-log4j2/pull/4002",
490
+ "https://lists.apache.org/thread/xr33kyxq3sl67lwb61ggvm1fzc8k7dvx",
491
+ "https://lists.debian.org/debian-lts-announce/2026/01/msg00015.html",
492
+ "https://logging.apache.org/cyclonedx/vdr.xml",
493
+ "https://logging.apache.org/log4j/2.x/manual/appenders/network.html#SslConfiguration-attr-verifyHostName",
494
+ "https://logging.apache.org/log4j/2.x/manual/systemproperties.html#log4j2.sslVerifyHostName",
495
+ "https://logging.apache.org/security.html#CVE-2025-68161",
496
+ "https://nvd.nist.gov/vuln/detail/CVE-2025-68161",
497
+ "https://www.cve.org/CVERecord?id=CVE-2025-68161"
498
+ ],
499
+ "PublishedDate": "2025-12-18T21:15:57.96Z",
500
+ "LastModifiedDate": "2026-06-17T09:58:39.58Z"
501
+ },
502
+ {
503
+ "VulnerabilityID": "CVE-2026-34477",
504
+ "VendorIDs": [
505
+ "GHSA-6hg6-v5c8-fphq"
506
+ ],
507
+ "PkgID": "org.apache.logging.log4j:log4j-core:2.14.1",
508
+ "PkgName": "org.apache.logging.log4j:log4j-core",
509
+ "PkgIdentifier": {
510
+ "PURL": "pkg:maven/org.apache.logging.log4j/log4j-core@2.14.1",
511
+ "UID": "45fa651edb220601",
512
+ "BOMRef": "pkg:maven/org.apache.logging.log4j/log4j-core@2.14.1"
513
+ },
514
+ "InstalledVersion": "2.14.1",
515
+ "FixedVersion": "2.25.4",
516
+ "Status": "fixed",
517
+ "SeveritySource": "ghsa",
518
+ "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2026-34477",
519
+ "DataSource": {
520
+ "ID": "ghsa",
521
+ "Name": "GitHub Security Advisory Maven",
522
+ "URL": "https://github.com/advisories?query=type%3Areviewed+ecosystem%3Amaven"
523
+ },
524
+ "Fingerprint": "sha256:09fc3896756079e7c74ab0243d0019b54abc7cc8a48eae8104b67800bc5b3bd2",
525
+ "Title": "org.apache.logging.log4j/log4j-core: Apache Log4j Core: Man-in-the-middle attack due to incomplete hostname verification",
526
+ "Description": "The fix for CVE-2025-68161 https://logging.apache.org/security.html#CVE-2025-68161 was incomplete: it addressed hostname verification only when enabled via the log4j2.sslVerifyHostName https://logging.apache.org/log4j/2.x/manual/systemproperties.html#log4j2.sslVerifyHostName system property, but not when configured through the verifyHostName https://logging.apache.org/log4j/2.x/manual/appenders/network.html#SslConfiguration-attr-verifyHostName attribute of the \u003cSsl\u003e element.\n\nAlthough the verifyHostName configuration attribute was introduced in Log4j Core 2.12.0, it was silently ignored in all versions through 2.25.3, leaving TLS connections vulnerable to interception regardless of the configured value.\n\nA network-based attacker may be able to perform a man-in-the-middle attack when all of the following conditions are met:\n\n * An SMTP, Socket, or Syslog appender is in use.\n * TLS is configured via a nested \u003cSsl\u003e element.\n * The attacker can present a certificate issued by a CA trusted by the appender's configured trust store, or by the default Java trust store if none is configured.\nThis issue does not affect users of the HTTP appender, which uses a separate verifyHostname https://logging.apache.org/log4j/2.x/manual/appenders/network.html#HttpAppender-attr-verifyHostName attribute that was not subject to this bug and verifies host names by default.\n\nUsers are advised to upgrade to Apache Log4j Core 2.25.4, which corrects this issue.",
527
+ "Severity": "MEDIUM",
528
+ "CweIDs": [
529
+ "CWE-297",
530
+ "CWE-295"
531
+ ],
532
+ "VendorSeverity": {
533
+ "ghsa": 2,
534
+ "nvd": 2,
535
+ "redhat": 2
536
+ },
537
+ "CVSS": {
538
+ "ghsa": {
539
+ "V40Vector": "CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:L/SA:N",
540
+ "V40Score": 6.3
541
+ },
542
+ "nvd": {
543
+ "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N",
544
+ "V3Score": 5.9
545
+ },
546
+ "redhat": {
547
+ "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:N",
548
+ "V3Score": 6.8
549
+ }
550
+ },
551
+ "References": [
552
+ "https://access.redhat.com/security/cve/CVE-2026-34477",
553
+ "https://github.com/apache/logging-log4j2",
554
+ "https://github.com/apache/logging-log4j2/pull/4075",
555
+ "https://lists.apache.org/thread/lkx8cl46t2bvkcwfcb2pd43ygc097lq4",
556
+ "https://logging.apache.org/cyclonedx/vdr.xml",
557
+ "https://logging.apache.org/log4j/2.x/manual/appenders/network.html#SslConfiguration-attr-verifyHostName",
558
+ "https://logging.apache.org/security.html#CVE-2026-34477",
559
+ "https://nvd.nist.gov/vuln/detail/CVE-2026-34477",
560
+ "https://www.cve.org/CVERecord?id=CVE-2026-34477"
561
+ ],
562
+ "PublishedDate": "2026-04-10T16:16:30.843Z",
563
+ "LastModifiedDate": "2026-06-17T10:39:06.643Z"
564
+ },
565
+ {
566
+ "VulnerabilityID": "CVE-2026-34480",
567
+ "VendorIDs": [
568
+ "GHSA-3pxv-7cmr-fjr4"
569
+ ],
570
+ "PkgID": "org.apache.logging.log4j:log4j-core:2.14.1",
571
+ "PkgName": "org.apache.logging.log4j:log4j-core",
572
+ "PkgIdentifier": {
573
+ "PURL": "pkg:maven/org.apache.logging.log4j/log4j-core@2.14.1",
574
+ "UID": "45fa651edb220601",
575
+ "BOMRef": "pkg:maven/org.apache.logging.log4j/log4j-core@2.14.1"
576
+ },
577
+ "InstalledVersion": "2.14.1",
578
+ "FixedVersion": "2.25.4",
579
+ "Status": "fixed",
580
+ "SeveritySource": "ghsa",
581
+ "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2026-34480",
582
+ "DataSource": {
583
+ "ID": "ghsa",
584
+ "Name": "GitHub Security Advisory Maven",
585
+ "URL": "https://github.com/advisories?query=type%3Areviewed+ecosystem%3Amaven"
586
+ },
587
+ "Fingerprint": "sha256:0c347b49597f446fa10addc8842189bd8cf448a1731d57738c40c4bd23100c3e",
588
+ "Title": "org.apache.logging.log4j/log4j-core: Apache Log4j Core: Invalid XML output causes denial of service in logging",
589
+ "Description": "Apache Log4j Core's XmlLayout https://logging.apache.org/log4j/2.x/manual/layouts.html#XmlLayout , in versions up to and including 2.25.3, fails to sanitize characters forbidden by the XML 1.0 specification https://www.w3.org/TR/xml/#charsets producing invalid XML output whenever a log message or MDC value contains such characters.\n\nThe impact depends on the StAX implementation in use:\n\n * JRE built-in StAX: Forbidden characters are silently written to the output, producing malformed XML. Conforming parsers must reject such documents with a fatal error, which may cause downstream log-processing systems to drop the affected records.\n * Alternative StAX implementations (e.g., Woodstox https://github.com/FasterXML/woodstox , a transitive dependency of the Jackson XML Dataformat module): An exception is thrown during the logging call, and the log event is never delivered to its intended appender, only to Log4j's internal status logger.\n\n\nUsers are advised to upgrade to Apache Log4j Core 2.25.4, which corrects this issue by sanitizing forbidden characters before XML output.",
590
+ "Severity": "MEDIUM",
591
+ "CweIDs": [
592
+ "CWE-116"
593
+ ],
594
+ "VendorSeverity": {
595
+ "ghsa": 2,
596
+ "nvd": 3,
597
+ "redhat": 2
598
+ },
599
+ "CVSS": {
600
+ "ghsa": {
601
+ "V40Vector": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:N/SI:L/SA:N",
602
+ "V40Score": 6.9
603
+ },
604
+ "nvd": {
605
+ "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
606
+ "V3Score": 7.5
607
+ },
608
+ "redhat": {
609
+ "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
610
+ "V3Score": 5.3
611
+ }
612
+ },
613
+ "References": [
614
+ "http://www.openwall.com/lists/oss-security/2026/04/10/9",
615
+ "https://access.redhat.com/security/cve/CVE-2026-34480",
616
+ "https://github.com/apache/logging-log4j2",
617
+ "https://github.com/apache/logging-log4j2/pull/4077",
618
+ "https://lists.apache.org/thread/5x0hcnng0chhghp6jgjdp3qmbbhfjzhb",
619
+ "https://logging.apache.org/cyclonedx/vdr.xml",
620
+ "https://logging.apache.org/log4j/2.x/manual/layouts.html#XmlLayout",
621
+ "https://logging.apache.org/security.html#CVE-2026-34480",
622
+ "https://nvd.nist.gov/vuln/detail/CVE-2026-34480",
623
+ "https://www.cve.org/CVERecord?id=CVE-2026-34480"
624
+ ],
625
+ "PublishedDate": "2026-04-10T16:16:31.463Z",
626
+ "LastModifiedDate": "2026-06-17T10:39:07.087Z"
627
+ }
628
+ ]
629
+ }
630
+ ]
631
+ }