This repository contains various plugins for LeechCore - Physical Memory Acquisition Library.
Plugins are related to various kinds of device drivers allowing for modular extensive memory acquisition in various scenarios.
- leechcore_ft601_driver_linux
- leechcore_device_hvsavedstate
- leechcore_device_rawtcp
- leechcore_device_sp605tcp
- leechcore_device_microvmi
- Ulf Frisk
- Jérémie Boutoille from Synacktiv - www.synacktiv.com
- Based on PCIeScreamer kernel driver from LambdaConcept.
- Linux
The leechcore_ft601_driver_linux library allows applications access to a limited version of API calls the FT601 FTD3XX.dll Windows library from ftdichip provided. This allows applications to use a limited FTD3XX.dll compatible application library on Linux. This library does not require LeechCore to function and may be used in other applications as well.
The library requires libusb (apt-get install libusb-1.0-0
) and access to the usb device (permission change or run as root may be required) alternatively a Kernel Driver provided by LambdaConcept. LeechCore will automatically attempt to locate the kernel driver before using libusb as fallback.
Place leechcore_ft601_driver_linux.so alongside leechcore.so.
- Ulf Frisk
- Matt Suiche - www.comae.com
- Windows
The leechcore_device_hvsavedstate library allows applications access to a access the memory of Hyper-V saved state files (.vmrs). The library depends on the vmsavedstatedumpprovider.dll
library from Microsoft. It must be placed in the same folder as the LeechCore. The library exists in the most recent Windows SDK and is usually found in the location: C:\Program Files (x86)\Windows Kits\10\bin\10.0.17763.0\x64\vmsavedstatedumpprovider.dll
.
Place leechcore_device_hvsavedstate.dll and vmsavedstatedumpprovider.dll alongside leechcore.dll.
- Ulf Frisk
- Synacktiv - www.synacktiv.com
- Windows, Linux
Allows LeechCore to connect to a "raw tcp" server which may be used to perform DMA attacks against a compromised iLO interface as described in the blog entry by Synacktiv amongst other things.
Place leechcore_device_rawtcp.[so|dll] alongside leechcore.[so|dll].
- Ulf Frisk
- Dmytro Oleksiuk
- Windows, Linux
Allows LeechCore to connect to a SP605 FPGA board exposing a TCP server on its network interface as described in the blog post by Dmytro. Requires a SP605 board flashed with the bitstream by @d_olex as described in the following README and Github project.
Place leechcore_device_sp605tcp.[so|dll] alongside leechcore.[so|dll].
- Linux
Allows LeechCore to peek into the live physical memory of virtual machines supported by libmicrovmi
- libmicrovmi: see the documentation
- URL device syntax:
microvmi://param1=value1¶m2=value2
- Debugging:
export RUST_LOG=debug
Parameters:
vm_name
: name of the VM
sudo -E ./memprocfs -mount xxx -device 'microvmi://vm_name=win10'
Parameters:
vm_name
: name of the VMkvm_unix_socket
: KVMi UNIX socket (see KVM-VMI project)
./memprocfs -mount xxx -device 'microvmi://vm_name=win10&kvm_unix_socket=/tmp/introspector'
Parameters:
vm_name
: name of the VM
./memprocfs -mount xxx -device 'microvmi://vm_name=win10'
Parameters:
memflow_connector_name
:qemu_procfs
vm_name
(optional): name of the VM
sudo -E ./memprocfs -mount xxx -device 'microvmi://memflow_connector_name=qemu_procfs'