Name
connman
Version
1.42
Type
library
Description
A daemon for managing internet connections within embedded devices
Licenses
GPL-2.0-only
PURL
-
CPE
cpe:2.3:*:intel:connman:1.42:*:*:*:*:*:*:*
Other Versions#
Patches#
#
Title
Author
Resolve
1
plugin.h: Change visibility to default for debug symbols
Khem Raj <raj.khem@gmail.com>
2
dnsproxy: Fix NULL/empty lookup causing potential crash
Praveen Kumar <praveen.kumar@windriver.com>
CVE-2025-32743
3
resolve: musl does not implement res_ninit
Khem Raj <raj.khem@gmail.com>
4
src/log.c: Include libgen.h for basename API
Khem Raj <raj.khem@gmail.com>
5
connman.service: stop systemd-resolved when we use connman
"Maxin B. John" <maxin.john@intel.com>
6
dnsproxy: Address CVE-2025-32366 vulnerability
Yoonje Shin <ioerts@kookmin.ac.kr>
CVE-2025-32366
7
vpn: Adding support for latest pppd 2.5.0 release
=?UTF-8?q?Eivind=20N=C3=A6ss?= <eivnaes@yahoo.com>
8
Patch #8
Ross Burton <ross.burton@intel.com>
Vulnerabilities#
Name
Analysis
Description
Patched
In ConnMan through 1.44, the lookup string in ns_resolv in dnsproxy.c can be NULL or an empty string when the TC (Truncated) bit is set in a DNS response. This allows attackers to cause a denial of service (application crash) or possibly execute arbitrary code, because those lookup values lead to incorrect length calculations and incorrect memcpy operations.
Patched
In ConnMan through 1.44, parse_rr in dnsproxy.c has a memcpy length that depends on an RR RDLENGTH value, i.e., *rdlen=ntohs(rr->rdlen) and memcpy(response+offset,*end,*rdlen) without a check for whether the sum of *end and *rdlen exceeds max. Consequently, *rdlen may be larger than the amount of remaining packet data in the current state of parsing. Values of stack memory locations may be sent over the network in a response.