Skip to main content

Over 150 LLM Providers · Over 5,300 Models The most extensible AI-powered pentesting platform. Open source. Star on GitHub

CVE-2026-68478

Published Aug 15, 2026 EPSS 0.21% (11th pctl)

Overview

CVE-2026-68478 is a known-severity vulnerability. It was published on August 15, 2026.

Technical Description

In the Linux kernel, the following vulnerability has been resolved:

memstick: ms_block: reject a card that reports too many blocks

msb_ftl_initialize() computes the zone count from the card block count

with no bound:

msb->zone_count = msb->block_count / MS_BLOCKS_IN_ZONE;

...

for (i = 0; i < msb->zone_count; i++)

msb->free_block_count[i] = MS_BLOCKS_IN_ZONE;

msb->block_count is a card value. msb_read_boot_blocks() reads

number_of_blocks from the card boot page and byte swaps it.

free_block_count is a fixed int[MS_MAX_ZONES]. MS_MAX_ZONES is 16, so the

valid indices are 0 to 15. The init loop above indexes it by zone_count.

msb_mark_block_used() and msb_mark_block_unused() index it by

pba / MS_BLOCKS_IN_ZONE, for pba up to block_count - 1. A card may report

up to 65535 blocks. A block_count above 8192 (MS_MAX_ZONES *

MS_BLOCKS_IN_ZONE) lets the pba index reach 16. That writes past

free_block_count[] and corrupts struct msb_data. A larger count runs the

init loop past the end to

Remediation

Check the references section for vendor advisories, patches, and mitigation guidance. If immediate patching is not possible, review the CVSS vector to understand the attack surface and apply compensating controls such as network segmentation or access restrictions.

Frequently Asked Questions

What is CVE-2026-68478?

CVE-2026-68478 is a known-severity vulnerability. It was published on August 15, 2026.

How severe is CVE-2026-68478?

CVSS score information is not yet available for this vulnerability. Check back as the CVE record is updated by NVD analysts.

How do I fix or remediate CVE-2026-68478?

Check the references section for vendor advisories, patches, and mitigation guidance. If immediate patching is not possible, review the CVSS vector to understand the attack surface and apply compensating controls such as network segmentation or access restrictions.

How can CyberStrike help with CVE-2026-68478?

CyberStrike's AI-powered security agents can automatically detect CVE-2026-68478 across your infrastructure using autonomous pentesting, DAST scanning, and HackBrowser. The platform continuously monitors for known vulnerabilities and provides actionable remediation guidance prioritized by real-world exploitability.