Debian Package Tracker
Register | Log in
Subscribe

fastnetmon

fast DDoS analyzer with sflow/netflow/mirror support (community edition)

Choose email to subscribe with

general
  • source: fastnetmon (main)
  • version: 1.2.8+git20250911-2
  • maintainer: Patrick Matthäi (DMD)
  • arch: any
  • std-ver: 4.7.3
  • VCS: Git (Browse, QA)
versions [more versions can be listed by madison] [old versions available from snapshot.debian.org]
[pool directory]
  • oldstable: 1.2.4-2+deb12u1
  • old-sec: 1.2.4-2+deb12u1
  • old-bpo: 1.2.8-1~bpo12+1
  • stable: 1.2.8-1
  • testing: 1.2.8+git20250911-2
  • unstable: 1.2.8+git20250911-2
versioned links
  • 1.2.4-2+deb12u1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 1.2.7-1~bpo12+1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 1.2.8-1~bpo12+1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 1.2.8-1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 1.2.8+git20250911-2: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
binaries
  • fastnetmon
action needed
Marked for autoremoval on 20 June due to mongo-c-driver: #1135502 high
Version 1.2.8+git20250911-2 of fastnetmon is marked for autoremoval from testing on Sat 20 Jun 2026. It depends (transitively) on mongo-c-driver, affected by #1135502. You should try to prevent the removal by fixing these RC bugs.
Created: 2026-05-09 Last update: 2026-05-28 03:02
3 security issues in trixie high

There are 3 open security issues in trixie.

2 important issues:
  • CVE-2026-48688: FastNetMon Community Edition through 1.2.9 contains multiple out-of-bounds reads in the BGP MP_REACH_NLRI IPv6 attribute decoder. The function decode_mp_reach_ipv6() in src/bgp_protocol.cpp contains a TODO comment at line 156 explicitly acknowledging 'we should add sanity checks to avoid reads after attribute memory block.' The function casts raw pointers to structure types without verifying sufficient data exists (line 158), uses the attacker-controlled length_of_next_hop field to determine memcpy size (line 181), and computes prefix_length by dereferencing a pointer calculated from multiple attacker-controlled offsets without bounds validation (line 189). The prefix_length is then used to calculate number_of_bytes_required_for_prefix which becomes a memcpy length (line 202) with no check against remaining buffer size.
  • CVE-2026-48689: FastNetMon Community Edition through 1.2.9 contains an off-by-one heap-based buffer overflow in the dynamic_binary_buffer_t class (src/dynamic_binary_buffer.hpp). Five methods (append_dynamic_buffer, append_data_as_pointer, append_data_as_object_ptr, memcpy_from_ptr, memcpy_from_object_ptr) use an incorrect bounds check of the form 'if (offset + length > maximum_internal_storage_size + 1)' instead of the correct 'if (offset + length > maximum_internal_storage_size)'. This allows writing exactly one byte past the end of the heap-allocated buffer. The class is used pervasively in BGP message encoding/decoding, NetFlow template processing, and Flow Spec NLRI construction. An attacker who can send network traffic (NetFlow, sFlow, IPFIX, or BGP) to a FastNetMon instance can trigger this overflow, potentially achieving arbitrary code execution by corrupting heap metadata. Notably, the append_byte() method uses the correct bounds check, confirming the inconsistency.
1 issue left for the package maintainer to handle:
  • CVE-2026-48697: (needs triaging) FastNetMon Community Edition through 1.2.9 does not verify TLS certificates on outbound HTTPS connections. The execute_web_request_secure() function in src/fast_library.cpp creates a boost::asio::ssl::context with tls_client mode and calls set_default_verify_paths() to load CA certificates, but never calls set_verify_mode(boost::asio::ssl::verify_peer). Without this call, OpenSSL performs the TLS handshake without validating the server's certificate chain, making all HTTPS connections vulnerable to man-in-the-middle attacks. This function is used for telemetry reporting to community-stats.fastnetmon.com, which sends system information including CPU model, kernel version, traffic statistics, and software configuration. An attacker can intercept and modify this data or redirect it to a malicious server.

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

Created: 2026-05-27 Last update: 2026-05-27 15:30
3 security issues in sid high

There are 3 open security issues in sid.

3 important issues:
  • CVE-2026-48688: FastNetMon Community Edition through 1.2.9 contains multiple out-of-bounds reads in the BGP MP_REACH_NLRI IPv6 attribute decoder. The function decode_mp_reach_ipv6() in src/bgp_protocol.cpp contains a TODO comment at line 156 explicitly acknowledging 'we should add sanity checks to avoid reads after attribute memory block.' The function casts raw pointers to structure types without verifying sufficient data exists (line 158), uses the attacker-controlled length_of_next_hop field to determine memcpy size (line 181), and computes prefix_length by dereferencing a pointer calculated from multiple attacker-controlled offsets without bounds validation (line 189). The prefix_length is then used to calculate number_of_bytes_required_for_prefix which becomes a memcpy length (line 202) with no check against remaining buffer size.
  • CVE-2026-48689: FastNetMon Community Edition through 1.2.9 contains an off-by-one heap-based buffer overflow in the dynamic_binary_buffer_t class (src/dynamic_binary_buffer.hpp). Five methods (append_dynamic_buffer, append_data_as_pointer, append_data_as_object_ptr, memcpy_from_ptr, memcpy_from_object_ptr) use an incorrect bounds check of the form 'if (offset + length > maximum_internal_storage_size + 1)' instead of the correct 'if (offset + length > maximum_internal_storage_size)'. This allows writing exactly one byte past the end of the heap-allocated buffer. The class is used pervasively in BGP message encoding/decoding, NetFlow template processing, and Flow Spec NLRI construction. An attacker who can send network traffic (NetFlow, sFlow, IPFIX, or BGP) to a FastNetMon instance can trigger this overflow, potentially achieving arbitrary code execution by corrupting heap metadata. Notably, the append_byte() method uses the correct bounds check, confirming the inconsistency.
  • CVE-2026-48697: FastNetMon Community Edition through 1.2.9 does not verify TLS certificates on outbound HTTPS connections. The execute_web_request_secure() function in src/fast_library.cpp creates a boost::asio::ssl::context with tls_client mode and calls set_default_verify_paths() to load CA certificates, but never calls set_verify_mode(boost::asio::ssl::verify_peer). Without this call, OpenSSL performs the TLS handshake without validating the server's certificate chain, making all HTTPS connections vulnerable to man-in-the-middle attacks. This function is used for telemetry reporting to community-stats.fastnetmon.com, which sends system information including CPU model, kernel version, traffic statistics, and software configuration. An attacker can intercept and modify this data or redirect it to a malicious server.
Created: 2026-05-27 Last update: 2026-05-27 15:30
3 security issues in forky high

There are 3 open security issues in forky.

3 important issues:
  • CVE-2026-48688: FastNetMon Community Edition through 1.2.9 contains multiple out-of-bounds reads in the BGP MP_REACH_NLRI IPv6 attribute decoder. The function decode_mp_reach_ipv6() in src/bgp_protocol.cpp contains a TODO comment at line 156 explicitly acknowledging 'we should add sanity checks to avoid reads after attribute memory block.' The function casts raw pointers to structure types without verifying sufficient data exists (line 158), uses the attacker-controlled length_of_next_hop field to determine memcpy size (line 181), and computes prefix_length by dereferencing a pointer calculated from multiple attacker-controlled offsets without bounds validation (line 189). The prefix_length is then used to calculate number_of_bytes_required_for_prefix which becomes a memcpy length (line 202) with no check against remaining buffer size.
  • CVE-2026-48689: FastNetMon Community Edition through 1.2.9 contains an off-by-one heap-based buffer overflow in the dynamic_binary_buffer_t class (src/dynamic_binary_buffer.hpp). Five methods (append_dynamic_buffer, append_data_as_pointer, append_data_as_object_ptr, memcpy_from_ptr, memcpy_from_object_ptr) use an incorrect bounds check of the form 'if (offset + length > maximum_internal_storage_size + 1)' instead of the correct 'if (offset + length > maximum_internal_storage_size)'. This allows writing exactly one byte past the end of the heap-allocated buffer. The class is used pervasively in BGP message encoding/decoding, NetFlow template processing, and Flow Spec NLRI construction. An attacker who can send network traffic (NetFlow, sFlow, IPFIX, or BGP) to a FastNetMon instance can trigger this overflow, potentially achieving arbitrary code execution by corrupting heap metadata. Notably, the append_byte() method uses the correct bounds check, confirming the inconsistency.
  • CVE-2026-48697: FastNetMon Community Edition through 1.2.9 does not verify TLS certificates on outbound HTTPS connections. The execute_web_request_secure() function in src/fast_library.cpp creates a boost::asio::ssl::context with tls_client mode and calls set_default_verify_paths() to load CA certificates, but never calls set_verify_mode(boost::asio::ssl::verify_peer). Without this call, OpenSSL performs the TLS handshake without validating the server's certificate chain, making all HTTPS connections vulnerable to man-in-the-middle attacks. This function is used for telemetry reporting to community-stats.fastnetmon.com, which sends system information including CPU model, kernel version, traffic statistics, and software configuration. An attacker can intercept and modify this data or redirect it to a malicious server.
Created: 2026-05-27 Last update: 2026-05-27 15:30
3 security issues in bookworm high

There are 3 open security issues in bookworm.

2 important issues:
  • CVE-2026-48688: FastNetMon Community Edition through 1.2.9 contains multiple out-of-bounds reads in the BGP MP_REACH_NLRI IPv6 attribute decoder. The function decode_mp_reach_ipv6() in src/bgp_protocol.cpp contains a TODO comment at line 156 explicitly acknowledging 'we should add sanity checks to avoid reads after attribute memory block.' The function casts raw pointers to structure types without verifying sufficient data exists (line 158), uses the attacker-controlled length_of_next_hop field to determine memcpy size (line 181), and computes prefix_length by dereferencing a pointer calculated from multiple attacker-controlled offsets without bounds validation (line 189). The prefix_length is then used to calculate number_of_bytes_required_for_prefix which becomes a memcpy length (line 202) with no check against remaining buffer size.
  • CVE-2026-48689: FastNetMon Community Edition through 1.2.9 contains an off-by-one heap-based buffer overflow in the dynamic_binary_buffer_t class (src/dynamic_binary_buffer.hpp). Five methods (append_dynamic_buffer, append_data_as_pointer, append_data_as_object_ptr, memcpy_from_ptr, memcpy_from_object_ptr) use an incorrect bounds check of the form 'if (offset + length > maximum_internal_storage_size + 1)' instead of the correct 'if (offset + length > maximum_internal_storage_size)'. This allows writing exactly one byte past the end of the heap-allocated buffer. The class is used pervasively in BGP message encoding/decoding, NetFlow template processing, and Flow Spec NLRI construction. An attacker who can send network traffic (NetFlow, sFlow, IPFIX, or BGP) to a FastNetMon instance can trigger this overflow, potentially achieving arbitrary code execution by corrupting heap metadata. Notably, the append_byte() method uses the correct bounds check, confirming the inconsistency.
1 issue left for the package maintainer to handle:
  • CVE-2026-48697: (needs triaging) FastNetMon Community Edition through 1.2.9 does not verify TLS certificates on outbound HTTPS connections. The execute_web_request_secure() function in src/fast_library.cpp creates a boost::asio::ssl::context with tls_client mode and calls set_default_verify_paths() to load CA certificates, but never calls set_verify_mode(boost::asio::ssl::verify_peer). Without this call, OpenSSL performs the TLS handshake without validating the server's certificate chain, making all HTTPS connections vulnerable to man-in-the-middle attacks. This function is used for telemetry reporting to community-stats.fastnetmon.com, which sends system information including CPU model, kernel version, traffic statistics, and software configuration. An attacker can intercept and modify this data or redirect it to a malicious server.

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

Created: 2026-05-27 Last update: 2026-05-27 15: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.7.3).
Created: 2026-03-31 Last update: 2026-03-31 15:01
testing migrations
  • This package will soon be part of the auto-protobuf transition. You might want to ensure that your package is ready for it. You can probably find supplementary information in the debian-release archives or in the corresponding release.debian.org bug.
  • This package will soon be part of the auto-openssl transition. You might want to ensure that your package is ready for it. You can probably find supplementary information in the debian-release archives or in the corresponding release.debian.org bug.
  • This package will soon be part of the auto-grpc transition. You might want to ensure that your package is ready for it. You can probably find supplementary information in the debian-release archives or in the corresponding release.debian.org bug.
news
[rss feed]
  • [2026-02-17] fastnetmon 1.2.8+git20250911-2 MIGRATED to testing (Debian testing watch)
  • [2026-02-10] Accepted fastnetmon 1.2.8+git20250911-2 (source) into unstable (Patrick Matthäi)
  • [2025-09-17] fastnetmon 1.2.8+git20250911-1 MIGRATED to testing (Debian testing watch)
  • [2025-09-11] Accepted fastnetmon 1.2.8+git20250911-1 (source) into unstable (Patrick Matthäi)
  • [2025-03-06] Accepted fastnetmon 1.2.8-1~bpo12+1 (source) into stable-backports (Patrick Matthäi)
  • [2024-12-29] Accepted fastnetmon 1.2.4-2+deb12u1 (source) into proposed-updates (Debian FTP Masters) (signed by: Patrick Matthäi)
  • [2024-12-26] Accepted fastnetmon 1.2.4-2+deb12u1 (source) into stable-security (Debian FTP Masters) (signed by: Patrick Matthäi)
  • [2024-12-25] fastnetmon 1.2.8-1 MIGRATED to testing (Debian testing watch)
  • [2024-12-23] Accepted fastnetmon 1.2.8-1 (source) into unstable (Patrick Matthäi)
  • [2024-07-15] Accepted fastnetmon 1.2.7-1~bpo12+1 (source) into stable-backports (Patrick Matthäi)
  • [2024-07-14] fastnetmon 1.2.7-1 MIGRATED to testing (Debian testing watch)
  • [2024-07-08] Accepted fastnetmon 1.2.7-1 (source) into unstable (Patrick Matthäi)
  • [2023-11-06] Accepted fastnetmon 1.2.6-1~bpo12+1 (source) into stable-backports (Patrick Matthäi)
  • [2023-11-01] Accepted fastnetmon 1.2.5-2~bpo12+1 (source amd64) into stable-backports (Debian FTP Masters) (signed by: Patrick Matthäi)
  • [2023-11-01] fastnetmon 1.2.6-1 MIGRATED to testing (Debian testing watch)
  • [2023-10-27] Accepted fastnetmon 1.2.6-1 (source) into unstable (Patrick Matthäi)
  • [2023-08-28] fastnetmon 1.2.5-2 MIGRATED to testing (Debian testing watch)
  • [2023-08-23] Accepted fastnetmon 1.2.5-2 (source) into unstable (Patrick Matthäi)
  • [2023-07-09] fastnetmon 1.2.5-1 MIGRATED to testing (Debian testing watch)
  • [2023-07-04] Accepted fastnetmon 1.2.5-1 (source) into unstable (Patrick Matthäi)
  • [2023-04-11] fastnetmon 1.2.4-2 MIGRATED to testing (Debian testing watch)
  • [2023-03-14] Accepted fastnetmon 1.2.4-2 (source) into unstable (Patrick Matthäi)
  • [2023-03-09] Accepted fastnetmon 1.2.4-1 (source) into unstable (Patrick Matthäi)
  • [2023-01-01] fastnetmon 1.2.3-3 MIGRATED to testing (Debian testing watch)
  • [2022-12-27] Accepted fastnetmon 1.2.3-3 (source) into unstable (Patrick Matthäi)
  • [2022-11-13] fastnetmon 1.2.3-2 MIGRATED to testing (Debian testing watch)
  • [2022-11-09] Accepted fastnetmon 1.2.3-2 (source) into unstable (Patrick Matthäi)
  • [2022-10-26] fastnetmon 1.2.3-1 MIGRATED to testing (Debian testing watch)
  • [2022-10-21] Accepted fastnetmon 1.2.3-1 (source) into unstable (Patrick Matthäi)
  • [2022-09-21] fastnetmon 1.2.2-2 MIGRATED to testing (Debian testing watch)
  • 1
  • 2
bugs [bug history graph]
  • all: 1
  • RC: 0
  • I&N: 0
  • M&W: 1
  • F&P: 0
  • patch: 0
links
  • homepage
  • lintian
  • buildd: logs, reproducibility, cross
  • popcon
  • browse source code
  • other distros
  • security tracker
  • screenshots
ubuntu Ubuntu logo [Information about Ubuntu for Debian Developers]
  • version: 1.2.8+git20250911-2

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