2014-11-20 12:21:23 +00:00
|
|
|
/*
|
|
|
|
Copyright 2014 Stas'M Corp.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2014-10-22 23:47:44 +00:00
|
|
|
#include "stdafx.h"
|
2014-12-03 22:23:10 +00:00
|
|
|
#include "IniFile.h"
|
2014-10-22 23:47:44 +00:00
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
union
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
WORD Minor;
|
|
|
|
WORD Major;
|
|
|
|
} wVersion;
|
|
|
|
DWORD dwVersion;
|
|
|
|
};
|
|
|
|
WORD Release;
|
|
|
|
WORD Build;
|
|
|
|
} FILE_VERSION;
|
|
|
|
|
|
|
|
#ifdef _WIN64
|
|
|
|
typedef unsigned long long PLATFORM_DWORD;
|
|
|
|
struct FARJMP
|
|
|
|
{ // x64 far jump | opcode | assembly
|
|
|
|
BYTE MovOp; // 48 mov rax, ptr
|
|
|
|
BYTE MovRegArg; // B8
|
|
|
|
DWORD64 MovArg; // PTR
|
|
|
|
BYTE PushRaxOp; // 50 push rax
|
|
|
|
BYTE RetOp; // C3 retn
|
|
|
|
};
|
|
|
|
#else
|
|
|
|
typedef unsigned long PLATFORM_DWORD;
|
|
|
|
struct FARJMP
|
|
|
|
{ // x86 far jump | opcode | assembly
|
|
|
|
BYTE PushOp; // 68 push ptr
|
|
|
|
DWORD PushArg; // PTR
|
|
|
|
BYTE RetOp; // C3 retn
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
FARJMP Old_SLGetWindowsInformationDWORD, Stub_SLGetWindowsInformationDWORD;
|
|
|
|
SLGETWINDOWSINFORMATIONDWORD _SLGetWindowsInformationDWORD;
|
|
|
|
|
2014-12-03 22:23:10 +00:00
|
|
|
INI_FILE *IniFile;
|
2014-11-21 13:38:07 +00:00
|
|
|
LPCTSTR LogFile = L"\\rdpwrap.txt";
|
2014-10-22 23:47:44 +00:00
|
|
|
HMODULE hTermSrv;
|
|
|
|
HMODULE hSLC;
|
|
|
|
PLATFORM_DWORD TermSrvBase;
|
|
|
|
FILE_VERSION FV;
|
|
|
|
SERVICEMAIN _ServiceMain;
|
|
|
|
SVCHOSTPUSHSERVICEGLOBALS _SvchostPushServiceGlobals;
|
|
|
|
bool AlreadyHooked = false;
|
|
|
|
|
|
|
|
void WriteToLog(LPSTR Text)
|
|
|
|
{
|
|
|
|
DWORD dwBytesOfWritten;
|
|
|
|
|
2014-11-21 13:38:07 +00:00
|
|
|
// Correct this - LogFile
|
|
|
|
HANDLE hFile = CreateFile(LogFile, GENERIC_WRITE, FILE_SHARE_WRITE | FILE_SHARE_READ, NULL, OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
|
2014-10-22 23:47:44 +00:00
|
|
|
if (hFile == INVALID_HANDLE_VALUE) return;
|
|
|
|
|
|
|
|
SetFilePointer(hFile, 0, 0, FILE_END);
|
|
|
|
WriteFile(hFile, Text, strlen(Text), &dwBytesOfWritten, NULL);
|
|
|
|
CloseHandle(hFile);
|
|
|
|
}
|
|
|
|
|
2014-11-21 13:38:07 +00:00
|
|
|
HMODULE GetCurrentModule()
|
|
|
|
{
|
|
|
|
HMODULE hModule = NULL;
|
|
|
|
// Check this
|
|
|
|
GetModuleHandleEx(GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS, (LPCWSTR)GetCurrentModule, &hModule);
|
|
|
|
return hModule;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Correct this
|
2014-12-07 12:33:23 +00:00
|
|
|
// TODO: Add *wchar_t argument, size argument. Write ExtractFilePath function
|
|
|
|
// Variable "Filename" will be deleted after you exit the function.
|
|
|
|
// Stas => vk.com/im
|
2014-11-21 13:38:07 +00:00
|
|
|
LPCWSTR GetBinaryPath()
|
|
|
|
{
|
|
|
|
wchar_t Filename[256];
|
2014-12-07 12:33:23 +00:00
|
|
|
GetModuleFileName(GetCurrentModule(), Filename, 256);
|
|
|
|
return Filename;
|
2014-11-21 13:38:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*PLATFORM_DWORD SearchAddressBySignature(char *StartPosition, PLATFORM_DWORD Size, char *Signature, int SignatureSize)
|
2014-10-22 23:47:44 +00:00
|
|
|
{
|
|
|
|
PLATFORM_DWORD AddressReturn = -1;
|
|
|
|
|
|
|
|
for (PLATFORM_DWORD i = 0; i < Size; i++)
|
|
|
|
{
|
|
|
|
for (int j = 0; StartPosition[i+j] == Signature[j] && j < SignatureSize; j++)
|
|
|
|
{
|
|
|
|
if (j == SignatureSize-1) AddressReturn = (PLATFORM_DWORD)&StartPosition[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return AddressReturn;
|
2014-11-21 13:38:07 +00:00
|
|
|
}*/
|
2014-10-22 23:47:44 +00:00
|
|
|
|
|
|
|
bool GetModuleCodeSectionInfo(HMODULE hModule, PLATFORM_DWORD *BaseAddr, PLATFORM_DWORD *BaseSize)
|
|
|
|
{
|
|
|
|
PIMAGE_DOS_HEADER pDosHeader;
|
|
|
|
PIMAGE_FILE_HEADER pFileHeader;
|
|
|
|
PIMAGE_OPTIONAL_HEADER pOptionalHeader;
|
|
|
|
|
|
|
|
if (hModule == NULL) return false;
|
|
|
|
|
|
|
|
pDosHeader = (PIMAGE_DOS_HEADER)hModule;
|
|
|
|
pFileHeader = (PIMAGE_FILE_HEADER)(((PBYTE)hModule)+pDosHeader->e_lfanew+4);
|
|
|
|
pOptionalHeader = (PIMAGE_OPTIONAL_HEADER)(pFileHeader+1);
|
|
|
|
|
|
|
|
*BaseAddr = (PLATFORM_DWORD)hModule;
|
|
|
|
*BaseSize = (PLATFORM_DWORD)pOptionalHeader->SizeOfCode;
|
|
|
|
|
|
|
|
if (*BaseAddr <= 0 || *BaseSize <= 0) return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetThreadsState(bool Resume)
|
|
|
|
{
|
|
|
|
HANDLE h, hThread;
|
|
|
|
DWORD CurrTh, CurrPr;
|
|
|
|
THREADENTRY32 Thread;
|
|
|
|
|
|
|
|
CurrTh = GetCurrentThreadId();
|
|
|
|
CurrPr = GetCurrentProcessId();
|
|
|
|
|
|
|
|
h = CreateToolhelp32Snapshot(TH32CS_SNAPTHREAD, 0);
|
|
|
|
if (h != INVALID_HANDLE_VALUE)
|
|
|
|
{
|
|
|
|
Thread.dwSize = sizeof(THREADENTRY32);
|
|
|
|
Thread32First(h, &Thread);
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if (Thread.th32ThreadID != CurrTh && Thread.th32OwnerProcessID == CurrPr)
|
|
|
|
{
|
|
|
|
hThread = OpenThread(THREAD_SUSPEND_RESUME, false, Thread.th32ThreadID);
|
|
|
|
if (hThread != INVALID_HANDLE_VALUE)
|
|
|
|
{
|
|
|
|
if (Resume) ResumeThread(hThread);
|
|
|
|
else SuspendThread(hThread);
|
|
|
|
CloseHandle(hThread);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while (Thread32Next(h, &Thread));
|
|
|
|
CloseHandle(h);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL __stdcall GetModuleVersion(LPCWSTR lptstrModuleName, FILE_VERSION *FileVersion)
|
|
|
|
{
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
WORD wLength;
|
|
|
|
WORD wValueLength;
|
|
|
|
WORD wType;
|
|
|
|
WCHAR szKey[16];
|
|
|
|
WORD Padding1;
|
|
|
|
VS_FIXEDFILEINFO Value;
|
|
|
|
WORD Padding2;
|
|
|
|
WORD Children;
|
|
|
|
} VS_VERSIONINFO;
|
|
|
|
|
|
|
|
HMODULE hMod = GetModuleHandle(lptstrModuleName);
|
|
|
|
if(!hMod)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRSRC hResourceInfo = FindResourceW(hMod, (LPCWSTR)1, (LPCWSTR)0x10);
|
|
|
|
if(!hResourceInfo)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
VS_VERSIONINFO *VersionInfo = (VS_VERSIONINFO*)LoadResource(hMod, hResourceInfo);
|
|
|
|
if(!VersionInfo)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
FileVersion->dwVersion = VersionInfo->Value.dwFileVersionMS;
|
|
|
|
FileVersion->Release = (WORD)(VersionInfo->Value.dwFileVersionLS >> 16);
|
|
|
|
FileVersion->Build = (WORD)VersionInfo->Value.dwFileVersionLS;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL __stdcall GetFileVersion(LPCWSTR lptstrFilename, FILE_VERSION *FileVersion)
|
|
|
|
{
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
WORD wLength;
|
|
|
|
WORD wValueLength;
|
|
|
|
WORD wType;
|
|
|
|
WCHAR szKey[16];
|
|
|
|
WORD Padding1;
|
|
|
|
VS_FIXEDFILEINFO Value;
|
|
|
|
WORD Padding2;
|
|
|
|
WORD Children;
|
|
|
|
} VS_VERSIONINFO;
|
|
|
|
|
|
|
|
HMODULE hFile = LoadLibraryExW(lptstrFilename, NULL, LOAD_LIBRARY_AS_DATAFILE);
|
|
|
|
if(!hFile)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRSRC hResourceInfo = FindResourceW(hFile, (LPCWSTR)1, (LPCWSTR)0x10);
|
|
|
|
if(!hResourceInfo)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
VS_VERSIONINFO *VersionInfo = (VS_VERSIONINFO*)LoadResource(hFile, hResourceInfo);
|
|
|
|
if(!VersionInfo)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
FileVersion->dwVersion = VersionInfo->Value.dwFileVersionMS;
|
|
|
|
FileVersion->Release = (WORD)(VersionInfo->Value.dwFileVersionLS >> 16);
|
|
|
|
FileVersion->Build = (WORD)VersionInfo->Value.dwFileVersionLS;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool OverrideSL(LPWSTR ValueName, DWORD *Value)
|
|
|
|
{
|
2014-12-04 19:59:52 +00:00
|
|
|
INI_VAR_DWORD Variable = {0};
|
|
|
|
|
2014-12-03 22:23:10 +00:00
|
|
|
if (IniFile->VariableExists(INI, "SLPolicy", ValueName))
|
2014-10-22 23:47:44 +00:00
|
|
|
{
|
2014-12-04 19:59:52 +00:00
|
|
|
if (!(IniFile->GetVariableInSection("SLPolicy", ValueName, &Variable))) *Value = 0;
|
2014-12-04 20:12:59 +00:00
|
|
|
else *Value = Variable.ValueDec;
|
2014-10-22 23:47:44 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI New_SLGetWindowsInformationDWORD(PWSTR pwszValueName, DWORD *pdwValue)
|
|
|
|
{
|
|
|
|
// wrapped SLGetWindowsInformationDWORD function
|
|
|
|
// termsrv.dll will call this function instead of original SLC.dll
|
|
|
|
|
|
|
|
// Override SL Policy
|
|
|
|
|
|
|
|
extern FARJMP Old_SLGetWindowsInformationDWORD, Stub_SLGetWindowsInformationDWORD;
|
|
|
|
extern SLGETWINDOWSINFORMATIONDWORD _SLGetWindowsInformationDWORD;
|
|
|
|
|
|
|
|
char *Log;
|
|
|
|
DWORD dw;
|
|
|
|
SIZE_T bw;
|
|
|
|
HRESULT Result;
|
|
|
|
|
|
|
|
Log = new char[1024];
|
|
|
|
wsprintfA(Log, "Policy query: %S\r\n", pwszValueName);
|
|
|
|
WriteToLog(Log);
|
|
|
|
delete[] Log;
|
|
|
|
|
|
|
|
if (OverrideSL(pwszValueName, &dw))
|
|
|
|
{
|
|
|
|
*pdwValue = dw;
|
|
|
|
|
|
|
|
Log = new char[1024];
|
|
|
|
wsprintfA(Log, "Rewrite: %i\r\n", dw);
|
|
|
|
WriteToLog(Log);
|
|
|
|
delete[] Log;
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
WriteProcessMemory(GetCurrentProcess(), _SLGetWindowsInformationDWORD, &Old_SLGetWindowsInformationDWORD, sizeof(FARJMP), &bw);
|
|
|
|
Result = _SLGetWindowsInformationDWORD(pwszValueName, pdwValue);
|
|
|
|
if (Result == S_OK)
|
|
|
|
{
|
|
|
|
Log = new char[1024];
|
|
|
|
wsprintfA(Log, "Result: %i\r\n", dw);
|
|
|
|
WriteToLog(Log);
|
|
|
|
delete[] Log;
|
|
|
|
} else {
|
|
|
|
WriteToLog("Failed\r\n");
|
|
|
|
}
|
|
|
|
WriteProcessMemory(GetCurrentProcess(), _SLGetWindowsInformationDWORD, &Stub_SLGetWindowsInformationDWORD, sizeof(FARJMP), &bw);
|
|
|
|
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT __fastcall New_Win8SL(PWSTR pwszValueName, DWORD *pdwValue)
|
|
|
|
{
|
|
|
|
// wrapped unexported function SLGetWindowsInformationDWORDWrapper in termsrv.dll
|
|
|
|
// for Windows 8 support
|
|
|
|
|
|
|
|
// Override SL Policy
|
|
|
|
|
|
|
|
extern SLGETWINDOWSINFORMATIONDWORD _SLGetWindowsInformationDWORD;
|
|
|
|
|
|
|
|
char *Log;
|
|
|
|
DWORD dw;
|
|
|
|
HRESULT Result;
|
|
|
|
|
|
|
|
Log = new char[1024];
|
|
|
|
wsprintfA(Log, "Policy query: %S\r\n", pwszValueName);
|
|
|
|
WriteToLog(Log);
|
|
|
|
delete[] Log;
|
|
|
|
|
|
|
|
if (OverrideSL(pwszValueName, &dw))
|
|
|
|
{
|
|
|
|
*pdwValue = dw;
|
|
|
|
|
|
|
|
Log = new char[1024];
|
|
|
|
wsprintfA(Log, "Rewrite: %i\r\n", dw);
|
|
|
|
WriteToLog(Log);
|
|
|
|
delete[] Log;
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
Result = _SLGetWindowsInformationDWORD(pwszValueName, pdwValue);
|
|
|
|
if (Result == S_OK)
|
|
|
|
{
|
|
|
|
Log = new char[1024];
|
|
|
|
wsprintfA(Log, "Result: %i\r\n", dw);
|
|
|
|
WriteToLog(Log);
|
|
|
|
delete[] Log;
|
|
|
|
} else {
|
|
|
|
WriteToLog("Failed\r\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef _WIN64
|
|
|
|
HRESULT __fastcall New_Win8SL_CP(DWORD arg1, DWORD *pdwValue, PWSTR pwszValueName, DWORD arg4)
|
|
|
|
{
|
|
|
|
// wrapped unexported function SLGetWindowsInformationDWORDWrapper in termsrv.dll
|
|
|
|
// for Windows 8 Consumer Preview support
|
|
|
|
|
|
|
|
return New_Win8SL(pwszValueName, pdwValue);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
HRESULT WINAPI New_CSLQuery_Initialize()
|
|
|
|
{
|
|
|
|
extern PLATFORM_DWORD TermSrvBase;
|
|
|
|
extern FILE_VERSION FV;
|
|
|
|
|
|
|
|
char *Log;
|
|
|
|
DWORD *bServerSku = NULL;
|
|
|
|
DWORD *bRemoteConnAllowed = NULL;
|
|
|
|
DWORD *bFUSEnabled = NULL;
|
|
|
|
DWORD *bAppServerAllowed = NULL;
|
|
|
|
DWORD *bMultimonAllowed = NULL;
|
|
|
|
DWORD *lMaxUserSessions = NULL;
|
|
|
|
DWORD *ulMaxDebugSessions = NULL;
|
|
|
|
DWORD *bInitialized = NULL;
|
|
|
|
|
|
|
|
WriteToLog("> CSLQuery::Initialize\r\n");
|
|
|
|
|
2014-11-21 13:38:07 +00:00
|
|
|
char *Sect;
|
|
|
|
Sect = new char[1024];
|
|
|
|
wsprintfA(Sect, "%d.%d.%d.%d-SLInit", FV.wVersion.Major, FV.wVersion.Minor, FV.Release, FV.Build);
|
|
|
|
|
2014-12-03 22:23:10 +00:00
|
|
|
if (IniFile->SectionExists(Sect))
|
2014-11-02 13:00:46 +00:00
|
|
|
{
|
|
|
|
#ifdef _WIN64
|
2014-11-21 13:38:07 +00:00
|
|
|
bServerSku = (DWORD*)(TermSrvBase + INIReadDWordHex(INI, Sect, "bServerSku.x64", 0));
|
|
|
|
bRemoteConnAllowed = (DWORD*)(TermSrvBase + INIReadDWordHex(INI, Sect, "bRemoteConnAllowed.x64", 0));
|
|
|
|
bFUSEnabled = (DWORD*)(TermSrvBase + INIReadDWordHex(INI, Sect, "bFUSEnabled.x64", 0));
|
|
|
|
bAppServerAllowed = (DWORD*)(TermSrvBase + INIReadDWordHex(INI, Sect, "bAppServerAllowed.x64", 0));
|
|
|
|
bMultimonAllowed = (DWORD*)(TermSrvBase + INIReadDWordHex(INI, Sect, "bMultimonAllowed.x64", 0));
|
|
|
|
lMaxUserSessions = (DWORD*)(TermSrvBase + INIReadDWordHex(INI, Sect, "lMaxUserSessions.x64", 0));
|
|
|
|
ulMaxDebugSessions = (DWORD*)(TermSrvBase + INIReadDWordHex(INI, Sect, "ulMaxDebugSessions.x64", 0));
|
|
|
|
bInitialized = (DWORD*)(TermSrvBase + INIReadDWordHex(INI, Sect, "bInitialized.x64", 0));
|
2014-11-02 13:00:46 +00:00
|
|
|
#else
|
2014-11-21 13:38:07 +00:00
|
|
|
bServerSku = (DWORD*)(TermSrvBase + INIReadDWordHex(INI, Sect, "bServerSku.x86", 0));
|
|
|
|
bRemoteConnAllowed = (DWORD*)(TermSrvBase + INIReadDWordHex(INI, Sect, "bRemoteConnAllowed.x86", 0));
|
|
|
|
bFUSEnabled = (DWORD*)(TermSrvBase + INIReadDWordHex(INI, Sect, "bFUSEnabled.x86", 0));
|
|
|
|
bAppServerAllowed = (DWORD*)(TermSrvBase + INIReadDWordHex(INI, Sect, "bAppServerAllowed.x86", 0));
|
|
|
|
bMultimonAllowed = (DWORD*)(TermSrvBase + INIReadDWordHex(INI, Sect, "bMultimonAllowed.x86", 0));
|
|
|
|
lMaxUserSessions = (DWORD*)(TermSrvBase + INIReadDWordHex(INI, Sect, "lMaxUserSessions.x86", 0));
|
|
|
|
ulMaxDebugSessions = (DWORD*)(TermSrvBase + INIReadDWordHex(INI, Sect, "ulMaxDebugSessions.x86", 0));
|
|
|
|
bInitialized = (DWORD*)(TermSrvBase + INIReadDWordHex(INI, Sect, "bInitialized.x86", 0));
|
2014-11-02 13:00:46 +00:00
|
|
|
#endif
|
|
|
|
}
|
2014-11-21 13:38:07 +00:00
|
|
|
delete[] Sect;
|
|
|
|
|
2014-10-22 23:47:44 +00:00
|
|
|
if (bServerSku)
|
|
|
|
{
|
2014-12-03 22:23:10 +00:00
|
|
|
if (!(IniFile->GetVariableInSection("SLInit", "bServerSku", bServerSku))) *bServerSku = 1;
|
2014-11-21 13:38:07 +00:00
|
|
|
|
2014-10-22 23:47:44 +00:00
|
|
|
Log = new char[1024];
|
2014-11-21 13:38:07 +00:00
|
|
|
wsprintfA(Log, "[0x%p] bServerSku = %d\r\n", bServerSku, *bServerSku);
|
2014-10-22 23:47:44 +00:00
|
|
|
WriteToLog(Log);
|
|
|
|
delete[] Log;
|
|
|
|
}
|
|
|
|
if (bRemoteConnAllowed)
|
|
|
|
{
|
2014-12-03 22:23:10 +00:00
|
|
|
if (!(IniFile->GetVariableInSection("SLInit", "bRemoteConnAllowed", bRemoteConnAllowed))) *bRemoteConnAllowed = 1;
|
2014-11-21 13:38:07 +00:00
|
|
|
|
2014-10-22 23:47:44 +00:00
|
|
|
Log = new char[1024];
|
2014-11-21 13:38:07 +00:00
|
|
|
wsprintfA(Log, "[0x%p] bRemoteConnAllowed = %d\r\n", bRemoteConnAllowed, *bRemoteConnAllowed);
|
2014-10-22 23:47:44 +00:00
|
|
|
WriteToLog(Log);
|
|
|
|
delete[] Log;
|
|
|
|
}
|
|
|
|
if (bFUSEnabled)
|
|
|
|
{
|
2014-12-03 22:23:10 +00:00
|
|
|
if (!(IniFile->GetVariableInSection("SLInit", "bFUSEnabled", bFUSEnabled))) *bFUSEnabled = 1;
|
2014-11-21 13:38:07 +00:00
|
|
|
|
2014-10-22 23:47:44 +00:00
|
|
|
Log = new char[1024];
|
2014-11-21 13:38:07 +00:00
|
|
|
wsprintfA(Log, "[0x%p] bFUSEnabled = %d\r\n", bFUSEnabled, *bFUSEnabled);
|
2014-10-22 23:47:44 +00:00
|
|
|
WriteToLog(Log);
|
|
|
|
delete[] Log;
|
|
|
|
}
|
|
|
|
if (bAppServerAllowed)
|
|
|
|
{
|
2014-12-03 22:23:10 +00:00
|
|
|
if (!(IniFile->GetVariableInSection("SLInit", "bAppServerAllowed", bAppServerAllowed))) *bAppServerAllowed = 1;
|
2014-11-21 13:38:07 +00:00
|
|
|
|
2014-10-22 23:47:44 +00:00
|
|
|
Log = new char[1024];
|
2014-11-21 13:38:07 +00:00
|
|
|
wsprintfA(Log, "[0x%p] bAppServerAllowed = %d\r\n", bAppServerAllowed, *bAppServerAllowed);
|
2014-10-22 23:47:44 +00:00
|
|
|
WriteToLog(Log);
|
|
|
|
delete[] Log;
|
|
|
|
}
|
|
|
|
if (bMultimonAllowed)
|
|
|
|
{
|
2014-12-03 22:23:10 +00:00
|
|
|
if (!(IniFile->GetVariableInSection("SLInit", "bMultimonAllowed", bMultimonAllowed))) *bMultimonAllowed = 1;
|
2014-11-21 13:38:07 +00:00
|
|
|
|
2014-10-22 23:47:44 +00:00
|
|
|
Log = new char[1024];
|
2014-11-21 13:38:07 +00:00
|
|
|
wsprintfA(Log, "[0x%p] bMultimonAllowed = %d\r\n", bMultimonAllowed, *bMultimonAllowed);
|
2014-10-22 23:47:44 +00:00
|
|
|
WriteToLog(Log);
|
|
|
|
delete[] Log;
|
|
|
|
}
|
|
|
|
if (lMaxUserSessions)
|
|
|
|
{
|
2014-12-03 22:23:10 +00:00
|
|
|
if (!(IniFile->GetVariableInSection("SLInit", "lMaxUserSessions", lMaxUserSessions))) *lMaxUserSessions = 0;
|
2014-11-21 13:38:07 +00:00
|
|
|
|
2014-10-22 23:47:44 +00:00
|
|
|
Log = new char[1024];
|
2014-11-21 13:38:07 +00:00
|
|
|
wsprintfA(Log, "[0x%p] lMaxUserSessions = %d\r\n", lMaxUserSessions, *lMaxUserSessions);
|
2014-10-22 23:47:44 +00:00
|
|
|
WriteToLog(Log);
|
|
|
|
delete[] Log;
|
|
|
|
}
|
|
|
|
if (ulMaxDebugSessions)
|
|
|
|
{
|
2014-12-03 22:23:10 +00:00
|
|
|
if (!(IniFile->GetVariableInSection("SLInit", "ulMaxDebugSessions", ulMaxDebugSessions))) *ulMaxDebugSessions = 0;
|
2014-11-21 13:38:07 +00:00
|
|
|
|
2014-10-22 23:47:44 +00:00
|
|
|
Log = new char[1024];
|
2014-11-21 13:38:07 +00:00
|
|
|
wsprintfA(Log, "[0x%p] ulMaxDebugSessions = %d\r\n", ulMaxDebugSessions, *ulMaxDebugSessions);
|
2014-10-22 23:47:44 +00:00
|
|
|
WriteToLog(Log);
|
|
|
|
delete[] Log;
|
|
|
|
}
|
|
|
|
if (bInitialized)
|
|
|
|
{
|
2014-12-03 22:23:10 +00:00
|
|
|
if (!(IniFile->GetVariableInSection("SLInit", "bInitialized", bInitialized))) *bInitialized = 1;
|
2014-11-21 13:38:07 +00:00
|
|
|
|
2014-10-22 23:47:44 +00:00
|
|
|
Log = new char[1024];
|
2014-11-21 13:38:07 +00:00
|
|
|
wsprintfA(Log, "[0x%p] bInitialized = %d\r\n", bInitialized, *bInitialized);
|
2014-10-22 23:47:44 +00:00
|
|
|
WriteToLog(Log);
|
|
|
|
delete[] Log;
|
|
|
|
}
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Hook()
|
|
|
|
{
|
|
|
|
extern FARJMP Old_SLGetWindowsInformationDWORD, Stub_SLGetWindowsInformationDWORD;
|
|
|
|
extern SLGETWINDOWSINFORMATIONDWORD _SLGetWindowsInformationDWORD;
|
|
|
|
extern HMODULE hTermSrv;
|
|
|
|
extern HMODULE hSLC;
|
|
|
|
extern PLATFORM_DWORD TermSrvBase;
|
|
|
|
extern FILE_VERSION FV;
|
2014-11-21 13:38:07 +00:00
|
|
|
extern LPCTSTR LogFile;
|
2014-10-22 23:47:44 +00:00
|
|
|
|
|
|
|
AlreadyHooked = true;
|
|
|
|
|
2014-11-21 13:38:07 +00:00
|
|
|
WriteToLog("Loading configuration...\r\n");
|
2014-12-04 19:59:52 +00:00
|
|
|
IniFile = new INI_FILE(ExtractFilePath(GetBinaryPath()) + L"rdpwrap.ini");
|
|
|
|
if (IniFile == NULL)
|
2014-11-21 13:38:07 +00:00
|
|
|
{
|
|
|
|
WriteToLog("Error: Failed to load configuration\r\n");
|
|
|
|
return;
|
|
|
|
}
|
2014-12-03 22:23:10 +00:00
|
|
|
|
|
|
|
if(!(IniFile->GetVariableInSection("Main", "LogFile", &LogFile)))
|
|
|
|
{
|
|
|
|
LogFile = ExtractFilePath(GetBinaryPath()) + L"rdpwrap.txt";
|
|
|
|
}
|
2014-11-21 13:38:07 +00:00
|
|
|
|
2014-10-22 23:47:44 +00:00
|
|
|
bool Result;
|
|
|
|
char *Log;
|
|
|
|
SIZE_T bw;
|
|
|
|
WORD Ver = 0;
|
|
|
|
PLATFORM_DWORD TermSrvSize, SignPtr;
|
|
|
|
FARJMP Jump;
|
|
|
|
BYTE b;
|
|
|
|
|
|
|
|
WriteToLog("init\r\n");
|
|
|
|
|
|
|
|
hTermSrv = LoadLibrary(L"termsrv.dll");
|
|
|
|
if (hTermSrv == 0)
|
|
|
|
{
|
|
|
|
WriteToLog("Error: Failed to load Terminal Services library\r\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
_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);
|
|
|
|
WriteToLog(Log);
|
|
|
|
delete[] Log;
|
|
|
|
|
|
|
|
// check termsrv version
|
|
|
|
if (GetModuleVersion(L"termsrv.dll", &FV))
|
|
|
|
{
|
|
|
|
Ver = (BYTE)FV.wVersion.Minor | ((BYTE)FV.wVersion.Major << 8);
|
|
|
|
} else {
|
|
|
|
// check NT version
|
|
|
|
// Ver = GetVersion(); // deprecated
|
|
|
|
// Ver = ((Ver & 0xFF) << 8) | ((Ver & 0xFF00) >> 8);
|
|
|
|
}
|
|
|
|
if (Ver == 0)
|
|
|
|
{
|
|
|
|
WriteToLog("Error: Failed to detect Terminal Services version\r\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Log = new char[1024];
|
|
|
|
wsprintfA(Log, "Version: %d.%d\r\n", FV.wVersion.Major, FV.wVersion.Minor);
|
|
|
|
WriteToLog(Log);
|
|
|
|
delete[] Log;
|
|
|
|
|
|
|
|
Log = new char[1024];
|
|
|
|
wsprintfA(Log, "Release: %d\r\n", FV.Release);
|
|
|
|
WriteToLog(Log);
|
|
|
|
delete[] Log;
|
|
|
|
|
|
|
|
Log = new char[1024];
|
|
|
|
wsprintfA(Log, "Build: %d\r\n", FV.Build);
|
|
|
|
WriteToLog(Log);
|
|
|
|
delete[] Log;
|
|
|
|
|
|
|
|
// temporarily freeze threads
|
|
|
|
WriteToLog("freeze\r\n");
|
|
|
|
SetThreadsState(false);
|
|
|
|
|
2014-11-21 13:38:07 +00:00
|
|
|
WriteToLog("Loading patch codes...\r\n");
|
2014-12-03 22:23:10 +00:00
|
|
|
INI->ReadSection("PatchCodes", &PatchList);
|
|
|
|
|
|
|
|
INI_VAR_BYTEARRAY Patch[PatchList.length];
|
2014-11-21 13:38:07 +00:00
|
|
|
for (int i = 0; i < Patch.length; i++)
|
|
|
|
{
|
2014-12-03 22:23:10 +00:00
|
|
|
if (IniFile->GetVariableInSection("PatchCodes", PatchList[i], &Patch[i]))
|
|
|
|
{
|
|
|
|
// for security reasons
|
|
|
|
// not more than 16 bytes
|
|
|
|
if (Patch[i].length > 16) SetLength(Patch[i], 16);
|
|
|
|
}
|
2014-11-21 13:38:07 +00:00
|
|
|
}
|
|
|
|
|
2014-12-03 22:23:10 +00:00
|
|
|
bool bSLHook;
|
|
|
|
if (!(IniFile->GetVariableInSection("Main", "SLPolicyHookNT60", &bSLHook))) bSLHook = true;
|
|
|
|
|
|
|
|
if ((Ver == 0x0600) && bSLHook)
|
2014-10-22 23:47:44 +00:00
|
|
|
{
|
|
|
|
// Windows Vista
|
|
|
|
// uses SL Policy API (slc.dll)
|
2014-11-21 13:38:07 +00:00
|
|
|
|
2014-10-22 23:47:44 +00:00
|
|
|
// load slc.dll and hook function
|
|
|
|
hSLC = LoadLibrary(L"slc.dll");
|
|
|
|
_SLGetWindowsInformationDWORD = (SLGETWINDOWSINFORMATIONDWORD)GetProcAddress(hSLC, "SLGetWindowsInformationDWORD");
|
|
|
|
if (_SLGetWindowsInformationDWORD != INVALID_HANDLE_VALUE)
|
|
|
|
{
|
|
|
|
// rewrite original function to call our function (make hook)
|
|
|
|
|
|
|
|
WriteToLog("Hook SLGetWindowsInformationDWORD\r\n");
|
|
|
|
#ifdef _WIN64
|
|
|
|
Stub_SLGetWindowsInformationDWORD.MovOp = 0x48;
|
|
|
|
Stub_SLGetWindowsInformationDWORD.MovRegArg = 0xB8;
|
2014-11-21 13:38:07 +00:00
|
|
|
Stub_SLGetWindowsInformationDWORD.MovArg = (PLATFORM_DWORD)New_SLGetWindowsInformationDWORD;
|
2014-10-22 23:47:44 +00:00
|
|
|
Stub_SLGetWindowsInformationDWORD.PushRaxOp = 0x50;
|
|
|
|
Stub_SLGetWindowsInformationDWORD.RetOp = 0xC3;
|
|
|
|
#else
|
|
|
|
Stub_SLGetWindowsInformationDWORD.PushOp = 0x68;
|
|
|
|
Stub_SLGetWindowsInformationDWORD.PushArg = (PLATFORM_DWORD)New_SLGetWindowsInformationDWORD;
|
|
|
|
Stub_SLGetWindowsInformationDWORD.RetOp = 0xC3;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ReadProcessMemory(GetCurrentProcess(), _SLGetWindowsInformationDWORD, &Old_SLGetWindowsInformationDWORD, sizeof(FARJMP), &bw);
|
|
|
|
WriteProcessMemory(GetCurrentProcess(), _SLGetWindowsInformationDWORD, &Stub_SLGetWindowsInformationDWORD, sizeof(FARJMP), &bw);
|
|
|
|
}
|
|
|
|
}
|
2014-12-03 22:23:10 +00:00
|
|
|
|
|
|
|
if (!(IniFile->GetVariableInSection("Main", "SLPolicyHookNT60", &bSLHook))) bSLHook = true;
|
|
|
|
|
|
|
|
if ((Ver == 0x0601) && bSLHook)
|
2014-10-22 23:47:44 +00:00
|
|
|
{
|
|
|
|
// Windows 7
|
|
|
|
// uses SL Policy API (slc.dll)
|
2014-11-21 13:38:07 +00:00
|
|
|
|
2014-10-22 23:47:44 +00:00
|
|
|
// load slc.dll and hook function
|
|
|
|
hSLC = LoadLibrary(L"slc.dll");
|
|
|
|
_SLGetWindowsInformationDWORD = (SLGETWINDOWSINFORMATIONDWORD)GetProcAddress(hSLC, "SLGetWindowsInformationDWORD");
|
|
|
|
if (_SLGetWindowsInformationDWORD != INVALID_HANDLE_VALUE)
|
|
|
|
{
|
|
|
|
// rewrite original function to call our function (make hook)
|
|
|
|
|
|
|
|
WriteToLog("Hook SLGetWindowsInformationDWORD\r\n");
|
|
|
|
#ifdef _WIN64
|
|
|
|
Stub_SLGetWindowsInformationDWORD.MovOp = 0x48;
|
|
|
|
Stub_SLGetWindowsInformationDWORD.MovRegArg = 0xB8;
|
2014-11-21 13:38:07 +00:00
|
|
|
Stub_SLGetWindowsInformationDWORD.MovArg = (PLATFORM_DWORD)New_SLGetWindowsInformationDWORD;
|
2014-10-22 23:47:44 +00:00
|
|
|
Stub_SLGetWindowsInformationDWORD.PushRaxOp = 0x50;
|
|
|
|
Stub_SLGetWindowsInformationDWORD.RetOp = 0xC3;
|
|
|
|
#else
|
|
|
|
Stub_SLGetWindowsInformationDWORD.PushOp = 0x68;
|
|
|
|
Stub_SLGetWindowsInformationDWORD.PushArg = (PLATFORM_DWORD)New_SLGetWindowsInformationDWORD;
|
|
|
|
Stub_SLGetWindowsInformationDWORD.RetOp = 0xC3;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ReadProcessMemory(GetCurrentProcess(), _SLGetWindowsInformationDWORD, &Old_SLGetWindowsInformationDWORD, sizeof(FARJMP), &bw);
|
|
|
|
WriteProcessMemory(GetCurrentProcess(), _SLGetWindowsInformationDWORD, &Stub_SLGetWindowsInformationDWORD, sizeof(FARJMP), &bw);
|
|
|
|
}
|
2014-11-21 13:38:07 +00:00
|
|
|
}
|
|
|
|
if (Ver == 0x0602)
|
|
|
|
{
|
|
|
|
// Windows 8
|
|
|
|
// uses SL Policy internal unexported function
|
|
|
|
|
|
|
|
// load slc.dll and get function
|
|
|
|
// (will be used on intercepting undefined values)
|
|
|
|
hSLC = LoadLibrary(L"slc.dll");
|
|
|
|
_SLGetWindowsInformationDWORD = (SLGETWINDOWSINFORMATIONDWORD)GetProcAddress(hSLC, "SLGetWindowsInformationDWORD");
|
|
|
|
}
|
|
|
|
if (Ver == 0x0603)
|
|
|
|
{
|
|
|
|
// Windows 8.1
|
|
|
|
// uses SL Policy internal inline code
|
|
|
|
}
|
|
|
|
if (Ver == 0x0604)
|
|
|
|
{
|
|
|
|
// Windows 10
|
|
|
|
// uses SL Policy internal inline code
|
|
|
|
}
|
2014-10-22 23:47:44 +00:00
|
|
|
|
2014-11-21 13:38:07 +00:00
|
|
|
char *Sect;
|
|
|
|
Sect = new char[1024];
|
|
|
|
wsprintfA(Sect, "%d.%d.%d.%d", FV.wVersion.Major, FV.wVersion.Minor, FV.Release, FV.Build);
|
2014-12-03 22:23:10 +00:00
|
|
|
if (IniFile->SectionExists(Sect))
|
2014-11-21 13:38:07 +00:00
|
|
|
{
|
2014-10-22 23:47:44 +00:00
|
|
|
if (GetModuleCodeSectionInfo(hTermSrv, &TermSrvBase, &TermSrvSize))
|
|
|
|
{
|
2014-12-03 22:23:10 +00:00
|
|
|
bool Bool;
|
2014-11-21 13:38:07 +00:00
|
|
|
#ifdef _WIN64
|
2014-12-03 22:23:10 +00:00
|
|
|
if (!(IniFile->GetVariableInSection(Sect, "LocalOnlyPatch.x64", &Bool))) Bool = true;
|
2014-11-21 13:38:07 +00:00
|
|
|
#else
|
2014-12-03 22:23:10 +00:00
|
|
|
if (!(IniFile->GetVariableInSection(Sect, "LocalOnlyPatch.x86", &Bool))) Bool = true;
|
2014-11-21 13:38:07 +00:00
|
|
|
#endif
|
2014-12-03 22:23:10 +00:00
|
|
|
if (Bool)
|
2014-10-22 23:47:44 +00:00
|
|
|
{
|
2014-11-21 13:38:07 +00:00
|
|
|
WriteToLog("Patch CEnforcementCore::GetInstanceOfTSLicense\r\n");
|
|
|
|
int i = -1;
|
2014-10-22 23:47:44 +00:00
|
|
|
#ifdef _WIN64
|
2014-11-21 13:38:07 +00:00
|
|
|
SignPtr = (PLATFORM_DWORD)(TermSrvBase + INIReadDWordHex(INI, Sect, "LocalOnlyOffset.x64", 0));
|
|
|
|
i = SListFind(PatchList, INIReadString(INI, Sect, "LocalOnlyCode.x64", ""));
|
2014-10-22 23:47:44 +00:00
|
|
|
#else
|
2014-11-21 13:38:07 +00:00
|
|
|
SignPtr = (PLATFORM_DWORD)(TermSrvBase + INIReadDWordHex(INI, Sect, "LocalOnlyOffset.x86", 0));
|
|
|
|
i = SListFind(PatchList, INIReadString(INI, Sect, "LocalOnlyCode.x86", ""));
|
2014-10-22 23:47:44 +00:00
|
|
|
#endif
|
2014-11-21 13:38:07 +00:00
|
|
|
if (i >= 0) WriteProcessMemory(GetCurrentProcess(), (LPVOID)SignPtr, &Patch[i], sizeof(Patch[i]), &bw);
|
2014-10-22 23:47:44 +00:00
|
|
|
}
|
2014-11-21 13:38:07 +00:00
|
|
|
#ifdef _WIN64
|
2014-12-03 22:23:10 +00:00
|
|
|
if (!(IniFile->GetVariableInSection(Sect, "SingleUserPatch.x64", &Bool))) Bool = true;
|
2014-11-21 13:38:07 +00:00
|
|
|
#else
|
2014-12-03 22:23:10 +00:00
|
|
|
if (!(IniFile->GetVariableInSection(Sect, "SingleUserPatch.x86", &Bool))) Bool = true;
|
2014-11-21 13:38:07 +00:00
|
|
|
#endif
|
2014-12-03 22:23:10 +00:00
|
|
|
if (Bool)
|
2014-10-22 23:47:44 +00:00
|
|
|
{
|
|
|
|
WriteToLog("Patch CSessionArbitrationHelper::IsSingleSessionPerUserEnabled\r\n");
|
2014-11-21 13:38:07 +00:00
|
|
|
int i = -1;
|
2014-10-22 23:47:44 +00:00
|
|
|
#ifdef _WIN64
|
2014-11-21 13:38:07 +00:00
|
|
|
SignPtr = (PLATFORM_DWORD)(TermSrvBase + INIReadDWordHex(INI, Sect, "SingleUserOffset.x64", 0));
|
|
|
|
i = SListFind(PatchList, INIReadString(INI, Sect, "SingleUserCode.x64", ""));
|
2014-10-22 23:47:44 +00:00
|
|
|
#else
|
2014-11-21 13:38:07 +00:00
|
|
|
SignPtr = (PLATFORM_DWORD)(TermSrvBase + INIReadDWordHex(INI, Sect, "SingleUserOffset.x86", 0));
|
|
|
|
i = SListFind(PatchList, INIReadString(INI, Sect, "SingleUserCode.x86", ""));
|
2014-10-22 23:47:44 +00:00
|
|
|
#endif
|
2014-11-21 13:38:07 +00:00
|
|
|
if (i >= 0) WriteProcessMemory(GetCurrentProcess(), (LPVOID)SignPtr, &Patch[i], sizeof(Patch[i]), &bw);
|
2014-10-22 23:47:44 +00:00
|
|
|
}
|
2014-11-21 13:38:07 +00:00
|
|
|
#ifdef _WIN64
|
2014-12-03 22:23:10 +00:00
|
|
|
if (!(IniFile->GetVariableInSection(Sect, "DefPolicyPatch.x64", &Bool))) Bool = true;
|
2014-11-21 13:38:07 +00:00
|
|
|
#else
|
2014-12-03 22:23:10 +00:00
|
|
|
if (!(IniFile->GetVariableInSection(Sect, "DefPolicyPatch.x86", &Bool))) Bool = true;
|
2014-11-21 13:38:07 +00:00
|
|
|
#endif
|
2014-12-03 22:23:10 +00:00
|
|
|
if (Bool)
|
2014-10-22 23:47:44 +00:00
|
|
|
{
|
|
|
|
WriteToLog("Patch CDefPolicy::Query\r\n");
|
2014-11-21 13:38:07 +00:00
|
|
|
int i = -1;
|
2014-10-22 23:47:44 +00:00
|
|
|
#ifdef _WIN64
|
2014-11-21 13:38:07 +00:00
|
|
|
SignPtr = (PLATFORM_DWORD)(TermSrvBase + INIReadDWordHex(INI, Sect, "DefPolicyOffset.x64", 0));
|
|
|
|
i = SListFind(PatchList, INIReadString(INI, Sect, "DefPolicyCode.x64", ""));
|
2014-10-22 23:47:44 +00:00
|
|
|
#else
|
2014-11-21 13:38:07 +00:00
|
|
|
SignPtr = (PLATFORM_DWORD)(TermSrvBase + INIReadDWordHex(INI, Sect, "DefPolicyOffset.x86", 0));
|
|
|
|
i = SListFind(PatchList, INIReadString(INI, Sect, "DefPolicyCode.x86", ""));
|
2014-10-22 23:47:44 +00:00
|
|
|
#endif
|
2014-11-21 13:38:07 +00:00
|
|
|
if (i >= 0) WriteProcessMemory(GetCurrentProcess(), (LPVOID)SignPtr, &Patch[i], sizeof(Patch[i]), &bw);
|
2014-10-22 23:47:44 +00:00
|
|
|
}
|
2014-11-21 13:38:07 +00:00
|
|
|
#ifdef _WIN64
|
2014-12-03 22:23:10 +00:00
|
|
|
if (!(IniFile->GetVariableInSection(Sect, "SLPolicyInternal.x64", &Bool))) Bool = true;
|
2014-11-21 13:38:07 +00:00
|
|
|
#else
|
2014-12-03 22:23:10 +00:00
|
|
|
if (!(IniFile->GetVariableInSection(Sect, "SLPolicyInternal.x86", &Bool))) Bool = true;
|
2014-11-21 13:38:07 +00:00
|
|
|
#endif
|
2014-12-03 22:23:10 +00:00
|
|
|
if (Bool)
|
2014-11-13 20:56:16 +00:00
|
|
|
{
|
2014-11-21 13:38:07 +00:00
|
|
|
WriteToLog("Hook SLGetWindowsInformationDWORDWrapper\r\n");
|
|
|
|
char *FuncName;
|
|
|
|
FuncName = new char[1024];
|
2014-11-13 20:56:16 +00:00
|
|
|
#ifdef _WIN64
|
2014-11-21 13:38:07 +00:00
|
|
|
SignPtr = (PLATFORM_DWORD)(TermSrvBase + INIReadDWordHex(INI, Sect, "SLPolicyOffset.x64", 0));
|
|
|
|
Jump.MovOp = 0x48;
|
|
|
|
Jump.MovRegArg = 0xB8;
|
|
|
|
Jump.MovArg = (PLATFORM_DWORD)New_Win8SL;
|
|
|
|
Jump.PushRaxOp = 0x50;
|
|
|
|
Jump.RetOp = 0xC3;
|
|
|
|
FuncName = INIReadString(INI, Sect, "SLPolicyFunc.x64", "New_Win8SL");
|
|
|
|
if (strcmp(FuncName, "New_Win8SL"))
|
|
|
|
{
|
|
|
|
Jump.MovArg = (PLATFORM_DWORD)New_Win8SL;
|
|
|
|
}
|
2014-11-13 20:56:16 +00:00
|
|
|
#else
|
2014-11-21 13:38:07 +00:00
|
|
|
SignPtr = (PLATFORM_DWORD)(TermSrvBase + INIReadDWordHex(INI, Sect, "SLPolicyOffset.x86", 0));
|
|
|
|
Jump.PushOp = 0x68;
|
|
|
|
Jump.MovArg = (PLATFORM_DWORD)New_Win8SL;
|
|
|
|
Jump.RetOp = 0xC3;
|
|
|
|
FuncName = INIReadString(INI, Sect, "SLPolicyFunc.x86", "New_Win8SL");
|
|
|
|
if (strcmp(FuncName, "New_Win8SL"))
|
|
|
|
{
|
|
|
|
Jump.MovArg = (PLATFORM_DWORD)New_Win8SL;
|
|
|
|
}
|
|
|
|
if (strcmp(FuncName, "New_Win8SL_CP"))
|
|
|
|
{
|
|
|
|
Jump.MovArg = (PLATFORM_DWORD)New_Win8SL_CP;
|
|
|
|
}
|
2014-11-13 20:56:16 +00:00
|
|
|
#endif
|
2014-11-21 13:38:07 +00:00
|
|
|
delete[] FuncName;
|
|
|
|
WriteProcessMemory(GetCurrentProcess(), (LPVOID)SignPtr, &Jump, sizeof(FARJMP), &bw);
|
2014-11-13 20:56:16 +00:00
|
|
|
}
|
2014-11-21 13:38:07 +00:00
|
|
|
#ifdef _WIN64
|
2014-12-03 22:23:10 +00:00
|
|
|
if (!(IniFile->GetVariableInSection(Sect, "SLInitHook.x64", &Bool))) Bool = true;
|
2014-11-21 13:38:07 +00:00
|
|
|
#else
|
2014-12-03 22:23:10 +00:00
|
|
|
if (!(IniFile->GetVariableInSection(Sect, "SLInitHook.x86", &Bool))) Bool = true;
|
2014-11-21 13:38:07 +00:00
|
|
|
#endif
|
2014-12-03 22:23:10 +00:00
|
|
|
if (Bool)
|
2014-11-13 20:56:16 +00:00
|
|
|
{
|
2014-11-21 13:38:07 +00:00
|
|
|
WriteToLog("Hook CSLQuery::Initialize\r\n");
|
|
|
|
char *FuncName;
|
|
|
|
FuncName = new char[1024];
|
2014-11-13 20:56:16 +00:00
|
|
|
#ifdef _WIN64
|
2014-11-21 13:38:07 +00:00
|
|
|
SignPtr = (PLATFORM_DWORD)(TermSrvBase + INIReadDWordHex(INI, Sect, "SLInitOffset.x64", 0));
|
|
|
|
Jump.MovOp = 0x48;
|
|
|
|
Jump.MovRegArg = 0xB8;
|
|
|
|
Jump.MovArg = (PLATFORM_DWORD)New_CSLQuery_Initialize;
|
|
|
|
Jump.PushRaxOp = 0x50;
|
|
|
|
Jump.RetOp = 0xC3;
|
|
|
|
FuncName = INIReadString(INI, Sect, "SLInitFunc.x64", "New_CSLQuery_Initialize");
|
|
|
|
if (strcmp(FuncName, "New_CSLQuery_Initialize"))
|
|
|
|
{
|
|
|
|
Jump.MovArg = (PLATFORM_DWORD)New_CSLQuery_Initialize;
|
|
|
|
}
|
2014-11-13 20:56:16 +00:00
|
|
|
#else
|
2014-11-21 13:38:07 +00:00
|
|
|
SignPtr = (PLATFORM_DWORD)(TermSrvBase + INIReadDWordHex(INI, Sect, "SLInitOffset.x86", 0));
|
|
|
|
Jump.PushOp = 0x68;
|
|
|
|
Jump.MovArg = (PLATFORM_DWORD)New_CSLQuery_Initialize;
|
|
|
|
Jump.RetOp = 0xC3;
|
|
|
|
FuncName = INIReadString(INI, Sect, "SLInitFunc.x86", "New_CSLQuery_Initialize");
|
|
|
|
if (strcmp(FuncName, "New_CSLQuery_Initialize"))
|
|
|
|
{
|
|
|
|
Jump.MovArg = (PLATFORM_DWORD)New_CSLQuery_Initialize;
|
|
|
|
}
|
2014-11-13 20:56:16 +00:00
|
|
|
#endif
|
2014-11-21 13:38:07 +00:00
|
|
|
delete[] FuncName;
|
|
|
|
WriteProcessMemory(GetCurrentProcess(), (LPVOID)SignPtr, &Jump, sizeof(FARJMP), &bw);
|
2014-11-13 20:56:16 +00:00
|
|
|
}
|
2014-10-22 23:47:44 +00:00
|
|
|
}
|
|
|
|
}
|
2014-11-21 13:38:07 +00:00
|
|
|
delete[] Sect;
|
2014-10-22 23:47:44 +00:00
|
|
|
|
|
|
|
WriteToLog("resume\r\n");
|
|
|
|
SetThreadsState(true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WINAPI ServiceMain(DWORD dwArgc, LPTSTR *lpszArgv)
|
|
|
|
{
|
|
|
|
WriteToLog("> ServiceMain\r\n");
|
|
|
|
if (!AlreadyHooked) Hook();
|
|
|
|
|
|
|
|
if (_ServiceMain != NULL) _ServiceMain(dwArgc, lpszArgv);
|
|
|
|
}
|
|
|
|
|
|
|
|
void WINAPI SvchostPushServiceGlobals(void *lpGlobalData)
|
|
|
|
{
|
|
|
|
WriteToLog("> SvchostPushServiceGlobals\r\n");
|
|
|
|
if (!AlreadyHooked) Hook();
|
|
|
|
|
|
|
|
if (_SvchostPushServiceGlobals != NULL) _SvchostPushServiceGlobals(lpGlobalData);
|
2014-12-04 19:59:52 +00:00
|
|
|
}
|