This repository was archived by the owner on Jan 4, 2020. It is now read-only.
forked from Gallopsled/pwntools
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathasm.py
674 lines (526 loc) · 19 KB
/
asm.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
# -*- coding: utf-8 -*-
r"""
Utilities for assembling and disassembling code.
Architecture Selection
------------------------
Architecture, endianness, and word size are selected by using :mod:`pwnlib.context`.
Any parameters which can be specified to ``context`` can also be specified as
keyword arguments to either :func:`asm` or :func:`disasm`.
Assembly
------------------------
To assemble code, simply invoke :func:`asm` on the code to assemble.
>>> asm('mov eax, 0')
b'\xb8\x00\x00\x00\x00'
Additionally, you can use constants as defined in the :mod:`pwnlib.constants`
module.
>>> asm('mov eax, SYS_execve')
b'\xb8\x0b\x00\x00\x00'
Finally, :func:`asm` is used to assemble shellcode provided by ``pwntools``
in the :mod:`shellcraft` module.
>>> asm(shellcraft.sh())
b'jhh///sh/binj\x0bX\x89\xe31\xc9\x99\xcd\x80'
Disassembly
------------------------
To disassemble code, simply invoke :func:`disasm` on the bytes to disassemble.
>>> disasm(b'\xb8\x0b\x00\x00\x00')
' 0: b8 0b 00 00 00 mov eax,0xb'
"""
import errno
import os
import platform
import re
import shutil
import subprocess
import tempfile
from collections import defaultdict
from glob import glob
from os import environ
from os import path
from . import atexit
from . import shellcraft
from .context import context, local_context
from .log import getLogger
log = getLogger(__name__)
__all__ = ['asm', 'cpp', 'disasm', 'make_elf', 'make_elf_from_assembly']
_basedir = path.split(__file__)[0]
_incdir = path.join(_basedir, 'data', 'includes')
@local_context
def which_binutils(util):
"""
Finds a binutils in the PATH somewhere.
Expects that the utility is prefixed with the architecture name.
Examples:
>>> import platform
>>> which_binutils('as', arch=platform.machine())
'.../bin/as'
>>> which_binutils('as', arch='arm') #doctest: +ELLIPSIS
'.../bin/arm-...-as'
>>> which_binutils('as', arch='powerpc') #doctest: +ELLIPSIS
'.../bin/powerpc...-as'
>>> which_binutils('as', arch='msp430') #doctest: +SKIP
...
Traceback (most recent call last):
...
Exception: Could not find 'as' installed for ContextType(arch = 'msp430')
"""
arch = context.arch
bits = context.bits
# Fix up pwntools vs Debian triplet naming, and account
# for 'thumb' being its own pwntools architecture.
arches = [arch] + {
'thumb': ['arm', 'aarch64'],
'i386': ['x86_64', 'amd64'],
'i686': ['x86_64', 'amd64'],
'amd64': ['x86_64', 'i386'],
}.get(arch, [])
# If one of the candidate architectures matches the native
# architecture, use that as a last resort.
machine = platform.machine()
machine = 'i386' if machine == 'i686' else machine
try:
with context.local(arch=machine):
if context.arch in arches:
arches.append(None)
except AttributeError:
log.warn_once("Your local binutils won't be used because architecture %r is not supported." % machine)
utils = [util]
# hack for homebrew-installed binutils on mac
if platform.system() == 'Darwin':
utils = ['g' + util, util]
for arch in arches:
for gutil in utils:
# e.g. objdump
if arch is None:
pattern = gutil
# e.g. aarch64-linux-gnu-objdump
else:
pattern = '%s*linux*-%s' % (arch, gutil)
for dir in environ['PATH'].split(':'):
res = sorted(glob(path.join(dir, pattern)))
if res:
return res[0]
locals()['context'] = context
log.warning("""
Could not find %(util)r installed for %(context)s
Try installing binutils for this architecture:
https://python3-pwntools.readthedocs.org/en/latest/install/binutils.html
""".strip() % locals())
raise Exception('Could not find %(util)r installed for %(context)s' % locals())
checked_assembler_version = defaultdict(lambda: False)
def _assembler():
gas = which_binutils('as')
E = {
'big': '-EB',
'little': '-EL'
}[context.endianness]
B = '-%s' % context.bits
assemblers = {
'i386': [gas, B],
'amd64': [gas, B],
# Most architectures accept -EL or -EB
'thumb': [gas, '-mthumb', E],
'arm': [gas, E],
'aarch64': [gas, E],
'mips': [gas, E, B],
'mips64': [gas, E, B],
'sparc': [gas, E, B],
'sparc64': [gas, E, B],
# Powerpc wants -mbig or -mlittle, and -mppc32 or -mppc64
'powerpc': [gas, '-m%s' % context.endianness, '-mppc%s' % context.bits],
'powerpc64': [gas, '-m%s' % context.endianness, '-mppc%s' % context.bits],
# ia64 only accepts -mbe or -mle
'ia64': [gas, '-m%ce' % context.endianness[0]]
}
assembler = assemblers.get(context.arch, [gas])
if not checked_assembler_version[gas]:
checked_assembler_version[gas] = True
result = subprocess.check_output([gas, '--version', '/dev/null'],
stderr=subprocess.STDOUT)
version = re.search(r' (\d\.\d+)'.encode('utf8'), result).group(1)
if version < b'2.19':
log.warn_once(
'Your binutils version is too old and may not work!\n' +
'Try updating with: https://pwntools.readthedocs.org/en/latest/install/binutils.html\n' +
'Reported Version: %r' %
result.strip())
return assembler
def _linker():
ld = [which_binutils('ld')]
bfd = ['--oformat=' + _bfdname()]
E = {
'big': '-EB',
'little': '-EL'
}[context.endianness]
arguments = {
'i386': ['-m', 'elf_i386'],
}.get(context.arch, [])
return ld + bfd + [E] + arguments
def _objcopy():
return [which_binutils('objcopy')]
def _objdump():
path = [which_binutils('objdump')]
if context.arch in ('i386', 'amd64'):
path += ['-Mintel']
return path
def _include_header():
os = context.os
arch = context.arch
include = '%s/%s.h' % (os, arch)
if not include or not path.exists(path.join(_incdir, include)):
log.warn_once("Could not find system include headers for %s-%s" % (arch, os))
return '\n'
return '#include <%s>\n' % include
def _arch_header():
prefix = ['.section .shellcode,"awx"',
'.global _start',
'.global __start',
'_start:',
'__start:']
headers = {
'i386': ['.intel_syntax noprefix'],
'amd64': ['.intel_syntax noprefix'],
'arm': ['.syntax unified',
'.arch armv7-a',
'.arm'],
'thumb': ['.syntax unified',
'.arch armv7-a',
'.thumb'],
'mips': ['.set mips2',
'.set noreorder'],
}
return '\n'.join(prefix + headers.get(context.arch, [])) + '\n'
def _bfdname():
arch = context.arch
E = context.endianness
bfdnames = {
'i386': 'elf32-i386',
'aarch64': 'elf64-%saarch64' % E,
'amd64': 'elf64-x86-64',
'arm': 'elf32-%sarm' % E,
'thumb': 'elf32-%sarm' % E,
'mips': 'elf32-trad%smips' % E,
'mips64': 'elf64-trad%smips' % E,
'alpha': 'elf64-alpha',
'cris': 'elf32-cris',
'ia64': 'elf64-ia64-%s' % E,
'm68k': 'elf32-m68k',
'powerpc': 'elf32-powerpc',
'powerpc64': 'elf64-powerpc',
'vax': 'elf32-vax',
'sparc': 'elf32-sparc',
'sparc64': 'elf64-sparc',
}
if arch in bfdnames:
return bfdnames[arch]
else:
raise Exception("Cannot find bfd name for architecture %r" % arch)
def _bfdarch():
arch = context.arch
convert = {
'i386': 'i386',
'amd64': 'i386:x86-64',
'thumb': 'arm',
'ia64': 'ia64-elf64'
}
if arch in convert:
return convert[arch]
return arch
def _run(cmd, stdin=None):
log.debug(subprocess.list2cmdline(cmd))
try:
proc = subprocess.Popen(
cmd,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE
)
if isinstance(stdin, str):
stdin = stdin.encode('utf8')
stdout, stderr = proc.communicate(stdin)
exitcode = proc.wait()
except OSError as e:
if e.errno == errno.ENOENT:
log.exception('Could not run %r the program' % cmd[0])
else:
raise
if (exitcode, stderr) != (0, b''):
msg = 'There was an error running %r:\n' % cmd
if exitcode != 0:
msg += 'It had the exitcode %d.\n' % exitcode
if stderr != '':
msg += 'It had this on stderr:\n%r\n' % stderr
log.error(msg)
return stdout
@local_context
def cpp(shellcode):
r"""cpp(shellcode, ...) -> str
Runs CPP over the given shellcode.
The output will always contain exactly one newline at the end.
Arguments:
shellcode(str): Shellcode to preprocess
Kwargs:
Any arguments/properties that can be set on ``context``
Examples:
>>> cpp("mov al, SYS_setresuid", arch="i386", os="linux")
'mov al, 164\n'
>>> cpp("weee SYS_setresuid", arch="arm", os="linux")
'weee (0+164)\n'
>>> cpp("SYS_setresuid", arch="thumb", os="linux")
'(0+164)\n'
>>> cpp("SYS_setresuid", os="freebsd")
'311\n'
"""
arch = context.arch
os = context.os
code = _include_header() + shellcode
cmd = [
'cpp',
'-C',
'-nostdinc',
'-undef',
'-P',
'-I' + _incdir,
'/dev/stdin'
]
return _run(cmd, code).decode('utf8').strip('\n').rstrip() + '\n'
@local_context
def make_elf_from_assembly(assembly, vma=0x10000000, extract=False):
r"""
Builds an ELF file with the specified assembly as its
executable code.
Arguments:
assembly(str): Assembly
vma(int): Load address of the binary
extract(bool): Whether to return the data extracted from the file created,
or the path to it.
Returns:
The path to the assembled ELF (extract=False), or the data
of the assembled ELF.
"""
if context.arch == 'thumb':
to_thumb = shellcraft.arm.to_thumb()
if not assembly.startswith(to_thumb):
assembly = to_thumb + assembly
path = asm(assembly, vma=vma, extract=extract)
os.chmod(path, 0o755)
return path
@local_context
def make_elf(data, vma=None, strip=True, extract=True):
r"""
Builds an ELF file with the specified binary data as its
executable code.
Arguments:
data(bytes): Assembled code
vma(int): Load address for the ELF file
Examples:
This example creates an i386 ELF that just does
execve('/bin/sh',...).
>>> context.clear()
>>> context.arch = 'i386'
>>> context.bits = 32
>>> filename = tempfile.mktemp()
>>> bin_sh = unhex('6a68682f2f2f73682f62696e89e331c96a0b5899cd80')
>>> data = make_elf(bin_sh)
>>> with open(filename, 'wb+') as f:
... _ = f.write(data)
... f.flush()
>>> os.chmod(filename, 0o777)
>>> p = process(filename)
>>> p.sendline('echo Hello; exit')
>>> p.recvline()
b'Hello\n'
"""
retval = None
if context.arch == 'thumb':
to_thumb = asm(shellcraft.arm.to_thumb(), arch='arm')
if not data.startswith(to_thumb):
data = to_thumb + data
assembler = _assembler()
linker = _linker()
code = _arch_header()
code += '.string "%s"' % ''.join('\\x%02x' % c for c in data)
code += '\n'
log.debug("Building ELF:\n" + code)
tmpdir = tempfile.mkdtemp(prefix='pwntools-asm-')
step1 = path.join(tmpdir, 'step1-asm')
step2 = path.join(tmpdir, 'step2-obj')
step3 = path.join(tmpdir, 'step3-elf')
try:
with open(step1, 'w+') as f:
f.write(code)
_run(assembler + ['-o', step2, step1])
linker_options = ['-z', 'execstack']
if vma:
linker_options += ['--section-start=.shellcode=%#x' % vma,
'--entry=%#x' % vma]
linker_options += ['-o', step3, step2]
_run(linker + linker_options)
if strip:
_run([which_binutils('objcopy'), '-Sg', step3])
_run([which_binutils('strip'), '--strip-unneeded', step3])
if not extract:
os.chmod(step3, 0o755)
retval = step3
else:
with open(step3, 'rb') as f:
retval = f.read()
except Exception:
log.exception("An error occurred while building an ELF:\n%s" % code)
else:
atexit.register(lambda: shutil.rmtree(tmpdir))
return retval
@local_context
def asm(shellcode, vma=0, extract=True):
r"""asm(code, vma=0, extract=True, ...) -> bytes
Runs :func:`cpp` over a given shellcode and then assembles it into bytes.
To see which architectures or operating systems are supported,
look in :mod:`pwnlib.contex`.
To support all these architecture, we bundle the GNU assembler
and objcopy with pwntools.
Arguments:
shellcode(str): Assembler code to assemble.
vma(int): Virtual memory address of the beginning of assembly
extract(bool): Extract the raw assembly bytes from the assembled
file. If ``False``, returns the path to an ELF file
with the assembly embedded.
Kwargs:
Any arguments/properties that can be set on ``context``
Examples:
>>> asm("mov eax, SYS_select", arch='i386', os='freebsd')
b'\xb8]\x00\x00\x00'
>>> asm("mov eax, SYS_select", arch='amd64', os='linux')
b'\xb8\x17\x00\x00\x00'
>>> asm("mov rax, SYS_select", arch='amd64', os='linux')
b'H\xc7\xc0\x17\x00\x00\x00'
>>> asm("ldr r0, =SYS_select", arch='arm', os='linux', bits=32)
b'R\x00\xa0\xe3'
"""
result = b''
assembler = _assembler()
linker = _linker()
objcopy = _objcopy() + ['-j', '.shellcode', '-Obinary']
code = ''
code += _arch_header()
code += cpp(shellcode)
log.debug('Assembling\n%s' % code)
tmpdir = tempfile.mkdtemp(prefix='pwntools-asm-')
step1 = path.join(tmpdir, 'step1')
step2 = path.join(tmpdir, 'step2')
step3 = path.join(tmpdir, 'step3')
step4 = path.join(tmpdir, 'step4')
try:
with open(step1, 'w') as fd:
fd.write(code)
_run(assembler + ['-o', step2, step1])
if not vma:
shutil.copy(step2, step3)
if vma or not extract:
ldflags = ['-z', 'execstack', '-o', step3, step2]
if vma:
ldflags += ['--section-start=.shellcode=%#x' % vma,
'--entry=%#x' % vma,
'-z', 'max-page-size=4096',
'-z', 'common-page-size=4096']
_run(linker + ldflags)
elif open(step2, 'rb').read(4) == b'\x7fELF':
# Sanity check for seeing if the output has relocations
relocs = subprocess.check_output(
[which_binutils('readelf'), '-r', step2]
).decode('utf8').strip()
if extract and len(relocs.split('\n')) > 1:
log.error('Shellcode contains relocations:\n%s' % relocs)
else:
shutil.copy(step2, step3)
if not extract:
return step3
_run(objcopy + [step3, step4])
with open(step4, 'rb') as fd:
result = fd.read()
except Exception:
lines = '\n'.join('%4i: %s' % (i + 1, line) for (i, line) in enumerate(code.splitlines()))
log.exception("An error occurred while assembling:\n%s" % lines)
else:
atexit.register(lambda: shutil.rmtree(tmpdir))
return result
@local_context
def disasm(data, vma=0, byte=True, offset=True, instructions=True):
"""disasm(data, ...) -> str
Disassembles a bytestring into human readable assembler.
To see which architectures are supported,
look in :mod:`pwnlib.contex`.
To support all these architecture, we bundle the GNU objcopy
and objdump with pwntools.
Arguments:
data(bytes): Bytestring to disassemble.
vma(int): Passed through to the --adjust-vma argument of objdump
byte(bool): Include the hex-printed bytes in the disassembly
offset(bool): Include the virtual memory address in the disassembly
Kwargs:
Any arguments/properties that can be set on ``context``
Examples:
>>> print(disasm(unhex('b85d000000'), arch='i386'))
0: b8 5d 00 00 00 mov eax,0x5d
>>> print(disasm(unhex('b85d000000'), arch='i386', byte=0))
0: mov eax,0x5d
>>> print(disasm(unhex('b85d000000'), arch='i386', byte=0, offset=0))
mov eax,0x5d
>>> print(disasm(unhex('b817000000'), arch='amd64'))
0: b8 17 00 00 00 mov eax,0x17
>>> print(disasm(unhex('48c7c017000000'), arch='amd64'))
0: 48 c7 c0 17 00 00 00 mov rax,0x17
>>> print(disasm(unhex('04001fe552009000'), arch='arm'))
0: e51f0004 ldr r0, [pc, #-4] ; 0x4
4: 00900052 addseq r0, r0, r2, asr r0
>>> print(disasm(unhex('4ff00500'), arch='thumb', bits=32))
0: f04f 0005 mov.w r0, #5
"""
result = ''
arch = context.arch
os = context.os
tmpdir = tempfile.mkdtemp(prefix='pwn-disasm-')
step1 = path.join(tmpdir, 'step1')
step2 = path.join(tmpdir, 'step2')
bfdarch = _bfdarch()
bfdname = _bfdname()
objdump = _objdump() + ['-d', '--adjust-vma', str(vma), '-b', bfdname]
objcopy = _objcopy() + [
'-I', 'binary',
'-O', bfdname,
'-B', bfdarch,
'--set-section-flags', '.data=code',
'--rename-section', '.data=.text',
]
if arch == 'thumb':
objcopy += ['--prefix-symbol=$t.']
else:
objcopy += ['-w', '-N', '*']
try:
with open(step1, 'wb') as fd:
fd.write(data)
res = _run(objcopy + [step1, step2])
output0 = subprocess.check_output(objdump + [step2]).decode('utf8')
output1 = output0.split('<.text>:\n')
if len(output1) != 2:
log.error('Could not find .text in objdump output:\n%s' % output0)
result = output1[1].strip('\n').rstrip().expandtabs()
except Exception:
log.exception("An error occurred while disassembling:\n%s" % data)
else:
atexit.register(lambda: shutil.rmtree(tmpdir))
lines = []
pattern = '^( *[0-9a-f]+: *)((?:[0-9a-f]+ )+ *)(.*)'
for line in result.splitlines():
try:
o, b, i = re.search(pattern, line).groups()
except:
lines.append(line)
continue
line = ''
if offset:
line += o
if byte:
line += b
if instructions:
line += i
lines.append(line)
return '\n'.join(lines)