mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

dependabot[bot]
04.11.2025 b34f31f8350b265fda2700e0c0ad70726565af78
CVE-2025-59250 JDBC Driver for SQL Server has improper input validation issue (#570)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: maximthomas <maxim.thomas@gmail.com>
Co-authored-by: Valera V Harseko <vharseko@3a-systems.ru>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2 files modified
4 ■■■■ changed files
opendj-server-legacy/pom.xml 2 ●●● patch | view | raw | blame | history
opendj-server-legacy/src/test/java/org/opends/server/types/HostPortTest.java 2 ●●● patch | view | raw | blame | history
opendj-server-legacy/pom.xml
@@ -319,7 +319,7 @@
    <dependency>
      <groupId>com.microsoft.sqlserver</groupId>
      <artifactId>mssql-jdbc</artifactId>
      <version>12.10.0.jre8</version>
      <version>12.10.2.jre11</version>
    </dependency>
    <dependency>
      <groupId>org.bouncycastle</groupId>
opendj-server-legacy/src/test/java/org/opends/server/types/HostPortTest.java
@@ -256,7 +256,7 @@
    HostPort hpNull = new HostPort(null, 0);
    assertThat(hp1.isEquivalentTo(hpNull)).isFalse();
    HostPort nonLocalHp = HostPort.valueOf("example.org:389");
    HostPort nonLocalHp = HostPort.valueOf("www.openidentityplatform.org:389");
    assertThat(nonLocalHp.isEquivalentTo(nonLocalHp)).isTrue();
    assertThat(hp1.isEquivalentTo(nonLocalHp)).isFalse();
    assertThat(nonLocalHp.isEquivalentTo(hp1)).isFalse();