CVE-2019-14814

7.8 HIGH

📋 TL;DR

A heap-based buffer overflow vulnerability exists in the Marvell WiFi chip driver in Linux kernel versions up to (but excluding) 5.3. This allows local users to cause denial of service (system crash) or potentially execute arbitrary code. Systems using affected Linux kernel versions with Marvell WiFi hardware are vulnerable.

💻 Affected Systems

Products:
  • Linux kernel with Marvell WiFi driver (mwifiex)
Versions: All versions up to, but excluding, Linux kernel 5.3
Operating Systems: Linux distributions using vulnerable kernel versions
Default Config Vulnerable: ⚠️ Yes
Notes: Only affects systems with Marvell WiFi hardware using the mwifiex driver; other systems are not vulnerable.

📦 What is this software?

Linux Kernel by Linux

The Linux Kernel is the core component of the Linux operating system, serving as the critical interface between computer hardware and software processes. As the heart of millions of servers, cloud infrastructure, embedded systems, Android devices, and IoT deployments worldwide, the Linux Kernel mana...

Learn more about Linux Kernel →

Linux Kernel by Linux

The Linux Kernel is the core component of the Linux operating system, serving as the critical interface between computer hardware and software processes. As the heart of millions of servers, cloud infrastructure, embedded systems, Android devices, and IoT deployments worldwide, the Linux Kernel mana...

Learn more about Linux Kernel →

Linux Kernel by Linux

The Linux Kernel is the core component of the Linux operating system, serving as the critical interface between computer hardware and software processes. As the heart of millions of servers, cloud infrastructure, embedded systems, Android devices, and IoT deployments worldwide, the Linux Kernel mana...

Learn more about Linux Kernel →

Linux Kernel by Linux

The Linux Kernel is the core component of the Linux operating system, serving as the critical interface between computer hardware and software processes. As the heart of millions of servers, cloud infrastructure, embedded systems, Android devices, and IoT deployments worldwide, the Linux Kernel mana...

Learn more about Linux Kernel →

Linux Kernel by Linux

The Linux Kernel is the core component of the Linux operating system, serving as the critical interface between computer hardware and software processes. As the heart of millions of servers, cloud infrastructure, embedded systems, Android devices, and IoT deployments worldwide, the Linux Kernel mana...

Learn more about Linux Kernel →

Linux Kernel by Linux

The Linux Kernel is the core component of the Linux operating system, serving as the critical interface between computer hardware and software processes. As the heart of millions of servers, cloud infrastructure, embedded systems, Android devices, and IoT deployments worldwide, the Linux Kernel mana...

Learn more about Linux Kernel →

⚠️ Risk & Real-World Impact

🔴

Worst Case

Local privilege escalation leading to full system compromise and arbitrary code execution as root.

🟠

Likely Case

Denial of service through kernel panic or system crash, disrupting operations.

🟢

If Mitigated

Limited to denial of service if exploit fails or system has additional protections like kernel hardening.

🌐 Internet-Facing: LOW (requires local access, not remotely exploitable over network).
🏢 Internal Only: HIGH (local attackers or compromised accounts can exploit this for privilege escalation or DoS).

🎯 Exploit Status

Public PoC: ⚠️ Yes
Weaponized: LIKELY
Unauthenticated Exploit: ✅ No
Complexity: MEDIUM

Exploitation requires local access and knowledge of the vulnerability; public proof-of-concept code exists.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Linux kernel 5.3 and later

Vendor Advisory: http://www.openwall.com/lists/oss-security/2019/08/28/1

Restart Required: Yes

Instructions:

1. Update Linux kernel to version 5.3 or later. 2. Apply vendor-specific kernel patches if available. 3. Reboot the system to load the new kernel.

🔧 Temporary Workarounds

Disable Marvell WiFi driver

linux

Unload the vulnerable mwifiex kernel module to prevent exploitation.

sudo modprobe -r mwifiex
sudo modprobe -r mwifiex_usb
sudo modprobe -r mwifiex_sdio
sudo modprobe -r mwifiex_pcie

Blacklist Marvell WiFi driver

linux

Prevent the vulnerable driver from loading at boot.

echo 'blacklist mwifiex' | sudo tee /etc/modprobe.d/blacklist-mwifiex.conf
echo 'blacklist mwifiex_usb' | sudo tee -a /etc/modprobe.d/blacklist-mwifiex.conf
echo 'blacklist mwifiex_sdio' | sudo tee -a /etc/modprobe.d/blacklist-mwifiex.conf
echo 'blacklist mwifiex_pcie' | sudo tee -a /etc/modprobe.d/blacklist-mwifiex.conf

🧯 If You Can't Patch

  • Restrict local user access to minimize attack surface.
  • Implement kernel hardening features like SELinux or AppArmor to limit impact.

🔍 How to Verify

Check if Vulnerable:

Check kernel version and if mwifiex module is loaded: uname -r && lsmod | grep mwifiex

Check Version:

uname -r

Verify Fix Applied:

Confirm kernel version is 5.3 or later and mwifiex module is not loaded or patched: uname -r && lsmod | grep mwifiex

📡 Detection & Monitoring

Log Indicators:

  • Kernel panic logs in /var/log/kern.log or dmesg
  • System crash or unexpected reboots

Network Indicators:

  • None (local exploit only)

SIEM Query:

Search for kernel panic events or module loading failures related to mwifiex.

🔗 References

📤 Share & Export