Windows programming: Traversing the dynamic-link library (DLL) code used by the program (C + +)

Source: Internet
Author: User
Tags bool include printf

Traversing the dynamic-link library (DLL) used by the program first requires traversing all processes, matching the process name with the process ID, and then outputting all the libraries (DLLs) that are used according to the process name.

In the example, Image.exe is a pre-boot program. The code contains code to traverse the process, and to output dynamic-link libraries (DLLs).

Code:

* * * main.cpp * * Created on:2014.06.08 * author:spike//*vs 2012*/#include <iostre am> #include <iomanip> #include <string> #include <map> #include <windows.h&  
Gt  
      
#include <TlHelp32.h> using namespace std;  
    BOOL Traverseprocesses (std::map<std::string, int>& _nameid) {PROCESSENTRY32 pe32;  
      
    pe32.dwsize = sizeof (PE32);  
    HANDLE Hprocesssnap = createtoolhelp32snapshot (th32cs_snapprocess, 0); if (Hprocesssnap = = Invalid_handle_value) {std::cout << "createtoolhelp32snapshot error!" << std::en  
        DL;;  
    return false;  
      
    BOOL bresult =process32first (Hprocesssnap, &pe32);  
      
    int num (0);  
        while (bresult) {std::string name = Pe32.szexefile;  
      
        int id = PE32.TH32PROCESSID; Std::cout << "[<< ++num <<"]: "<<" PRocess Name: "//More Highlights: http://www.bianceng.cnhttp://www.bianceng.cn/Programming/cplus///<< Name <<  
      
        "" << "ProcessID:" << id<< Std::endl; _nameid.insert (std::p air<string, int> (name, id));  
    Dictionary Storage bresult = Process32Next (HPROCESSSNAP,&AMP;PE32);  
      
    } closehandle (HPROCESSSNAP);  
return true;  
      
    BOOL Traversemodels (const std::string _name) {DWORD dwid; 
    /*printf ("Please enter the name of a process to traverse processmodels:"); 
    std::string name;  
      
    Cin >> name;*/std::map<std::string, int> NameID;  
    if (!traverseprocesses (NameID)) {//variable process cout << "Print processes error!" << Endl;  
      
    } Dwid = Nameid[_name];  
    HANDLE Hmodulesnap = CreateToolhelp32Snapshot (Th32cs_snapmodule, Dwid); if (Hmodulesnap = = Invalid_handle_value) {printf ("Createtoolhelp32snapshoterror!  
        \ n ");  
    return false;  
    } MODULEENTRY32 module32;  
    module32.dwsize = sizeof (MODULE32);  
      
    BOOL bresult = Module32first (Hmodulesnap, &module32);  
      
    int num (0); while (bresult) {std::wcout << ["<< num++ <<"]: "<<" Module: "<< Std::left < < STD::SETW << module32.szmodule << "<< endl <<" Path: "<< module3  
        2.szExePath << Std::endl;  
    Bresult = Module32next (Hmodulesnap, &module32);  
      
    } closehandle (HMODULESNAP);  
      
return true;  
      
    int main () {const std::string program ("Image.exe");  
    if (!traversemodels (program)) {cout << "Traverse Models error!" << Endl;  
return 0; }

Output:

Author: csdn Blog spike_king

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.