Full Report
A zero-day vulnerability in the Linux kernel’s SMB (Server Message Block) implementation, identified as CVE-2025-37899, has been discovered using OpenAI’s powerful language model, o3. The vulnerability is a use-after-free flaw located in the logoff command handler of the ksmbd kernel module. Security researcher Sean H. documented the process in a detailed technical blog. He had initially set out to audit ksmbd, a Linux kernel module responsible for implementing the SMB3 protocol. While intending to take a break from large language model (LLM) tools, curiosity led him to benchmark the capabilities of o3, a new AI model from OpenAI. Rather than using complex frameworks or automation tools, Sean leveraged only the o3 API to analyze targeted code sections. During this process, o3 successfully unearthed CVE-2025-37899, a zero-day vulnerability in the Linux kernel. The model identified a scenario where shared objects between concurrent server connections led to unsafe memory access—specifically, a use-after-free situation in the SMB ‘logoff’ command handler. Technical Breakdown of CVE-2025-37899 The issue arises when one thread processes an SMB2 LOGOFF request and frees the sess->user object while another thread may still be using it. This occurs without proper synchronization mechanisms, which can lead to dereferencing of freed memory, opening doors to kernel memory corruption or arbitrary code execution. The vulnerability exploits a subtle interaction between SMB session handling and Linux kernel memory management: Multiple connections may bind to the same SMB session. One thread (Worker-B) handling a LOGOFF request frees the session’s user object (ksmbd_free_user(sess->user)). Another thread (Worker-A), still processing requests using the same session, continues accessing sess->user, now pointing to freed memory. Depending on timing, this results in a traditional use-after-free exploit or a null pointer dereference, leading to system crashes or privilege escalation. Comparative Performance: o3 vs. Other Models Interestingly, o3 also rediscovered CVE-2025-37778, another use-after-free vulnerability that Sean had previously identified manually. This bug resides in the Kerberos authentication path during SMB session setup. The AI detected this bug in 8 out of 100 runs, while OpenAI’s Claude Sonnet 3.7 managed only 3 detections in 100 tries, and Claude 3.5 failed to detect it altogether. These results reflect both the promise and current limitations of AI-assisted vulnerability research. o3 showed notable capability but also returned a high false positive rate—about 28 out of 100 attempts. Still, with a true positive to false positive ratio of around 1:4.5, the model proved useful enough to warrant serious consideration in practical workflows. Lessons from o3’s Analysis One of the most insightful takeaways from o3’s analysis of CVE-2025-37899 was its understanding of concurrency in kernel operations. The model successfully reasoned through non-trivial control flow paths and object lifecycle management under concurrent execution—something even experienced researchers may overlook, especially under time pressure. What’s more compelling is that o3 sometimes offered better remediation advice than its human counterpart. For example, in addressing CVE-2025-37778, Sean had initially suggested setting sess->user = NULL after freeing it. However, o3 identified that such a fix might be insufficient due to the SMB protocol allowing multiple connections to bind to a session. Conclusion Large language models are not yet a replacement for expert analysts. o3’s success in identifying complex flaws highlights its ability to augment human expertise, streamline analysis, and extend the reach of automated security tools. Though the experiment revealed limitations in processing large codebases, it also highlighted the model’s effectiveness in targeted scans and the importance of developing tools to manage false positives and intelligently structure input.
Analysis Summary
# Vulnerability: Linux SMB Kernel Zero-Day Discovered via AI Analysis
## CVE Details
- CVE ID: CVE-2025-37899
- CVSS Score: Not specified (Implied High due to zero-day status in kernel SMB)
- CWE: Not specified
## Affected Systems
- Products: Linux SMB Kernel component
- Versions: Not explicitly specified (Assumed to affect prior versions of the vulnerable component)
- Configurations: Running systems utilizing the Linux SMB kernel module.
## Vulnerability Description
This vulnerability was discovered in the Linux SMB kernel component, reportedly identified using an AI model named 'o3'. The flaw involves complexities related to concurrency in kernel operations, specifically concerning control flow paths and object lifecycle management under concurrent execution. The nature appears to be a memory safety issue (e.g., use-after-free or double-free) given the context of session user manipulation (`sess->user = NULL` after freeing).
## Exploitation
- Status: Zero-Day (Implied active status indicated by the context of its discovery and zero-day designation)
- Complexity: High (Involves reasoning about multi-threaded kernel operations)
- Attack Vector: Implied Network/Local, typical for SMB-related kernel flaws.
## Impact
- Confidentiality: Unknown (Likely High, given kernel context)
- Integrity: Unknown (Likely High, given kernel context)
- Availability: Unknown (Likely High, given kernel context)
## Remediation
### Patches
- Patches are not detailed in the provided text. The article focuses on the discovery methodology.
### Workarounds
- No specific workarounds are mentioned in the provided summary text. (Note: The text references a discussion about a potential fix for a different CVE, CVE-2025-37778, suggesting that simple NULL assignment might be insufficient for session management fixes.)
## Detection
- Detection methods are not specified. The primary takeaway regarding detection is the AI model's performance:
- The discovering AI model ('o3') achieved a true positive rate of about 1 in 4.5 true positives to false positives.
- Other AI models tested (Claude Sonnet 3.7 and Claude 3.5) performed worse at detection.
## References
- Vendor advisories: Not specified.
- Relevant links:
- Primary Article: thecyberxpress com/cve-2025-37899-zero-day-in-linux-smb-kernel/