Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GetTickCount(64) and timeGetTime(system) seemingly don't get hooked without QueryPerfomanceCounter hook #2

Open
ermaccer opened this issue May 18, 2024 · 0 comments

Comments

@ermaccer
Copy link

Demo to reproduce:

#include <iostream>
#include <Windows.h>
#include <time.h>

#pragma comment(lib, "winmm.lib")

int main()
{
    HMODULE hMod = LoadLibrary(L"UptimeFaker32.dll");
    if (!hMod)
        return 1;

    DWORD tickCount = GetTickCount();
    DWORD time = timeGetTime();

    std::cout << "GetTickCount: " << tickCount << std::endl;
    std::cout << "timeGetTime: " << time << std::endl;
    return 0;
}

Console results:

QueryPerformanceCounter=0

GetTickCount: 26363796
timeGetTime: 26363796

QueryPerformanceCounter=1 (and 49 days)

GetTickCount: 4259980812
timeGetTime: 4259980812
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant