Debian Package Tracker
Register | Log in
Subscribe

mina2

Java network application framework

Choose email to subscribe with

general
  • source: mina2 (main)
  • version: 2.2.1-4
  • maintainer: Debian Java Maintainers (archive) (DMD)
  • uploaders: Emmanuel Bourg [DMD]
  • arch: all
  • std-ver: 4.6.2
  • VCS: Git (Browse, QA)
versions [more versions can be listed by madison] [old versions available from snapshot.debian.org]
[pool directory]
  • o-o-stable: 2.1.4-2
  • oldstable: 2.2.1-3
  • stable: 2.2.1-4
  • testing: 2.2.1-4
  • unstable: 2.2.1-4
versioned links
  • 2.1.4-2: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 2.2.1-3: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 2.2.1-4: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
binaries
  • libmina2-java
action needed
A new upstream version is available: 2.2.9 high
A new upstream version 2.2.9 is available, you should consider packaging it.
Created: 2025-09-13 Last update: 2026-08-05 20:01
4 security issues in sid high

There are 4 open security issues in sid.

4 important issues:
  • CVE-2026-41409: The fix for CVE-2024-52046 in Apache MINA AbstractIoBuffer.getObject() was incomplete. The classname allowlist of classes allowed to be deserialized was applied too late after a static initializer in a class to be read might already have been executed. Affected versions are Apache MINA 2.0.0 <= 2.0.27, 2.1.0 <= 2.1.10, and 2.2.0 <= 2.2.5. The problem is resolved in Apache MINA 2.0.28, 2.1.11, and 2.2.6 by applying the classname allowlist earlier. Affected are applications using Apache MINA that call IoBuffer.getObject(). Applications using Apache MINA are advised to upgrade
  • CVE-2026-41635: Apache MINA's AbstractIoBuffer.resolveClass() contains two branches, one of them (for static classes or primitive types) does not check the class at all, bypassing the classname allowlist and allowing arbitrary code to be executed. The fix checks if the class is present in the accepted class filter before calling Class.forName().  Affected versions are Apache MINA 2.0.0 <= 2.0.27, 2.1.0 <= 2.1.10, and 2.2.0 <= 2.2.5. The problem is resolved in Apache MINA 2.0.28, 2.1.11, and 2.2.6 by applying the classname allowlist earlier. Affected are applications using Apache MINA that call  IoBuffer.getObject(). Applications using Apache MINA are advised to upgrade.
  • CVE-2026-47065: ZDRES-232: resolveProxyClass Not Overridden - acceptMatchers Filter Bypass via java.lang.reflect.Proxy Assessment: Fully addressed. When the serialised stream contains a TC_PROXYCLASSDESC (the marker for a java.lang.reflect.Proxy ), JDK’s ObjectInputStream.readProxyDesc() is dispatched. JDK then calls the default ObjectInputStream.resolveProxyClass(interfaces) implementation, which performs Class.forName(intf, false, latestUserDefinedLoader()) for EACH interface name and constructs the proxy class — bypassing the accepted classes list . ZDRES-233: Class.forName(name, initialize=true, classLoader) in readClassDescriptor Triggers Static Initialiser of Allow-Listed Classes Assessment: Fully addressed. For ANY class on the allow-list, deserialising a stream that names it triggers the class’s (static initialiser) BEFORE any instance is constructed. This means an attacker who supplies a class name on the allow-list (e.g., the developer wrote accept(“com.myapp.*") , attacker supplies com.myapp.SomeClass ) causes <clinit> of SomeClass — and many real-world classes have side-effecting static initialisers Both issues have been fixed.
  • CVE-2026-47321:
Created: 2026-04-28 Last update: 2026-08-02 20:32
4 security issues in forky high

There are 4 open security issues in forky.

4 important issues:
  • CVE-2026-41409: The fix for CVE-2024-52046 in Apache MINA AbstractIoBuffer.getObject() was incomplete. The classname allowlist of classes allowed to be deserialized was applied too late after a static initializer in a class to be read might already have been executed. Affected versions are Apache MINA 2.0.0 <= 2.0.27, 2.1.0 <= 2.1.10, and 2.2.0 <= 2.2.5. The problem is resolved in Apache MINA 2.0.28, 2.1.11, and 2.2.6 by applying the classname allowlist earlier. Affected are applications using Apache MINA that call IoBuffer.getObject(). Applications using Apache MINA are advised to upgrade
  • CVE-2026-41635: Apache MINA's AbstractIoBuffer.resolveClass() contains two branches, one of them (for static classes or primitive types) does not check the class at all, bypassing the classname allowlist and allowing arbitrary code to be executed. The fix checks if the class is present in the accepted class filter before calling Class.forName().  Affected versions are Apache MINA 2.0.0 <= 2.0.27, 2.1.0 <= 2.1.10, and 2.2.0 <= 2.2.5. The problem is resolved in Apache MINA 2.0.28, 2.1.11, and 2.2.6 by applying the classname allowlist earlier. Affected are applications using Apache MINA that call  IoBuffer.getObject(). Applications using Apache MINA are advised to upgrade.
  • CVE-2026-47065: ZDRES-232: resolveProxyClass Not Overridden - acceptMatchers Filter Bypass via java.lang.reflect.Proxy Assessment: Fully addressed. When the serialised stream contains a TC_PROXYCLASSDESC (the marker for a java.lang.reflect.Proxy ), JDK’s ObjectInputStream.readProxyDesc() is dispatched. JDK then calls the default ObjectInputStream.resolveProxyClass(interfaces) implementation, which performs Class.forName(intf, false, latestUserDefinedLoader()) for EACH interface name and constructs the proxy class — bypassing the accepted classes list . ZDRES-233: Class.forName(name, initialize=true, classLoader) in readClassDescriptor Triggers Static Initialiser of Allow-Listed Classes Assessment: Fully addressed. For ANY class on the allow-list, deserialising a stream that names it triggers the class’s (static initialiser) BEFORE any instance is constructed. This means an attacker who supplies a class name on the allow-list (e.g., the developer wrote accept(“com.myapp.*") , attacker supplies com.myapp.SomeClass ) causes <clinit> of SomeClass — and many real-world classes have side-effecting static initialisers Both issues have been fixed.
  • CVE-2026-47321:
Created: 2026-04-28 Last update: 2026-08-02 20:32
4 low-priority security issues in trixie low

There are 4 open security issues in trixie.

4 issues left for the package maintainer to handle:
  • CVE-2026-41409: (needs triaging) The fix for CVE-2024-52046 in Apache MINA AbstractIoBuffer.getObject() was incomplete. The classname allowlist of classes allowed to be deserialized was applied too late after a static initializer in a class to be read might already have been executed. Affected versions are Apache MINA 2.0.0 <= 2.0.27, 2.1.0 <= 2.1.10, and 2.2.0 <= 2.2.5. The problem is resolved in Apache MINA 2.0.28, 2.1.11, and 2.2.6 by applying the classname allowlist earlier. Affected are applications using Apache MINA that call IoBuffer.getObject(). Applications using Apache MINA are advised to upgrade
  • CVE-2026-41635: (needs triaging) Apache MINA's AbstractIoBuffer.resolveClass() contains two branches, one of them (for static classes or primitive types) does not check the class at all, bypassing the classname allowlist and allowing arbitrary code to be executed. The fix checks if the class is present in the accepted class filter before calling Class.forName().  Affected versions are Apache MINA 2.0.0 <= 2.0.27, 2.1.0 <= 2.1.10, and 2.2.0 <= 2.2.5. The problem is resolved in Apache MINA 2.0.28, 2.1.11, and 2.2.6 by applying the classname allowlist earlier. Affected are applications using Apache MINA that call  IoBuffer.getObject(). Applications using Apache MINA are advised to upgrade.
  • CVE-2026-47065: (needs triaging) ZDRES-232: resolveProxyClass Not Overridden - acceptMatchers Filter Bypass via java.lang.reflect.Proxy Assessment: Fully addressed. When the serialised stream contains a TC_PROXYCLASSDESC (the marker for a java.lang.reflect.Proxy ), JDK’s ObjectInputStream.readProxyDesc() is dispatched. JDK then calls the default ObjectInputStream.resolveProxyClass(interfaces) implementation, which performs Class.forName(intf, false, latestUserDefinedLoader()) for EACH interface name and constructs the proxy class — bypassing the accepted classes list . ZDRES-233: Class.forName(name, initialize=true, classLoader) in readClassDescriptor Triggers Static Initialiser of Allow-Listed Classes Assessment: Fully addressed. For ANY class on the allow-list, deserialising a stream that names it triggers the class’s (static initialiser) BEFORE any instance is constructed. This means an attacker who supplies a class name on the allow-list (e.g., the developer wrote accept(“com.myapp.*") , attacker supplies com.myapp.SomeClass ) causes <clinit> of SomeClass — and many real-world classes have side-effecting static initialisers Both issues have been fixed.
  • CVE-2026-47321: (needs triaging)

You can find information about how to handle these issues in the security team's documentation.

Created: 2026-04-28 Last update: 2026-08-02 20:32
debian/patches: 4 patches to forward upstream low

Among the 5 debian patches available in version 2.2.1-4 of the package, we noticed the following issues:

  • 4 patches where the metadata indicates that the patch has not yet been forwarded upstream. You should either forward the patch upstream or update the metadata to document its real status.
Created: 2023-02-26 Last update: 2025-07-22 21:30
Standards version of the package is outdated. wishlist
The package should be updated to follow the last version of Debian Policy (Standards-Version 4.7.4 instead of 4.6.2).
Created: 2024-04-07 Last update: 2026-03-31 15:01
news
[rss feed]
  • [2025-07-24] mina2 2.2.1-4 MIGRATED to testing (Debian testing watch)
  • [2025-07-22] Accepted mina2 2.2.1-4 (source) into unstable (Pierre Gruet)
  • [2023-02-24] mina2 2.2.1-3 MIGRATED to testing (Debian testing watch)
  • [2023-02-13] Accepted mina2 2.2.1-3 (source) into unstable (Emmanuel Bourg)
  • [2023-01-21] mina2 2.2.1-2 MIGRATED to testing (Debian testing watch)
  • [2023-01-15] Accepted mina2 2.2.1-2 (source) into unstable (Emmanuel Bourg)
  • [2022-12-20] mina2 2.2.1-1 MIGRATED to testing (Debian testing watch)
  • [2022-12-15] Accepted mina2 2.2.1-1 (source) into unstable (Emmanuel Bourg)
  • [2022-06-20] mina2 2.1.6-1 MIGRATED to testing (Debian testing watch)
  • [2022-06-15] Accepted mina2 2.1.6-1 (source) into unstable (tony mancill)
  • [2021-12-07] mina2 2.1.5-1 MIGRATED to testing (Debian testing watch)
  • [2021-12-02] Accepted mina2 2.1.5-1 (source) into unstable (tony mancill)
  • [2021-05-11] mina2 2.1.4-2 MIGRATED to testing (Debian testing watch)
  • [2021-05-03] Accepted mina2 2.1.4-2 (source) into unstable (tony mancill)
  • [2020-10-23] mina2 2.1.4-1 MIGRATED to testing (Debian testing watch)
  • [2020-10-18] Accepted mina2 2.1.4-1 (source) into unstable (Markus Koschany)
  • [2018-12-09] mina2 2.0.19-2 MIGRATED to testing (Debian testing watch)
  • [2018-12-03] Accepted mina2 2.0.19-2 (source) into unstable (Emmanuel Bourg)
  • [2018-11-24] mina2 2.0.19-1 MIGRATED to testing (Debian testing watch)
  • [2018-11-19] Accepted mina2 2.0.19-1 (source) into unstable (Emmanuel Bourg)
  • [2018-09-03] mina2 2.0.16-3 MIGRATED to testing (Debian testing watch)
  • [2018-08-28] Accepted mina2 2.0.16-3 (source) into unstable (Markus Koschany)
  • [2017-10-01] mina2 2.0.16-2 MIGRATED to testing (Debian testing watch)
  • [2017-09-26] Accepted mina2 2.0.16-2 (source) into unstable (Emmanuel Bourg)
  • [2016-11-19] mina2 2.0.16-1 MIGRATED to testing (Debian testing watch)
  • [2016-11-13] Accepted mina2 2.0.16-1 (source all) into unstable (Emmanuel Bourg)
  • [2016-10-26] mina2 2.0.15-1 MIGRATED to testing (Debian testing watch)
  • [2016-10-20] Accepted mina2 2.0.15-1 (source all) into unstable (Emmanuel Bourg)
  • [2016-09-23] mina2 2.0.13-2 MIGRATED to testing (Debian testing watch)
  • [2016-09-18] Accepted mina2 2.0.13-2 (source all) into unstable (tony mancill)
  • 1
  • 2
bugs [bug history graph]
  • all: 3
  • RC: 0
  • I&N: 3
  • M&W: 0
  • F&P: 0
  • patch: 0
links
  • homepage
  • lintian
  • buildd: logs, reproducibility
  • popcon
  • browse source code
  • other distros
  • security tracker
  • debian patches
ubuntu Ubuntu logo [Information about Ubuntu for Debian Developers]
  • version: 2.2.1-4ubuntu1
  • patches for 2.2.1-4ubuntu1

Debian Package Tracker — Copyright 2013-2025 The Distro Tracker Developers
Report problems to the tracker.debian.org pseudo-package in the Debian BTS.
Documentation — Bugs — Git Repository — Contributing