Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,35 @@
"aliases": [
"CVE-2026-0603"
],
"summary": "A remote attacker with low privileges could exploit a second-order SQL injection vulnerability ",
"details": "A flaw was found in Hibernate. A remote attacker with low privileges could exploit a second-order SQL injection vulnerability by providing specially crafted, unsanitized non-alphanumeric characters in the ID column when the InlineIdsOrClauseBuilder is used. This could lead to sensitive information disclosure, such as reading system files, and allow for data manipulation or deletion within the application's database, resulting in an application level denial of service.",
"severity": [
{
"type": "CVSS_V3",
"score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:L"
}
],
"affected": [],
"affected": [
{
"package": {
"ecosystem": "Maven",
"name": "org.hibernate:hibernate-core"
},
"ranges": [
{
"type": "ECOSYSTEM",
"events": [
{
"introduced": "5.2.8"
}
]
}
],
"database_specific": {
"last_known_affected_version_range": "< 5.6.16"
}
Comment on lines +23 to +35
Copy link

Copilot AI Apr 16, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The ranges[].events declares only introduced, which (per OSV semantics) implies the package remains affected indefinitely. Since the advisory text states affected versions are 5.2.8 through 5.6.15 (inclusive), encode an explicit upper bound in events (e.g., add a fixed: \"5.6.16\" or use last_affected: \"5.6.15\"). Keeping the upper bound only in database_specific.last_known_affected_version_range can lead consumers that rely on ranges to incorrectly treat newer versions as vulnerable.

Copilot uses AI. Check for mistakes.
}
],
"references": [
{
"type": "ADVISORY",
Expand Down
Loading