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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
|
#include "skype.h"
#include "skype_proto.h"
int hLangpack;
HINSTANCE g_hInstance;
CSkype* g_skype;
PLUGININFOEX pluginInfo =
{
sizeof(PLUGININFOEX),
__PLUGIN_NAME,
PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
__DESCRIPTION,
__AUTHOR,
__AUTHOREMAIL,
__COPYRIGHT,
__AUTHORWEB,
UNICODE_AWARE,
// {9C448C61-FC3F-42F9-B9F0-4A30E1CF8671}
{ 0x9c448c61, 0xfc3f, 0x42f9, { 0xb9, 0xf0, 0x4a, 0x30, 0xe1, 0xcf, 0x86, 0x71 } }
};
static int compare_protos(const CSkypeProto *p1, const CSkypeProto *p2)
{
return _tcscmp(p1->m_tszUserName, p2->m_tszUserName);
}
OBJLIST<CSkypeProto> g_Instances(1, compare_protos);
DWORD WINAPI DllMain(HINSTANCE hInstance, DWORD, LPVOID)
{
g_hInstance = hInstance;
return TRUE;
}
extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
{
return &pluginInfo;
}
extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = {MIID_PROTOCOL, MIID_LAST};
static CSkypeProto* SkypeProtoInit(const char* pszProtoName, const TCHAR* tszUserName)
{
CSkypeProto *ppro = new CSkypeProto(pszProtoName, tszUserName);
g_Instances.insert(ppro);
return ppro;
return 0;
}
static int SkypeProtoUninit(CSkypeProto* ppro)
{
g_Instances.remove(ppro);
delete ppro;
return 0;
}
char* keyBuf = 0;
int LoadKeyPair()
{
FILE* f = 0;
size_t fsize = 0;
int keyLen = 0;
f = fopen(g_keyFileName, "r");
if (f != 0)
{
fseek(f, 0, SEEK_END);
fsize = ftell(f);
rewind(f);
keyLen = fsize + 1;
keyBuf = new char[keyLen];
size_t read = fread(keyBuf, 1, fsize, f);
if (read != fsize)
{
printf("Error reading %s\n", g_keyFileName);
return 0;
};
keyBuf[fsize] = 0; //cert should be null terminated
fclose(f);
return keyLen;
};
printf("Error opening app token file: %s\n", g_keyFileName);
return 0;
};
extern "C" int __declspec(dllexport) Load(void)
{
// loading skype SDK
// shitcode
char* bsp;
STARTUPINFOA cif;
PROCESS_INFORMATION pi;
char runtimePath[MAX_PATH];
GetModuleFileNameA(g_hInstance, runtimePath, MAX_PATH);
bsp = strrchr(runtimePath, '\\' );
runtimePath[strlen(runtimePath) - strlen(bsp)] = '\0';
strcat(runtimePath, "\\..\\..\\..\\..\\SkypeKit\\SDK\\bin\\windows-x86\\windows-x86-skypekit.exe");
ZeroMemory(&cif,sizeof(STARTUPINFOA));
CreateProcessA(
runtimePath,
NULL,
NULL,
NULL,
TRUE,
CREATE_NEW_CONSOLE,
NULL,
NULL,
&cif,
&pi);
g_skype = new CSkype();
LoadKeyPair();
g_skype->init(keyBuf, "127.0.0.1", 8963, "streamlog.txt");
g_skype->start();
PROTOCOLDESCRIPTOR pd = { sizeof(pd) };
pd.szName = MODULE;
pd.type = PROTOTYPE_PROTOCOL;
pd.fnInit = (pfnInitProto)SkypeProtoInit;
pd.fnUninit = (pfnUninitProto)SkypeProtoUninit;
CallService(MS_PROTO_REGISTERMODULE, 0, reinterpret_cast<LPARAM>(&pd));
IconsLoad();
return 0;
}
extern "C" int __declspec(dllexport) Unload(void)
{
g_skype->stop();
delete g_skype;
return 0;
}
|