Close Menu
    DevStackTipsDevStackTips
    • Home
    • News & Updates
      1. Tech & Work
      2. View All

      CodeSOD: A Unique Way to Primary Key

      July 22, 2025

      BrowserStack launches Figma plugin for detecting accessibility issues in design phase

      July 22, 2025

      Parasoft brings agentic AI to service virtualization in latest release

      July 22, 2025

      Node.js vs. Python for Backend: 7 Reasons C-Level Leaders Choose Node.js Talent

      July 21, 2025

      The best CRM software with email marketing in 2025: Expert tested and reviewed

      July 22, 2025

      This multi-port car charger can power 4 gadgets at once – and it’s surprisingly cheap

      July 22, 2025

      I’m a wearables editor and here are the 7 Pixel Watch 4 rumors I’m most curious about

      July 22, 2025

      8 ways I quickly leveled up my Linux skills – and you can too

      July 22, 2025
    • Development
      1. Algorithms & Data Structures
      2. Artificial Intelligence
      3. Back-End Development
      4. Databases
      5. Front-End Development
      6. Libraries & Frameworks
      7. Machine Learning
      8. Security
      9. Software Engineering
      10. Tools & IDEs
      11. Web Design
      12. Web Development
      13. Web Security
      14. Programming Languages
        • PHP
        • JavaScript
      Featured

      The Intersection of Agile and Accessibility – A Series on Designing for Everyone

      July 22, 2025
      Recent

      The Intersection of Agile and Accessibility – A Series on Designing for Everyone

      July 22, 2025

      Zero Trust & Cybersecurity Mesh: Your Org’s Survival Guide

      July 22, 2025

      Execute Ping Commands and Get Back Structured Data in PHP

      July 22, 2025
    • Operating Systems
      1. Windows
      2. Linux
      3. macOS
      Featured

      A Tomb Raider composer has been jailed — His legacy overshadowed by $75k+ in loan fraud

      July 22, 2025
      Recent

      A Tomb Raider composer has been jailed — His legacy overshadowed by $75k+ in loan fraud

      July 22, 2025

      “I don’t think I changed his mind” — NVIDIA CEO comments on H20 AI GPU sales resuming in China following a meeting with President Trump

      July 22, 2025

      Galaxy Z Fold 7 review: Six years later — Samsung finally cracks the foldable code

      July 22, 2025
    • Learning Resources
      • Books
      • Cheatsheets
      • Tutorials & Guides
    Home»Security»Common Vulnerabilities and Exposures (CVEs)»CVE-2025-38344 – Intel ACPI Cache Leak

    CVE-2025-38344 – Intel ACPI Cache Leak

    July 10, 2025

    CVE ID : CVE-2025-38344

    Published : July 10, 2025, 9:15 a.m. | 4 hours, 51 minutes ago

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

    ACPICA: fix acpi parse and parseext cache leaks

    ACPICA commit 8829e70e1360c81e7a5a901b5d4f48330e021ea5

    I’m Seunghun Han, and I work for National Security Research Institute of
    South Korea.

    I have been doing a research on ACPI and found an ACPI cache leak in ACPI
    early abort cases.

    Boot log of ACPI cache leak is as follows:
    [ 0.352414] ACPI: Added _OSI(Module Device)
    [ 0.353182] ACPI: Added _OSI(Processor Device)
    [ 0.353182] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.353182] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.356028] ACPI: Unable to start the ACPI Interpreter
    [ 0.356799] ACPI Error: Could not remove SCI handler (20170303/evmisc-281)
    [ 0.360215] kmem_cache_destroy Acpi-State: Slab cache still has objects
    [ 0.360648] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G W
    4.12.0-rc4-next-20170608+ #10
    [ 0.361273] Hardware name: innotek gmb_h virtual_box/virtual_box, BIOS
    virtual_box 12/01/2006
    [ 0.361873] Call Trace:
    [ 0.362243] ? dump_stack+0x5c/0x81
    [ 0.362591] ? kmem_cache_destroy+0x1aa/0x1c0
    [ 0.362944] ? acpi_sleep_proc_init+0x27/0x27
    [ 0.363296] ? acpi_os_delete_cache+0xa/0x10
    [ 0.363646] ? acpi_ut_delete_caches+0x6d/0x7b
    [ 0.364000] ? acpi_terminate+0xa/0x14
    [ 0.364000] ? acpi_init+0x2af/0x34f
    [ 0.364000] ? __class_create+0x4c/0x80
    [ 0.364000] ? video_setup+0x7f/0x7f
    [ 0.364000] ? acpi_sleep_proc_init+0x27/0x27
    [ 0.364000] ? do_one_initcall+0x4e/0x1a0
    [ 0.364000] ? kernel_init_freeable+0x189/0x20a
    [ 0.364000] ? rest_init+0xc0/0xc0
    [ 0.364000] ? kernel_init+0xa/0x100
    [ 0.364000] ? ret_from_fork+0x25/0x30

    I analyzed this memory leak in detail. I found that “Acpi-State” cache and
    “Acpi-Parse” cache were merged because the size of cache objects was same
    slab cache size.

    I finally found “Acpi-Parse” cache and “Acpi-parse_ext” cache were leaked
    using SLAB_NEVER_MERGE flag in kmem_cache_create() function.

    Real ACPI cache leak point is as follows:
    [ 0.360101] ACPI: Added _OSI(Module Device)
    [ 0.360101] ACPI: Added _OSI(Processor Device)
    [ 0.360101] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.361043] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.364016] ACPI: Unable to start the ACPI Interpreter
    [ 0.365061] ACPI Error: Could not remove SCI handler (20170303/evmisc-281)
    [ 0.368174] kmem_cache_destroy Acpi-Parse: Slab cache still has objects
    [ 0.369332] CPU: 1 PID: 1 Comm: swapper/0 Tainted: G W
    4.12.0-rc4-next-20170608+ #8
    [ 0.371256] Hardware name: innotek gmb_h virtual_box/virtual_box, BIOS
    virtual_box 12/01/2006
    [ 0.372000] Call Trace:
    [ 0.372000] ? dump_stack+0x5c/0x81
    [ 0.372000] ? kmem_cache_destroy+0x1aa/0x1c0
    [ 0.372000] ? acpi_sleep_proc_init+0x27/0x27
    [ 0.372000] ? acpi_os_delete_cache+0xa/0x10
    [ 0.372000] ? acpi_ut_delete_caches+0x56/0x7b
    [ 0.372000] ? acpi_terminate+0xa/0x14
    [ 0.372000] ? acpi_init+0x2af/0x34f
    [ 0.372000] ? __class_create+0x4c/0x80
    [ 0.372000] ? video_setup+0x7f/0x7f
    [ 0.372000] ? acpi_sleep_proc_init+0x27/0x27
    [ 0.372000] ? do_one_initcall+0x4e/0x1a0
    [ 0.372000] ? kernel_init_freeable+0x189/0x20a
    [ 0.372000] ? rest_init+0xc0/0xc0
    [ 0.372000] ? kernel_init+0xa/0x100
    [ 0.372000] ? ret_from_fork+0x25/0x30
    [ 0.388039] kmem_cache_destroy Acpi-parse_ext: Slab cache still has objects
    [ 0.389063] CPU: 1 PID: 1 Comm: swapper/0 Tainted: G W
    4.12.0-rc4-next-20170608+ #8
    [ 0.390557] Hardware name: innotek gmb_h virtual_box/virtual_box, BIOS
    virtual_box 12/01/2006
    [ 0.392000] Call Trace:
    [ 0.392000] ? dump_stack+0x5c/0x81
    [ 0.392000] ? kmem_cache_destroy+0x1aa/0x1c0
    [ 0.392000] ? acpi_sleep_proc_init+0x27/0x27
    [ 0.392000] ? acpi_os_delete_cache+0xa/0x10
    [ 0.392000] ? acpi_ut_delete_caches+0x6d/0x7b
    [ 0.392000] ? acpi_terminate+0xa/0x14
    [ 0.392000] ? acpi_init+0x2af/0x3
    —truncated—

    Severity: 0.0 | NA

    Visit the link for more details, such as CVSS details, affected products, timeline, and more…

    Source: Read More

    Facebook Twitter Reddit Email Copy Link
    Previous ArticleCVE-2025-38346 – Linux kernel ftrace UAF Vulnerability
    Next Article CVE-2025-38343 – “TP-Link MT76 WiFi Driver Multicast Broadcast RA Fragmentation Vulnerability”

    Related Posts

    Common Vulnerabilities and Exposures (CVEs)

    CVE-2025-44658 – Netgear RAX30 PHP-FPM Misconfigured Extension Bypass Vulnerability

    July 22, 2025
    Common Vulnerabilities and Exposures (CVEs)

    CVE-2025-7393 – Drupal Mail Login Authentication Bypass

    July 22, 2025
    Leave A Reply Cancel Reply

    For security, use of Google's reCAPTCHA service is required which is subject to the Google Privacy Policy and Terms of Use.

    Continue Reading

    CVE-2025-44896 – Fujitsu WGS-804HPT Stack Overflow Vulnerability

    Common Vulnerabilities and Exposures (CVEs)

    Asus waarschuwt voor kritieke AiCloud-kwetsbaarheid in wifi-routers

    Security

    CVE-2025-5577 – PHPGurukul Dairy Farm Shop Management System SQL Injection Vulnerability

    Common Vulnerabilities and Exposures (CVEs)

    CVE-2025-53323 – Danbriapps Pre-Publish Post Checklist Missing Authorization

    Common Vulnerabilities and Exposures (CVEs)

    Highlights

    Autoapply: Best Autoapply Job Tools for LinkedIn in 2025

    April 12, 2025

    Post Content Source: Read More 

    Following Microsoft’s mass layoffs, Xbox Game Pass’ business viability is again being questioned — is Xbox’s biggest differentiator an albatross?

    July 8, 2025

    CVE-2025-31928 – LambertGroup Multimedia Responsive Carousel SQL Injection

    May 16, 2025

    CVE-2025-6483 – “Simple Pizza Ordering System SQL Injection Vulnerability”

    June 22, 2025
    © DevStackTips 2025. All rights reserved.
    • Contact
    • Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.