Исходник Terminateprocess

Начинающий
Статус
Оффлайн
Регистрация
1 Ноя 2022
Сообщения
14
Реакции[?]
11
Поинты[?]
0
Patches terminateprocess to prevent any application from closing itself


PoC:
#include <windows.h>
#include <stdio.h>
#include <iostream>
#include <cstdint>

#pragma GCC diagnostic ignored "-Wconversion-null"

bool Initialize(HMODULE hModule)
{
    AllocConsole();
    freopen("CONIN$", "r", stdin);
    freopen("CONOUT$", "w", stdout);
    
    const auto exit_procedure = [&]()
    {
        _fcloseall();
        PostMessage(GetConsoleWindow(), WM_CLOSE, NULL, NULL);
        FreeConsole();
        FreeLibraryAndExitThread(hModule, 0);
    };
    
    static const uint8_t shell[] = {0xC3, 0x90, 0x90};
    DWORD old;
    
    auto terminate = reinterpret_cast<uint64_t>(TerminateProcess);
    VirtualProtect(reinterpret_cast<LPVOID>(terminate), sizeof(shell), PAGE_EXECUTE_READWRITE, &old);
    for (int idx = 0; idx < sizeof(shell); idx++)
        *(uint8_t*)(terminate + idx * 0x1) = shell[idx]; //Write shell
    VirtualProtect(reinterpret_cast<LPVOID>(terminate), sizeof(shell), old, nullptr);
    
    char result[512];
    sprintf(result, "Succesfully patched TerminateProcess(%s)", terminate);
    MessageBox(0, result ,"Success", MB_ICONINFORMATION);
    exit_procedure();
}


BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
{
    switch (ul_reason_for_call)
    {
        case DLL_PROCESS_ATTACH:
            CloseHandle(CreateThread(nullptr, 0, (LPTHREAD_START_ROUTINE)Initialize, hModule, 0, nullptr));
        case DLL_PROCESS_DETACH:
            break;
    }
    return TRUE;
}
 
Участник
Статус
Оффлайн
Регистрация
23 Апр 2022
Сообщения
694
Реакции[?]
326
Поинты[?]
12K
Patches terminateprocess to prevent any application from closing itself


PoC:
#include <windows.h>
#include <stdio.h>
#include <iostream>
#include <cstdint>

#pragma GCC diagnostic ignored "-Wconversion-null"

bool Initialize(HMODULE hModule)
{
    AllocConsole();
    freopen("CONIN$", "r", stdin);
    freopen("CONOUT$", "w", stdout);
   
    const auto exit_procedure = [&]()
    {
        _fcloseall();
        PostMessage(GetConsoleWindow(), WM_CLOSE, NULL, NULL);
        FreeConsole();
        FreeLibraryAndExitThread(hModule, 0);
    };
   
    static const uint8_t shell[] = {0xC3, 0x90, 0x90};
    DWORD old;
   
    auto terminate = reinterpret_cast<uint64_t>(TerminateProcess);
    VirtualProtect(reinterpret_cast<LPVOID>(terminate), sizeof(shell), PAGE_EXECUTE_READWRITE, &old);
    for (int idx = 0; idx < sizeof(shell); idx++)
        *(uint8_t*)(terminate + idx * 0x1) = shell[idx]; //Write shell
    VirtualProtect(reinterpret_cast<LPVOID>(terminate), sizeof(shell), old, nullptr);
   
    char result[512];
    sprintf(result, "Succesfully patched TerminateProcess(%s)", terminate);
    MessageBox(0, result ,"Success", MB_ICONINFORMATION);
    exit_procedure();
}


BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
{
    switch (ul_reason_for_call)
    {
        case DLL_PROCESS_ATTACH:
            CloseHandle(CreateThread(nullptr, 0, (LPTHREAD_START_ROUTINE)Initialize, hModule, 0, nullptr));
        case DLL_PROCESS_DETACH:
            break;
    }
    return TRUE;
}
Безусловно круто, только кто использует TerminateProcess что бы закрыть процесс?Есть полно других интересных методов)
 
Разработчик
Статус
Оффлайн
Регистрация
18 Мар 2020
Сообщения
439
Реакции[?]
870
Поинты[?]
195K
плохая практика так в наглую блочить выполнение апи, если у тебя приложение попытается себя закрыть с пропатченной функцией, то жди андефайнед бехавиор, мог бы юзануть заморозку процесса/треда вместо патча на рет
 
Сверху Снизу