Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2025-8061-Exploit — Exploit LnvMSRIO.sys vulnerable driver | Kitploit
Tools/GitHubGitHub/spawn451/cve-2025-8061-exploit
Privilege EscalationMemory ForensicsVulnerability AnalysisExploitationHardware SecurityLearning & EducationBinary Exploitation
GitHubspawn451/cve-2025-8061-exploit

CVE-2025-8061-Exploit

Exploit LnvMSRIO.sys vulnerable driver

View Repository
18429 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2025-8061 Exploit

Overview

Proof-of-Concept exploit for LnvMSRIO.sys (Lenovo MSR I/O Driver), demonstrating arbitrary physical memory read/write and kernel memory access via Superfetch VA-to-PA translation.

Driver Information

PropertyValue
Driver NameLnvMSRIO.sys
Device Name\\.\WinMsrDev
Service NameLnvMSRIO
VendorLenovo
PurposeMSR and physical memory access for system utilities

Vulnerable IOCTLs

The driver exposes privileged kernel operations to usermode:

Input Structures

Physical Memory Read (16 bytes):

root@kitploit:~
Offset 0:  UInt64  PhysicalAddress
Offset 8:  DWORD   AccessSize (1=byte, 2=word, 8=qword)
Offset 12: DWORD   Count (number of elements)

Physical Memory Write (16 bytes header + data):

root@kitploit:~
Offset 0:  UInt64  PhysicalAddress
Offset 8:  DWORD   AccessSize
Offset 12: DWORD   Count
Offset 16: Data[]  (bytes to write)

Exploitation Technique

VA-to-PA Translation

Since the driver only provides physical memory access, we use the Superfetch technique to translate kernel virtual addresses to physical addresses:

  1. Query Superfetch for physical memory ranges via NtQuerySystemInformation(SystemSuperfetchInformation)
  2. Build a VA→PA translation table from PFN entries
  3. Translate kernel VAs to physical addresses
  4. Read/Write physical memory using driver IOCTLs

Usage

root@kitploit:~
LnvMSRIOExploit.exe <path_to_LnvMSRIO.sys>

Requirements:

  • Run as Administrator
  • 64-bit Windows (for Superfetch VA→PA)
  • Driver file must exist at specified path

Build Instructions

  1. Open LnvMSRIOExploit.dproj in Delphi IDE (RAD Studio)
  2. Set target platform to Windows 64-bit
  3. Build → Build Project (Ctrl+Shift+F9)
  4. Output: Win64\Release\LnvMSRIOExploit.exe

Disclaimer

This tool is provided for educational and authorized security research purposes only. Unauthorized use against systems you do not own or have explicit permission to test is illegal. The author assumes no liability for misuse.

License

For research and educational purposes only.

Download Tool
IOCTL CodeFunctionDescriptionPoC
0x9C406104Physical Memory READMaps via MmMapIoSpace✅
0x9C40A108Physical Memory WRITEMaps and writes physical memory✅
0x9C402084MSR READRead Model-Specific Register❌
0x9C402088MSR WRITEWrite Model-Specific Register❌