xrv3ovl / module-library

A Windows x64 library that iterates internally loaded modules with the PEB and gets information about modules, sections, and exports.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Module Library

A Windows x64 library that iterates internally loaded modules with the PEB and gets information about modules, sections, and exports (even forwarded exports!).

Examples

// Get the address and size of kernel32.dll.
auto [module_address, module_size] = module::GetModuleAddress("kernel32.dll");

// Get the address and size of the .rdata section.
auto [rdata_address, rdata_size] = module::GetSectionAddress(module_address, ".rdata");

// Find the address of the export VirtualAlloc.
uint64_t export_address = module::GetExportAddress(module_address, "VirtualAlloc");

// Find the address of VirtualAlloc by ordinal.
export_address = module::GetExportAddress(module_address, "", true, 1536);

Requires

  • C++ 20 or later.
  • Windows x64
  • Your own Windows headers (I recommend phnt).

About

A Windows x64 library that iterates internally loaded modules with the PEB and gets information about modules, sections, and exports.


Languages

Language:C++ 100.0%