1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
#include "skype_proto.h"
#include "aes\aes.h"
#include "base64\base64.h"
#include "..\..\..\skypekit\key.h"
char *CSkypeProto::LoadKeyPair()
{
HRSRC hRes = FindResource(g_hInstance, MAKEINTRESOURCE(IDR_KEY), L"BIN");
if (hRes)
{
HGLOBAL hResource = LoadResource(g_hInstance, hRes);
if (hResource)
{
aes_context ctx;
unsigned char key[128];
int basedecoded = Base64::Decode(MY_KEY, (char *)key, MAX_PATH);
::aes_set_key(&ctx, key, 128);
memset(key, 0, sizeof(key));
basedecoded = ::SizeofResource(g_hInstance, hRes);
char *pData = (char *)hResource;
if (!pData)
return NULL;
unsigned char *bufD = (unsigned char *)::malloc(basedecoded + 1);
unsigned char *tmpD = (unsigned char *)::malloc(basedecoded + 1);
basedecoded = Base64::Decode(pData, (char *)tmpD, basedecoded);
for (int i = 0; i < basedecoded; i += 16)
aes_decrypt(&ctx, tmpD+i, bufD+i);
::free(tmpD);
bufD[basedecoded] = 0; //cert should be null terminated
return (char *)bufD;
}
return NULL;
}
return NULL;
}
int CSkypeProto::StartSkypeRuntime(const wchar_t *profileName)
{
STARTUPINFO cif = {0};
cif.cb = sizeof(STARTUPINFO);
cif.dwFlags = STARTF_USESHOWWINDOW;
cif.wShowWindow = SW_HIDE;
wchar_t fileName[MAX_PATH];
::GetModuleFileName(g_hInstance, fileName, MAX_PATH);
wchar_t *skypeKitPath = ::wcsrchr(fileName, '\\');
if (skypeKitPath != NULL)
*skypeKitPath = 0;
::swprintf(fileName, SIZEOF(fileName), L"%s\\%s", fileName, L"SkypeKit.exe");
PROCESSENTRY32 entry;
entry.dwSize = sizeof(PROCESSENTRY32);
// todo: rework
HANDLE snapshot = ::CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, NULL);
if (::Process32First(snapshot, &entry) == TRUE)
{
while (::Process32Next(snapshot, &entry) == TRUE)
{
if (::wcsicmp(entry.szExeFile, L"SkypeKit.exe") == 0 || ::wcsicmp(entry.szExeFile, L"Skype.exe") == 0)
{
this->skypeKitPort += rand() % 1000 + 8963;
break;
}
}
}
::CloseHandle(snapshot);
wchar_t param[128];
VARST dbPath( _T("%miranda_userdata%\\SkypeKit"));
::swprintf(param, SIZEOF(param), L"-p -P %d -f \"%s\"", this->skypeKitPort, dbPath);
int startingrt = ::CreateProcess(
fileName, param,
NULL, NULL, FALSE,
CREATE_NEW_CONSOLE,
NULL, NULL, &cif, &this->skypeKitProcessInfo);
return startingrt;
}
void CSkypeProto::StopSkypeRuntime()
{
::PostThreadMessage(this->skypeKitProcessInfo.dwThreadId, WM_CLOSE, 0, 0);
::WaitForSingleObject(this->skypeKitProcessInfo.hProcess, 1500);
DWORD dwExitCode = 0;
::GetExitCodeProcess(this->skypeKitProcessInfo.hProcess, &dwExitCode);
if (dwExitCode == STILL_ACTIVE)
::TerminateProcess(this->skypeKitProcessInfo.hProcess, 0); // Zero is the exit code
::CloseHandle(this->skypeKitProcessInfo.hThread);
::CloseHandle(this->skypeKitProcessInfo.hProcess);
}
|