Baike.dev
All toolsAI codingTrendingOpen sourceNewsSubmit
Log in
< Back to tools
P

pcileech

> 编程语言
Open source

Direct Memory Access (DMA) Attack Software

7.9K stars0 likes0 views
WebsiteGitHub

About

Direct Memory Access (DMA) Attack Software

PCILeech Summary:

PCILeech uses PCIe hardware devices to read and write target system memory. This is achieved by using DMA over PCIe. No drivers are needed on the target system.

PCILeech also works without hardware together with a wide range of software memory acqusition methods supported by the LeechCore library - including capture of remote live memory using DumpIt or WinPmem. PCILeech also supports local capture of memory and a number of memory dump file formats.

PCILeech supports multiple memory acquisition devices. Both hardware and software based. USB3380 based hardware is only able to read 4GB of memory natively, but is able to read all memory if a kernel module (KMD) is first inserted into the target system kernel. FPGA based hardware, and software based methods, are able to read all memory.

PCILeech is capable of inserting a wide range of kernel implants into the targeted kernels - allowing for easy access to live ram and the file system via a "mounted drive". It is also possible to remove the logon password requirement, loading unsigned drivers, executing code and spawn system shells. PCIleech runs on Windows and Linux. Supported target systems are currently the x64 versions of: UEFI, Linux, FreeBSD and Windows. This requires write access to memory (USB3380 hardware, FPGA hardware, LiveCloudKd or CVE-2018-1038 "Total Meltdown").

To get going clone the sources in the repository or download the latest binaries, modules and configuration files.

The PushPin GUI frontend for PCILeech makes common RedTeam tasks super easy. Note that PushPin is not part of the official PCILeech distribution.

Capabilities:

  • Retrieve memory from the target system at >150MB/s.
  • Retrieve remote memory from remote LeechService.
  • Write data to the target system memory.
  • 4GB memory can be accessed in native DMA mode (USB3380 hardware).
  • ALL memory can be accessed in native DMA mode (FPGA hardware).
  • ALL memory can be accessed if kernel module (KMD) is loaded.
  • Raw PCIe TLP access (FPGA hardware).
  • Mount live RAM as file [Linux, Windows, macOS Sierra*].
  • Mount file system as drive [Linux, Windows, macOS Sierra*].
  • Execute kernel code on the target system.
  • Spawn system shell and other executables [Windows].
  • Pull and Push files [Linux, FreeBSD, Windows, macOS Sierra*].
  • Patch / Unlock (remove password requirement) [Windows, macOS Sierra*].
  • Easy to create own kernel shellcode and/or custom signatures.
  • Connect to a remote LeechAgent over the network to remotely:
    • Dump physical memory over the network.
    • Execute Python memory analysis scripts on the remote host.
  • Even more features not listed here ...

*) macOS High Sierra and above are not supported.

Memory Acquisition Methods:

PCILeech supports both hardware based and software based memory acqusition methods. All memory acqusition is handled by the LeechCore library.

Hardware based memory aqusition methods:

Please find a summary of the supported hardware based memory acquisition methods listed below. All hardware based memory acquisition methods are supported on both Windows and Linux. The FPGA based methods however sports a slight performance penalty on Linux and will max out at approx: 90MB/s compared to 150MB/s on Windows.

Device Type Interface Speed 64-bit memory access PCIe TLP access Project
Sponsor
ZDMA FPGA Thunderbolt3 1000MB/s Yes Yes
GBOX FPGA OCuLink 400MB/s Yes Yes
LeetDMA FPGA USB-C 190MB/s Yes Yes
CaptainDMA M2 FPGA USB-C 190MB/s Yes Yes
CaptainDMA M2 100T FPGA USB-C 220MB/s Yes Yes
CaptainDMA 4.1th FPGA USB-C 190MB/s Yes Yes
CaptainDMA 75T FPGA USB-C 200MB/s Yes Yes
CaptainDMA 100T FPGA USB-C 220MB/s Yes Yes
AC701/FT601 FPGA USB3 190MB/s Yes Yes
USB3380-EVB USB3380 USB3 150MB/s No No
DMA patched HP iLO BMC TCP 1MB/s Yes No

Software based memory aqusition methods:

Please find a summary of the supported software based memory acquisition methods listed below. Please note that the LeechService only provides a network connection to a remote LeechCore library. It's possible to use both hardware and software based memory acquisition once connected.

Device Type Volatile Write Linux Support Plugin
RAW physical memory dump File No No Yes No
Full Microsoft Crash Dump File No No Yes No
Full ELF Core Dump File No No Yes No
VMware Live Memory Yes Yes No No
VMware memory save file File No No Yes No
TotalMeltdown CVE-2018-1038 Yes Yes No No
DumpIt /LIVEKD Live Memory Yes No No No
WinPMEM Live Memory Yes No No No
LiveKd Live Memory Yes No No No
LiveCloudKd Live Memory Yes Yes No Yes
Hyper-V Saved State File No No No Yes
LeechAgent* Remote No No

Installing PCILeech:

Please ensure you do have the most recent version of PCILeech by visiting the PCILeech github repository at: https://github.com/ufrisk/pcileech

Get the latest binaries, modules and configuration files from the latest release. Alternatively clone the repository and build from source.

Windows:

Please see the PCILeech on Windows guide for information about running PCILeech on Windows.

The Google Android USB driver have to be installed if USB3380 hardware is used. Download the Google Android USB driver from: http://developer.android.com/sdk/win-usb.html#download Unzip the driver.
FTDI drivers have to be installed if FPGA is used with FT601 USB3 addon card or PCIeScreamer. Download the 64-bit FTD3XX.dll from FTDI and place it alongside pcileech.exe.
To mount live ram and target file system as drive in Windows the Dokany2 file system library must be installed. Please download and install the latest stable version of Dokany2 at: https://github.com/dokan-dev/dokany/releases/latest

Linux:

Please see the PCILeech on Linux guide for information about running PCILeech on Linux.

Examples:

Please see the project wiki pages for more examples. The wiki is in a buildup phase and information may still be missing.

Mount target system live RAM and file system, requires that a KMD is loaded. In this example 0x11abc000 is used.

  • pcileech.exe mount -kmd 0x11abc000

Show help for a specific kernel implant, in this case lx64_filepull kernel implant.

  • pcileech.exe lx64_filepull -help

Show help for the dump command.

  • pcileech.exe dump -help

Dump all memory from the target system given that a kernel module is loaded at address: 0x7fffe000.

  • pcileech.exe dump -kmd 0x7fffe000

Force dump memory below 4GB including accessible memory mapped devices using more stable USB2 approach on USB3380.

  • pcileech.exe dump -force -device usb3380://usb=2

Receive PCIe TLPs (Transaction Layer Packets) and print them on screen (correctly configured FPGA dev board required).

  • pcileech.exe tlp -vv -wait 1000

Probe/Enumerate the memory of the target system for readable memory pages and maximum memory. (FPGA hardware only).

  • pcileech.exe probe

Dump all memory between addresses min and max, don't stop on failed pages. Native access to 64-bit memory is only supported on FPGA hardware.

  • pcileech.exe dump -min 0x0 -max 0x21e5fffff -force

Dump all memory, try locate the memory map from the target system registry to avoid dumping potentially invalid memory which may freeze the target.

  • pcileech.exe dump -memmap auto

Force the usage of a specific device (instead of default auto detecting it). The pmem device is not auto detected.

  • pcileech.exe pagedisplay -min 0x1000 -device pmem

Dump remote memory from a remote LeechAgent using connection encrypted and mutually authenticated by kerberos.

  • pcileech.exe dump -device pmem -remote rpc://[email protected]

Execute the Python analysis script find-rwx.py on a remote computer using the LeechAgent embedded Python environment.

  • pcileech.exe agent-execpy -in find-rwx.py -device pmem -remote rpc://[email protected]

Patch virtual process memory of pid 432 (lsass.exe in this example).

  • pcileech.exe patch -pid 432 -sig unlock_win10x64.sig

Limitations/Known Issues:

  • Does not work if the OS uses the IOMMU/VT-d. This is the default on macOS (unl

Issues· 0 open

View all issuesOpen on GitHub

No open issues yet, or sync has not completed.

> Tags

C

No comments yet. Be the first to share.

> Details

PublishedAug 1, 2026
UpdatedSep 17, 2026
Category编程语言
PricingOpen source

> Related tools

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言