Click here to Skip to main content
15,881,882 members
Articles / WMI

Tracing WMI Queries

Rate me:
Please Sign up or sign in to vote.
5.00/5 (3 votes)
28 Nov 2011CPOL2 min read 18.3K   7  
The purpose of this article is to show how to capture the WMI queries sent to the system in plain text using assembler and a powerful debugger.

WMI Query Trace

According to the definitions: Windows Management Instrumentation (WMI) is a set of extensions to the Windows Driver Model that provides an operating system interface through which instrumented components provide information and notification. WMI is Microsoft's implementation of the Web-Based Enterprise Management (WBEM) and Common Information Model (CIM) standards from the Distributed Management Task Force (DMTF).

This is NOT A TUTORIAL ABOUT WMI. The purpose of this article is to show how to capture the WMI queries sent to the system in plain text using assembler and a powerful debugger. Not sure if there is any WMI Profiler in the market, but the purpose is just to show how to do this from your app. There are a lot of ways to do this and sometimes could be dependent on the client application. If you need specific help, do not hesitate to contact me. Probably the workaround for different applications is totally different. This article is oriented to mid level to expert users of Windows debugger and escalation engineers.

To start, let's check the famous Information System from Microsoft (Información del sistema in Spanish).

  1. Open System Information. Start->Programs->Accessories->System Tools->System Information. The process is: helpctr.exe
  2. Open Windows debugger tool (This tool can be found for free at the Microsoft web site). This is the preferred tool for escalation engineers.
  3. Attach this process to the Windbg, using attach the process option or F6.

    Image 1

  4. After deep research trying to search for functions like ExecuteQuery, ExecWmi, or any other words, I found that CWbemSvcWrapper::XWbemServices::ExecQuery which is included on fastprox library could be useful. Let’s put a breakpoint right there:
    bp fastprox!CWbemSvcWrapper::XWbemServices::ExecQuery
  5. Continue to run the application by using G or F5

    Image 2

  6. Navigate across the System Information interface.
  7. If the interface gets frozen, a breakpoint has been launched, return to the Windows Debugger console.
  8. Examine the stack of the thread recently executed by using ddu esp which means give me all the Unicode strings (dda for ANSI chars) in the stack starting at the top of the stack:
    ddu esp

    Image 3

  9. Good, we found a nice string in the specific location: 031dfe58 address. But what if in the next iteration, it changes? Is it preferable to have a calculable location? The question is: How many bytes are from ESP register to the parameter? We can calculate it.

    Image 4

  10. Good, we have 0xc bytes from ESP. To ensure this theory, execute:
    .printf "%mu",poi(esp+c)

    Image 5

  11. Good, we have the way to extract the information from memory. Remember that we are still in the entry point of function:
    fastprox!CWbemSvcWrapper::XWbemServices::ExecQuery
  12. We can put a definitive breakpoint bp breakpoint, .printf prints %mu Unicode and gc go and continue:
    bp fastprox!CWbemSvcWrapper::XWbemServices::ExecQuery 
    ".printf \"%mu\\n\", poi(esp+c);gc"

    Image 6

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Tester / Quality Assurance
Bolivia Bolivia
Quality Assurance

Comments and Discussions

 
-- There are no messages in this forum --