Jump to content
Tuts 4 You

findpg 0.1


Teddy Rogers

1 Screenshot

About This File

This is an Windbg extension to find kernel pages allocated by PatchGuard. This program allows us to know how many PatchGuard contexts are running on a target environment and will help security researchers who want to analyze PatchGuard on their own.

Installation

  1. Make sure that Visual C++ Redistributable Packages for Visual Studio 2013 has already been installed.
  2. Start WinDbg (only x64 version of WinDbg is supported)
  3. Either attach a target kernel, open a crash dump file or start local kernel debugging session using livekd.
  4. Load the extension by the following command.
    1. .load <fullpath_to_the_DLL_file>
  5. If you copied findpg.dll into a <WINDBG_DIR>/winext folder, you can omit a path.
    1. .load findpg
  6. Use !findpg to display base addresses of pages allocated for PatchGuard. or !help to display usage of this extension.
    1. !findpg

Sample Output

  • The first field shows a type of memory region
  • Base address is the address of beginning of the pages allocated for a PatchGuard context. The contents will be encrypted.
  • Size is a size of the region. Apparently, it should always be page align when it is PatchGuard's page.
  • The first field of randomness is the number of 0x00 or 0xff in the first 100 bytes of the page. If the page is really encrypted, it should be relatively low number such as less than 5.
  • The second field of randomness is the number of unique bytes in the first 100 bytes of the page. When the page is really encrypted, it should be relatively high number such as greater than 70.
  • The remaining texts are description of the Pooltag. If the pooltag seems to be some third party related one, it will not be a PatchGuard page. On the other hand, if it seems to be a legitimate tag, it does NOT mean that it is NOT a PatchGuard page.

Supported Platforms

Host:

  • Windows 7 SP1 x64 and later
  • x64 Debugger

Target:

  • Windows Vista SP2 x64 and later

What's New in Version 0.1   See changelog

Released

No changelog available for this version.


User Feedback

Recommended Comments

There are no comments to display.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...