From 125be46db3fc4f2c73d1424ace537dcea06078f4 Mon Sep 17 00:00:00 2001 From: ko1N Date: Wed, 17 Mar 2021 19:28:53 +0100 Subject: [PATCH] Added registry key to acquire the memory map to readme --- .github/workflows/release.yml | 5 +++-- README.md | 5 +++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0e18642..c7c8352 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -57,18 +57,19 @@ jobs: name: library-ubuntu - name: Create archive for linux x86-64 run: zip memflow_pcileech_linux_x86-64.zip *.so - - name: Upload ubuntu artifacts + - name: Upload artifacts for linux x86-64 uses: skx/github-action-publish-binaries@master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: args: 'memflow_pcileech_linux_x86-64.zip' + - uses: actions/download-artifact@v2 with: name: library-windows - name: Create archive for windows x86-64 run: zip memflow_pcileech_windows_x86-64.zip *.dll - - name: Upload windows artifacts + - name: Upload artifacts for windows x86-64 uses: skx/github-action-publish-binaries@master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/README.md b/README.md index a6cfac8..595df65 100644 --- a/README.md +++ b/README.md @@ -105,6 +105,11 @@ real_base=0x3000 The `real_base` parameter is optional. If it is not set there will be no re-mapping. +On Windows systems the memory map can be obtained from the Registry under the following Key: +``` +HKEY_LOCAL_MACHINE\\HARDWARE\\RESOURCEMAP\\System Resources\\Physical Memory\\.Translated +``` + ## License Licensed under GPL-3.0 License, see [LICENSE](LICENSE).