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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
|
// ---------------------------------------------------------------------------80
// ICQ plugin for Miranda Instant Messenger
// ________________________________________
//
// Copyright 2000,2001 Richard Hughes, Roland Rabien, Tristan Van de Vreede
// Copyright 2001,2002 Jon Keating, Richard Hughes
// Copyright 2002,2003,2004 Martin berg, Sam Kothari, Robert Rainwater
// Copyright 2004,2005,2006,2007 Joe Kucera
// Copyright 2006,2007 [sss], chaos.persei, [sin], Faith Healer, Theif, nullbie
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//
// -----------------------------------------------------------------------------
//
// File name : $Source$
// Revision : $Revision: 36 $
// Last change on : $Date: 2007-08-05 03:45:10 +0300 (Вс, 05 авг 2007) $
// Last change by : $Author: sss123next $
//
// DESCRIPTION:
//
// Describe me here please...
//
// -----------------------------------------------------------------------------
#include "icqoscar.h"
static void handleAuthKeyResponse(BYTE *buf, WORD wPacketLen, serverthread_info *info);
static void handleRegImage(BYTE *buf, WORD wPacketLen, serverthread_info *info);
static void handleIcqNewUin(BYTE *buf, WORD wPacketLen, serverthread_info *info);
void handleAuthorizationFam(unsigned char *pBuffer, WORD wBufferLength, snac_header* pSnacHeader, serverthread_info *info)
{
switch (pSnacHeader->wSubtype)
{
case ICQ_SIGNON_ERROR:
{
WORD wError;
if (wBufferLength >= 2)
unpackWord(&pBuffer, &wError);
else
wError = 0;
LogFamilyError(ICQ_AUTHORIZATION_FAMILY, wError);
break;
}
case ICQ_SIGNON_AUTH_KEY:
handleAuthKeyResponse(pBuffer, wBufferLength, info);
break;
case ICQ_SIGNON_LOGIN_REPLY:
handleLoginReply(pBuffer, wBufferLength, info);
break;
case ICQ_SIGNON_REG_AUTH_IMAGE:
handleRegImage(pBuffer, wBufferLength, info);
break;
case ICQ_SIGNON_NEW_UIN:
handleIcqNewUin(pBuffer, wBufferLength, info);
break;
default:
NetLog_Server("Warning: Ignoring SNAC(x%02x,x%02x) - Unknown SNAC (Flags: %u, Ref: %u)", ICQ_AUTHORIZATION_FAMILY, pSnacHeader->wSubtype, pSnacHeader->wFlags, pSnacHeader->dwRef);
break;
}
}
static void icq_encryptPassword(const char* szPassword, unsigned char* encrypted)
{
unsigned int i;
unsigned char table[] =
{
0xf3, 0x26, 0x81, 0xc4,
0x39, 0x86, 0xdb, 0x92,
0x71, 0xa3, 0xb9, 0xe6,
0x53, 0x7a, 0x95, 0x7c
};
for (i = 0; szPassword[i]; i++)
{
encrypted[i] = (szPassword[i] ^ table[i % 16]);
}
}
void sendClientAuth(const char* szKey, WORD wKeyLen, BOOL bSecure)
{
char szUin[UINMAXLEN];
WORD wUinLen;
icq_packet packet;
wUinLen = strlennull(strUID(dwLocalUIN, szUin));
packet.wLen = 65 + sizeof(CLIENT_ID_STRING) + wUinLen + wKeyLen;
if (bSecure)
{
serverPacketInit(&packet, (WORD)(packet.wLen + 10));
packFNACHeaderFull(&packet, ICQ_AUTHORIZATION_FAMILY, ICQ_SIGNON_LOGIN_REQUEST, 0, 0);
}
else
{
write_flap(&packet, ICQ_LOGIN_CHAN);
packDWord(&packet, 0x00000001);
}
packTLV(&packet, 0x0001, wUinLen, szUin);
if (bSecure)
{ // Pack MD5 auth digest
packTLV(&packet, 0x0025, wKeyLen, (BYTE*)szKey);
packDWord(&packet, 0x004C0000); // empty TLV(0x4C): unknown
}
else
{ // Pack old style password hash
char hash[20];
icq_encryptPassword(szKey, hash);
packTLV(&packet, 0x0002, wKeyLen, hash);
}
// Pack client identification details.
packTLV(&packet, 0x0003, (WORD)sizeof(CLIENT_ID_STRING)-1, CLIENT_ID_STRING);
packTLVWord(&packet, 0x0016, CLIENT_ID_CODE);
packTLVWord(&packet, 0x0017, CLIENT_VERSION_MAJOR);
packTLVWord(&packet, 0x0018, CLIENT_VERSION_MINOR);
packTLVWord(&packet, 0x0019, CLIENT_VERSION_LESSER);
packTLVWord(&packet, 0x001a, CLIENT_VERSION_BUILD);
packTLVDWord(&packet, 0x0014, CLIENT_DISTRIBUTION);
packTLV(&packet, 0x000f, 0x0002, CLIENT_LANGUAGE);
packTLV(&packet, 0x000e, 0x0002, CLIENT_LANGUAGE);
sendServPacket(&packet);
}
void requestImage()
{
icq_packet packet;
SetDlgItemText(hwndRegImageDialog, IDC_NEWUININFO, Translate("Requesting image..."));
packet.wLen = 4;
write_flap(&packet, ICQ_LOGIN_CHAN);
packDWord(&packet, 0x00000001);
sendServPacket(&packet); // greet login server
serverPacketInit(&packet, (WORD)(18));
packFNACHeaderFull(&packet, ICQ_AUTHORIZATION_FAMILY, ICQ_SIGNON_REQUEST_IMAGE, 0, 0);
packTLV(&packet, 0x0001, 0, 0);
packDWord(&packet, 0x00000000);
sendServPacket(&packet); // request image
}
void registerUin(char* password, char* image)
{
icq_packet packet;
DWORD dwCookie = 0;
WORD wTlvLen = 48 + strlen(password) + 3;
SetDlgItemText(hwndRegImageDialog, IDC_NEWUININFO, Translate("Requesting UIN..."));
EnableWindow(GetDlgItem(hwndRegImageDialog, IDC_REGISTER), FALSE);
packet.wLen = (WORD)(wTlvLen + 14 + 4 + strlen(image));
//Init packet
serverPacketInit(&packet, (WORD)(wTlvLen + 14 + 4 + strlen(image)));
packFNACHeaderFull(&packet, ICQ_AUTHORIZATION_FAMILY, ICQ_SIGNON_REGISTRATION_REQ, 0, 0);
//Init TLV
packWord(&packet, 0x0001); //TLV type - 01
packWord(&packet, wTlvLen); //TLV length
//TLV data
packDWord(&packet, 0); //Four zeros
packWord(&packet, 0x2800); //Subcommand - request new uin
packWord(&packet, 0x0300); //Unknown
packDWord(&packet, 0); //Four zeros
packDWord(&packet, 0); //zeros...
packDWord(&packet, dwCookie); //registration cookie
packDWord(&packet, dwCookie); //same
packDWord(&packet, 0); //zeros
packDWord(&packet, 0); //hm... zeros...
packDWord(&packet, 0); //it cant be! zeros!
packDWord(&packet, 0); //You not beleive, again zeros!:)
//Password & ImCode
packLEWord(&packet, (WORD)(strlen(password) + 1)); //Password length + null termination
packBuffer(&packet, password, (WORD)strlen(password)); //Password
packBuffer(&packet, "\0", 1); //Null-terminator
packDWord(&packet, dwCookie); //Same cookie again
packDWord(&packet, 0xE3070000); //password TLV end, unknown
//TLV with image code
packWord(&packet, 0x0009); //TLV type, 09
packWord(&packet, (WORD)strlen(image)); //Packet length
packBuffer(&packet, image, (WORD)strlen(image)); //Image code
sendServPacket(&packet); // send packet - request uin
}
static void handleRegImage(BYTE *buf, WORD wPacketLen, serverthread_info *info)
{
HANDLE hFile;
DWORD dwBytesWritten;
char szTempName[MAX_PATH];
char lpPathBuffer[4096];
char* szType;
WORD wLen;
//Extracting image type (added 16 may 2007 by chaos.persei only for better debuging)
unpackTypedTLV(buf, wPacketLen, 0x0001, NULL, &wLen, &szType);
NetLog_Server("Image with protection code recieved, type is %s", szType);
buf += wLen + 4;
wPacketLen -= wLen;
buf += 2;
wPacketLen -= 4;
unpackWord(&buf, &wLen);
NetLog_Server("Image size: %d bytes", wLen);
NetLog_Server("Packet size: %d bytes", wPacketLen);
// Get the temp path
GetTempPath(4096, // length of the buffer
lpPathBuffer); // buffer for path
// Create a temporary file.
GetTempFileName(lpPathBuffer, // directory for temp files
"image", // temp file name prefix
0, // create unique name
szTempName); // buffer for name
hFile = CreateFile((LPTSTR) szTempName, // file to create
GENERIC_WRITE, // open for writing
0, // do not share
NULL, // default security
CREATE_ALWAYS, // overwrite existing
FILE_ATTRIBUTE_NORMAL, // normal file
NULL); // no attr. template
WriteFile(hFile, buf, wLen,
&dwBytesWritten, NULL);
CloseHandle(hFile);
SendDlgItemMessage(hwndRegImageDialog, IDC_UIN_IMAGE, STM_SETIMAGE, IMAGE_BITMAP, (WPARAM)(HBITMAP)CallService(MS_UTILS_LOADBITMAP, 0, (WPARAM)szTempName));
DeleteFile((LPCSTR)szTempName);
icq_regNewUin = 0;
SetDlgItemText(hwndRegImageDialog, IDC_NEWUININFO, Translate("Image arrived!\nEnter image code and password, then press \"Register\""));
EnableWindow(GetDlgItem(hwndRegImageDialog, IDC_REGISTER), TRUE);
}
static void handleIcqNewUin(BYTE *buf, WORD wPacketLen, serverthread_info *info)
{
DWORD dwUIN;
char szUin[UINMAXLEN], szInfo[1024];
HGLOBAL hglbUIN;
LPTSTR lptstrUIN;
buf += 46;
unpackLEDWord(&buf, &dwUIN);
ltoa(dwUIN, szUin, 10);
NetLog_Server("New ICQ uin registered and received: %s", szUin);
if (OpenClipboard(NULL))
{
EmptyClipboard();
hglbUIN = GlobalAlloc(GMEM_MOVEABLE, (strlen(szUin) + 1) * sizeof(TCHAR)) ;
lptstrUIN = GlobalLock(hglbUIN);
memcpy(lptstrUIN, szUin, strlen(szUin) * sizeof(TCHAR)) ;
GlobalUnlock(hglbUIN);
SetClipboardData(CF_TEXT, hglbUIN);
CloseClipboard();
}
sprintf(szInfo, "%s\n%s: %s\n%s: %s\n%s", Translate("New ICQ UIN registered!"), Translate("UIN"), szUin, Translate("Password"), icq_regpassword, Translate("Look for new UIN in clipboard"));
SetDlgItemText(hwndRegImageDialog, IDC_NEWUININFO, szInfo);
icq_regedUin = dwUIN;
icq_regNewUin = 0;
bImageRequested = 0;
icq_serverDisconnect(0);
}
static void handleAuthKeyResponse(BYTE *buf, WORD wPacketLen, serverthread_info *info)
{
WORD wKeyLen;
char szKey[64] = {0};
mir_md5_state_t state;
mir_md5_byte_t digest[16];
#ifdef _DEBUG
NetLog_Server("Received %s", "ICQ_SIGNON_AUTH_KEY");
#endif
if (wPacketLen < 2)
{
NetLog_Server("Malformed %s", "ICQ_SIGNON_AUTH_KEY");
icq_LogMessage(LOG_FATAL, "Secure login failed.\nInvalid server response.");
SetCurrentStatus(ID_STATUS_OFFLINE);
return;
}
unpackWord(&buf, &wKeyLen);
wPacketLen -= 2;
if (!wKeyLen || wKeyLen > wPacketLen || wKeyLen > sizeof(szKey))
{
NetLog_Server("Invalid length in %s: %u", "ICQ_SIGNON_AUTH_KEY", wKeyLen);
icq_LogMessage(LOG_FATAL, "Secure login failed.\nInvalid key length.");
SetCurrentStatus(ID_STATUS_OFFLINE);
return;
}
unpackString(&buf, szKey, wKeyLen);
{
char *pwd = info->szAuthKey;
mir_md5_init(&state);
mir_md5_append(&state, (const mir_md5_byte_t*)pwd, info->wAuthKeyLen);
mir_md5_finish(&state, digest);
}
mir_md5_init(&state);
mir_md5_append(&state, szKey, wKeyLen);
mir_md5_append(&state, digest, 16);
mir_md5_append(&state, CLIENT_MD5_STRING, sizeof(CLIENT_MD5_STRING)-1);
mir_md5_finish(&state, digest);
#ifdef _DEBUG
NetLog_Server("Sending ICQ_SIGNON_LOGIN_REQUEST to login server");
#endif
sendClientAuth(digest, 0x10, TRUE);
}
|