-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: narrow down list of classes in log4j (#182)
* fix: get the correct jar for log4j * Fix tests * Fix package name of log4j
- Loading branch information
1 parent
a9c164d
commit 60df7d5
Showing
4 changed files
with
90 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71 changes: 71 additions & 0 deletions
71
classfile-fingerprint/src/test/resources/supply-chain-index/log4j-core.bom.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
{ | ||
"$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json", | ||
"bomFormat": "CycloneDX", | ||
"specVersion": "1.5", | ||
"version": 1, | ||
"components": [ | ||
{ | ||
"bom-ref": "org.example:log4shell-poc:1.0-SNAPSHOT", | ||
"type": "application", | ||
"group": "org.example", | ||
"name": "log4shell-poc", | ||
"version": "1.0-SNAPSHOT" | ||
}, | ||
{ | ||
"bom-ref": "org.apache.logging.log4j:log4j-core:2.14.1", | ||
"type": "library", | ||
"group": "org.apache.logging.log4j", | ||
"name": "log4j-core", | ||
"version": "2.14.1", | ||
"hashes": [ | ||
{ | ||
"alg": "SHA-256", | ||
"content": "ade7402a70667a727635d5c4c29495f4ff96f061f12539763f6f123973b465b0" | ||
}, | ||
{ | ||
"alg": "SHA-1", | ||
"content": "9141212b8507ab50a45525b545b39d224614528b" | ||
}, | ||
{ | ||
"alg": "MD5", | ||
"content": "948dda787593340a7af1a18e328b7b7f" | ||
} | ||
] | ||
}, | ||
{ | ||
"bom-ref": "org.apache.logging.log4j:log4j-api:2.14.1", | ||
"type": "library", | ||
"group": "org.apache.logging.log4j", | ||
"name": "log4j-api", | ||
"version": "2.14.1", | ||
"hashes": [ | ||
{ | ||
"alg": "SHA-256", | ||
"content": "8caf58db006c609949a0068110395a33067a2bad707c3da35e959c0473f9a916" | ||
}, | ||
{ | ||
"alg": "SHA-1", | ||
"content": "cd8858fbbde69f46bce8db1152c18a43328aae78" | ||
}, | ||
{ | ||
"alg": "MD5", | ||
"content": "6f31a3b90c3eb09fb0dc0aef155a001c" | ||
} | ||
] | ||
} | ||
], | ||
"dependencies": [ | ||
{ | ||
"ref": "org.example:log4shell-poc:1.0-SNAPSHOT", | ||
"dependsOn": [ | ||
"org.apache.logging.log4j:log4j-core:2.14.1" | ||
] | ||
}, | ||
{ | ||
"ref": "org.apache.logging.log4j:log4j-core:2.14.1", | ||
"dependsOn": [ | ||
"org.apache.logging.log4j:log4j-api:2.14.1" | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters