mirror of
https://github.com/stascorp/rdpwrap.git
synced 2024-11-09 17:58:20 +00:00
Perfect look
This commit is contained in:
parent
939a884f20
commit
6059197036
@ -568,18 +568,14 @@ void Hook()
|
||||
_ServiceMain = (SERVICEMAIN)GetProcAddress(hTermSrv, "ServiceMain");
|
||||
_SvchostPushServiceGlobals = (SVCHOSTPUSHSERVICEGLOBALS)GetProcAddress(hTermSrv, "SvchostPushServiceGlobals");
|
||||
|
||||
Log = new char[1024];
|
||||
wsprintfA(Log, "Base addr: 0x%p\r\n", hTermSrv);
|
||||
WriteToLog(Log);
|
||||
delete[] Log;
|
||||
|
||||
Log = new char[1024];
|
||||
wsprintfA(Log, "SvcMain: termsrv.dll+0x%p\r\n", (PLATFORM_DWORD)_ServiceMain - (PLATFORM_DWORD)hTermSrv);
|
||||
WriteToLog(Log);
|
||||
delete[] Log;
|
||||
|
||||
Log = new char[1024];
|
||||
wsprintfA(Log, "SvcGlobals: termsrv.dll+0x%p\r\n", (PLATFORM_DWORD)_SvchostPushServiceGlobals - (PLATFORM_DWORD)hTermSrv);
|
||||
Log = new char[4096];
|
||||
wsprintfA(Log,
|
||||
"Base addr: 0x%p\r\n"
|
||||
"SvcMain: termsrv.dll+0x%p\r\n"
|
||||
"SvcGlobals: termsrv.dll+0x%p\r\n",
|
||||
hTermSrv,
|
||||
(PLATFORM_DWORD)_ServiceMain - (PLATFORM_DWORD)hTermSrv,
|
||||
(PLATFORM_DWORD)_SvchostPushServiceGlobals - (PLATFORM_DWORD)hTermSrv);
|
||||
WriteToLog(Log);
|
||||
delete[] Log;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user