-
-
Notifications
You must be signed in to change notification settings - Fork 616
/
Copy pathdisas
executable file
·38 lines (32 loc) · 956 Bytes
/
disas
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
#!/usr/bin/env python3
import os
import lkmc.import_path
import common
from shell_helpers import LF
class Main(common.LkmcCliFunction):
def __init__(self):
super().__init__(
defaults = {
'show_time': False,
},
description='''\
Disassemble one function of the given executable.
https://cirosantilli.com/linux-kernel-module-cheat#run-toolchain
''',
)
self.add_argument('function', default='main', help='Which function to disassemble.')
def timed_main(self):
lkmc.import_path.import_path_main('run-toolchain')(
tool='gdb',
extra_args=[
'-nh',
'-batch',
'-ex',
'disas/rs {}'.format(self.env['function']),
self.env['image_elf'],
],
quiet=True,
**self.get_common_args()
)
if __name__ == '__main__':
Main().cli()